Skip to content

Commit a15cc41

Browse files
committed
UOErebor: verite/valorite ingot production.
1 parent 3c8f94e commit a15cc41

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

ExampleScripts/UOErebor/Specs.csx

+2
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,8 @@ public static class Specs
170170
public static readonly ItemSpec MithrilOre = new ItemSpec(0x19B7, (Color)0x098B);
171171
public static readonly ItemSpec MithrilIngot = new ItemSpec(0x1BF2, (Color)0x098B);
172172

173+
public static readonly ItemSpec Uhli = new ItemSpec(0x0F2F, (Color)0x0388);
174+
173175
public static readonly ItemSpec Mramor = new ItemSpec(0x1363, (Color)0x0481);
174176

175177
// Logs

ExampleScripts/UOErebor/blacksmith.csx

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ public static class BlacksmithMenu
1212
{
1313
public static readonly CraftProduct CopperIngot = new CraftProduct(Specs.CopperIngot, new CraftResource(Specs.CopperOre, 1), "Ingots", "Copper ingot");
1414
public static readonly CraftProduct IronIngot = new CraftProduct(Specs.IronIngot, new CraftResource(Specs.IronOre, 1), "Ingots", "iron ingot");
15+
public static readonly CraftProduct VeriteIngot = new CraftProduct(Specs.VeriteIngot, new CraftResource(Specs.VeriteOre, 1), "Ingots", "Verite ingot");
16+
public static readonly CraftProduct ValoriteIngot = new CraftProduct(Specs.ValoriteIngot,
17+
new[] { new CraftResource(Specs.ValoriteOre, 1), new CraftResource(Specs.Uhli, 1) },
18+
"Ingots", "Valorite ingot");
1519
}
1620

1721
public static class Blacksmith
@@ -52,4 +56,6 @@ public static class Blacksmith
5256

5357
UO.RegisterCommand("blacksmith-copperingot", () => Blacksmith.IngotProduce(BlacksmithMenu.CopperIngot));
5458
UO.RegisterCommand("blacksmith-ironingot", () => Blacksmith.IngotProduce(BlacksmithMenu.IronIngot));
59+
UO.RegisterCommand("blacksmith-veriteingot", () => Blacksmith.IngotProduce(BlacksmithMenu.VeriteIngot));
60+
UO.RegisterCommand("blacksmith-valoriteingot", () => Blacksmith.IngotProduce(BlacksmithMenu.ValoriteIngot));
5561

0 commit comments

Comments
 (0)