-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecipeGroups.cs
65 lines (53 loc) · 2.22 KB
/
RecipeGroups.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using Terraria;
using Terraria.ID;
using Terraria.Localization;
namespace ChemistryClass {
public partial class ChemistryClass {
public override void AddRecipeGroups() {
RecipeGroup newGroup;
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Copper Bar", new int[]
{
ItemID.CopperBar,
ItemID.TinBar
});
RecipeGroup.RegisterGroup("ChemistryClass:CopperBar", newGroup);
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Silver Bar", new int[]
{
ItemID.SilverBar,
ItemID.TungstenBar
});
RecipeGroup.RegisterGroup("ChemistryClass:SilverBar", newGroup);
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Gold Bar", new int[]
{
ItemID.GoldBar,
ItemID.PlatinumBar
});
RecipeGroup.RegisterGroup("ChemistryClass:GoldBar", newGroup);
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Iron Helmet", new int[]
{
ItemID.IronHelmet,
ItemID.LeadHelmet
});
RecipeGroup.RegisterGroup("ChemistryClass:IronHelmet", newGroup);
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Iron Chainmail", new int[]
{
ItemID.IronChainmail,
ItemID.LeadChainmail
});
RecipeGroup.RegisterGroup("ChemistryClass:IronChainmail", newGroup);
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Iron Greaves", new int[]
{
ItemID.IronGreaves,
ItemID.LeadGreaves
});
RecipeGroup.RegisterGroup("ChemistryClass:IronGreaves", newGroup);
newGroup = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Iron Ore", new int[]
{
ItemID.IronOre,
ItemID.LeadOre
});
RecipeGroup.RegisterGroup("ChemistryClass:IronOre", newGroup);
}
}
}