-
Notifications
You must be signed in to change notification settings - Fork 0
/
SoulSang.cs
39 lines (35 loc) · 960 Bytes
/
SoulSang.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
using Terraria;
using Terraria.ID;
using Terraria.ModLoader;
using Terraria.Localization;
namespace SoulSang
{
public class SoulSang : Mod
{
/*
public SoulSang()
{
}
public override void AddRecipeGroups()
{
RecipeGroup group = new RecipeGroup(() => Language.GetTextValue("LegacyMisc.37") + " Final Melee Weapon", new int[]
{
ItemID.Meowmere,
ItemID.StarWrath,
ItemID.Terrarian
});
RecipeGroup.RegisterGroup("SoulSang:FinalMelee", group);
}
public override void AddRecipes()
{
ModRecipe recipe = new ModRecipe(this);
recipe.AddRecipeGroup("SoulSang:FinalMelee");
recipe.AddIngredient(ModContent.ItemType<Items.Accessories.CombEssence>);
//recipe.AddIngredient(mod.GetItem("CombEssence"), 1);
recipe.AddTile(TileID.LunarCraftingStation);
recipe.SetResult(ModContent.ItemType<Items.Accessories.TrueCombEssence>());
recipe.AddRecipe();
}
*/
}
}