diff --git a/Content/Items/Weapons/DuneWyrm/StaffofShiftingSands.cs b/Content/Items/Weapons/DuneWyrm/StaffofShiftingSands.cs index b95401f..e449548 100644 --- a/Content/Items/Weapons/DuneWyrm/StaffofShiftingSands.cs +++ b/Content/Items/Weapons/DuneWyrm/StaffofShiftingSands.cs @@ -1,6 +1,11 @@ +using System.Collections.Generic; +using Decimation.Content.Items.Misc.Souls; using Decimation.Content.Projectiles.DuneWyrm; using Decimation.Lib.Items; using Decimation.Lib.Util; +using Decimation.Lib.Util.Builder; +using Terraria; +using Terraria.ID; using Terraria.ModLoader; namespace Decimation.Content.Items.Weapons.DuneWyrm @@ -17,6 +22,30 @@ namespace Decimation.Content.Items.Weapons.DuneWyrm item.width = 42; item.height = 42; item.rare = Rarity.LightRed.GetRarityValue(); + item.value = Item.buyPrice(gold: 2); + } + + protected override List GetRecipes() + { + return new List + { + new RecipeBuilder(this) + .AnyIronBar(true) + .WithIngredient(ItemID.AncientBattleArmorMaterial) + .WithIngredient(ModContent.ItemType(), 10) + .WithIngredient(ItemID.ImpStaff) + .WithIngredient(ItemID.GoldBar, 5) + .WithStation(TileID.MythrilAnvil) + .Build(), + new RecipeBuilder(this) + .AnyIronBar(true) + .WithIngredient(ItemID.AncientBattleArmorMaterial) + .WithIngredient(ModContent.ItemType(), 10) + .WithIngredient(ItemID.ImpStaff) + .WithIngredient(ItemID.PlatinumBar, 5) + .WithStation(TileID.MythrilAnvil) + .Build() + }; } } } \ No newline at end of file