using System; using System.Collections.Generic; using Microsoft.Xna.Framework; using Terraria; using Terraria.DataStructures; using Terraria.ID; using Terraria.ModLoader; using Decimation.Lib.Items; using Decimation.Lib.Util; namespace Decimation.Content.Items.Accessories { internal class RedHotShackle : DecimationAccessory { protected override string ItemName => "Red Hot Shackle"; protected override string ItemTooltip => "WIP"; protected override void InitAccessory() { item.width = 24; item.height = 24; item.rare = Rarity.Green.GetRarityValue(); item.value = Item.buyPrice(0, 0, 2); item.defense = 1; } protected override List GetAdditionalRecipes() { ModRecipe recipe = GetNewModRecipe(this, 1, new List() { TileID.Furnaces }, true); recipe.AddIngredient(ItemID.Shackle); recipe.AddIngredient(ItemID.Gel, 10); return new List() { recipe }; } } }