Decimation_Mod/Content/Items/Armors/ScarabArmor/ScarabBody.cs
2020-06-11 23:19:28 -04:00

53 lines
1.7 KiB
C#

using System.Collections.Generic;
using Terraria;
using Terraria.ModLoader;
using Terraria.ID;
using Decimation.Content.Tiles;
using Decimation.Content.Items.Misc.Souls;
using Decimation.Lib.Items;
using Decimation.Lib.Util;
namespace Decimation.Content.Items.Armors.ScarabArmor
{
[AutoloadEquip(EquipType.Body)]
class ScarabBody : DecimationItem
{
protected override string ItemName => "Solar Scarab Shell";
protected override string ItemTooltip => "Immunity to knockback" +
"\n25% increased melee damages" +
"\nEnemies are more likely to target you";
protected override void Init()
{
item.width = 38;
item.height = 22;
item.rare = Rarity.Red.GetRarityValue();
item.maxStack = 1;
item.defense = 45;
}
public override void UpdateEquip(Player player)
{
player.meleeDamage *= 1.25f;
player.aggro += 250;
player.noKnockback = true;
}
protected override List<ModRecipe> GetRecipes()
{
ModRecipe recipe = GetNewModRecipe(this, 1, new List<int>() { ModContent.TileType<TitanForge>() }, false);
recipe.AddIngredient(ItemID.SolarFlareBreastplate);
recipe.AddIngredient(ItemID.BeetleShell);
recipe.AddIngredient(ItemID.LunarOre, 20);
recipe.AddIngredient(ItemID.SoulofMight, 5);
recipe.AddIngredient(ItemID.SoulofFright, 5);
recipe.AddIngredient(ModContent.ItemType<SoulofSpite>(), 5);
recipe.AddIngredient(ItemID.LavaBucket);
return new List<ModRecipe>() { recipe };
}
}
}