- Added support for animated projectiles - Refactoring - Removed useless fields - Fixed swords not dealing damages - Added Hour Hand (from Evie's PR)
31 lines
853 B
C#
31 lines
853 B
C#
using Decimation.Content.Tiles;
|
|
using Decimation.Lib.Items;
|
|
using Decimation.Lib.Util;
|
|
using Terraria.ID;
|
|
using Terraria.ModLoader;
|
|
|
|
namespace Decimation.Content.Items.Ores
|
|
{
|
|
internal class DenziumBar : DecimationItem
|
|
{
|
|
protected override string ItemName => "Denzium Bar";
|
|
protected override string ItemTooltip => "It pulsates with sheer density";
|
|
|
|
protected override void Init()
|
|
{
|
|
item.width = 20;
|
|
item.height = 20;
|
|
item.rare = Rarity.Cyan.GetRarityValue();
|
|
}
|
|
|
|
protected override ModRecipe GetRecipe()
|
|
{
|
|
ModRecipe recipe = GetNewModRecipe(this, 1, ModContent.TileType<TitanForge>());
|
|
|
|
recipe.AddIngredient(ItemID.AdamantiteBar);
|
|
recipe.AddIngredient(ItemID.TitaniumBar);
|
|
|
|
return recipe;
|
|
}
|
|
}
|
|
} |