Updated Chain Stynger's sprite.

This commit is contained in:
FyloZ 2020-06-30 15:35:49 -04:00
parent 306ebea396
commit 1341f6f2bd
2 changed files with 9 additions and 7 deletions

View File

@ -1,4 +1,5 @@
using Decimation.Content.Buffs.Debuffs;
using Decimation.Content.Projectiles;
using Decimation.Lib.Items;
using Terraria;
using Terraria.ID;
@ -12,17 +13,18 @@ namespace Decimation.Content.Items.Weapons.Arachnus
protected override string ItemTooltip => "Unleashe molten ashes upon your foes.";
protected override DamageType DamagesType => DamageType.Ranged;
protected override int Damages => 800;
protected override string ProjectileName => "MoltenStyngerBolt";
protected override int ProjectileId => ModContent.ProjectileType<MoltenStyngerBolt>();
protected override void InitWeapon()
{
this.item.CloneDefaults(ItemID.Stynger);
item.CloneDefaults(ItemID.Stynger);
item.width = 66;
item.height = 36;
item.shootSpeed = 9f;
this.item.crit *= 2;
this.item.knockBack *= 2;
this.item.rare = 10;
this.item.value = Item.buyPrice(0, 45);
item.crit *= 2;
item.knockBack *= 2;
item.rare = 10;
item.value = Item.buyPrice(0, 45);
}
public override void OnHitNPC(Player player, NPC target, int damage, float knockBack, bool crit)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 615 B

After

Width:  |  Height:  |  Size: 648 B