Decimation_Mod/Content/Debug/DebugSword.cs
2020-06-05 12:42:17 -04:00

17 lines
466 B
C#

using Decimation.Lib.Items;
using Terraria.ID;
namespace Decimation.Content.Debug
{
public class DebugSword : DecimationWeapon
{
public override string Texture => "Terraria/Item_" + ItemID.CopperShortsword;
protected override string ItemName => "Debug Sword";
protected override int Damages => 9999999;
protected override void InitWeapon()
{
item.CloneDefaults(ItemID.CopperShortsword);
}
}
}