using Decimation.Lib.Items; using Decimation.Lib.Util.Builder; using Terraria; using Terraria.ID; using Terraria.ModLoader; namespace Decimation.Content.Items.Tools.Axes { public class RichMahoganyAxe : DecimationTool { protected override string ItemName => "Rich Mahogany Axe"; protected override int AxePower => 35; protected override int MeleeDamages => 3; protected override void InitTool() { item.width = 32; item.height = 28; item.knockBack = 4.5f; item.value = Item.sellPrice(copper: 20); item.useTime = 19; item.useAnimation = 28; item.crit = 4; } protected override ModRecipe GetRecipe() { return new RecipeBuilder(this) .WithIngredient(ItemID.RichMahogany, 7) .Build(); } } }