Updated Rod of Lightning's sprite.

This commit is contained in:
FyloZ 2020-06-30 15:21:32 -04:00
parent 86d1d4d944
commit 8724b50406
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,6 @@
using Decimation.Lib.Items;
using Decimation.Content.Projectiles;
using Decimation.Lib.Items;
using Terraria.ModLoader;
namespace Decimation.Content.Items.Weapons
{
@ -7,11 +9,13 @@ namespace Decimation.Content.Items.Weapons
protected override string ItemName => "Rod of Lightning";
protected override int Damages => 90;
protected override DamageType DamagesType => DamageType.Magic;
protected override string ProjectileName => "LightningSphere";
protected override int ProjectileId => ModContent.ProjectileType<LightningSphere>();
protected override void InitWeapon()
{
this.item.mana = 17;
item.width = 40;
item.height = 40;
item.mana = 17;
item.knockBack = 7;
item.crit = 15;
item.useStyle = 3;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 540 B

After

Width:  |  Height:  |  Size: 496 B