Decimation_Mod/Content/Debug/DebugSword.cs
FyloZ 6d48fb7ef0 Updated Dune Wyrm map icon.
Updated Dune wyrn treasure bag sprite.
Updated debug sword.
2020-06-05 19:17:22 -04:00

17 lines
460 B
C#

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