- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
39 lines
1.4 KiB
C#
39 lines
1.4 KiB
C#
using Decimation.Content.Items.Misc.Souls;
|
|
using Decimation.Lib.Items;
|
|
using Terraria.ID;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Placeable
|
|
{
|
|
internal class TitanForge : DecimationPlaceableItem
|
|
{
|
|
protected override string ItemName => "Titan Forge";
|
|
protected override string ItemTooltip => "Used to craft powerful weapons and armor.";
|
|
protected override int Tile => ModContent.TileType<Tiles.TitanForge>();
|
|
|
|
protected override void InitPlaceable()
|
|
{
|
|
item.width = 20;
|
|
item.height = 20;
|
|
this.item.maxStack = 1;
|
|
}
|
|
|
|
protected override ModRecipe GetRecipe()
|
|
{
|
|
ModRecipe recipe = GetNewModRecipe(this, 1, ModContent.TileType<Tiles.ChlorophyteAnvil>(), true);
|
|
|
|
recipe.AddIngredient(ItemID.AdamantiteForge);
|
|
recipe.AddIngredient(ItemID.Autohammer);
|
|
recipe.AddIngredient(ItemID.AdamantiteBar, 5);
|
|
recipe.AddIngredient(ItemID.TitaniumBar, 5);
|
|
recipe.AddIngredient(ItemID.LavaBucket);
|
|
recipe.AddIngredient(ItemID.SoulofMight, 5);
|
|
recipe.AddIngredient(ItemID.SoulofFright, 5);
|
|
recipe.AddIngredient(ItemID.SoulofSight, 5);
|
|
recipe.AddIngredient(ModContent.ItemType<SoulofSpite>(), 5);
|
|
recipe.AddIngredient(ItemID.SoulofFlight, 5);
|
|
|
|
return recipe;
|
|
}
|
|
}
|
|
} |