diff --git a/Content/Items/Tools/GreatwoodHammer.cs b/Content/Items/Tools/GreatwoodHammer.cs index d1f9ca8..6d3c468 100644 --- a/Content/Items/Tools/GreatwoodHammer.cs +++ b/Content/Items/Tools/GreatwoodHammer.cs @@ -1,5 +1,6 @@ using Decimation.Lib.Items; using Decimation.Lib.Util; +using Decimation.Lib.Util.Builder; using Terraria; using Terraria.ID; using Terraria.ModLoader; @@ -19,22 +20,21 @@ namespace Decimation.Content.Items.Tools item.height = 40; item.useTime = 10; item.useAnimation = 25; - this.item.knockBack = 5; - item.value = Item.sellPrice(0, 0, 10); + item.knockBack = 5; + item.value = Item.sellPrice(copper: 50); item.rare = Rarity.Green.GetRarityValue(); item.UseSound = SoundID.Item1; } protected override ModRecipe GetRecipe() { - ModRecipe recipe = GetNewModRecipe(this, 1, TileID.WorkBenches, true); - - recipe.AddIngredient(ItemID.WoodenHammer); - recipe.AddIngredient(ItemID.BorealWoodHammer); - recipe.AddIngredient(ItemID.ShadewoodHammer); - recipe.AddIngredient(ItemID.PalmWoodHammer); - - return recipe; + return new RecipeBuilder(this) + .WithIngredient(ItemID.WoodenHammer) + .WithIngredient(ItemID.BorealWoodHammer) + .WithIngredient(ItemID.ShadewoodHammer) + .WithIngredient(ItemID.PalmWoodHammer) + .WithStation(TileID.WorkBenches) + .Build(); } } } \ No newline at end of file diff --git a/Content/Items/Tools/GreatwoodHammer.png b/Content/Items/Tools/GreatwoodHammer.png index 4c5df27..8cd42e7 100644 Binary files a/Content/Items/Tools/GreatwoodHammer.png and b/Content/Items/Tools/GreatwoodHammer.png differ