using System.Collections.Generic; using Decimation.Content.Tiles; using Decimation.Lib.Items; using Decimation.Lib.Util; using Terraria; using Terraria.ID; using Terraria.ModLoader; namespace Decimation.Content.Items.Accessories { internal class EndlessPouchofLife : DecimationAccessory { protected override string ItemName => "Endless Pouch of Life"; protected override string ItemTooltip => "Cancels ammunition consumption." + "\nIncrease maximum life by 15" + "\nChange ammunitions in Chlorophyte Bullets \nProvide a life regeneration boost \n+8% ranged damage \n+15% critical strike chance"; protected override void InitAccessory() { item.width = 24; item.height = 32; item.rare = Rarity.Lime.GetRarityValue(); this.item.value = Item.buyPrice(0, 50); } public override void UpdateAccessory(Player player, bool hideVisual) { player.lifeRegen += 5; player.rangedDamage += 0.08f; player.rangedCrit += 5; player.statLifeMax2 += 15; Main.LocalPlayer.GetModPlayer().endlessPouchofLifeEquipped = true; } protected override List GetAdditionalRecipes() { ModRecipe recipe = GetNewModRecipe(this, 1, new List {ModContent.TileType()}); recipe.AddIngredient(ItemID.ChlorophyteBar, 25); recipe.AddIngredient(ModContent.ItemType()); recipe.AddIngredient(ItemID.EndlessMusketPouch); recipe.AddIngredient(ItemID.SoulofSight, 50); return new List {recipe}; } } }