Updated Chain Stynger's sprite.
This commit is contained in:
parent
306ebea396
commit
1341f6f2bd
@ -1,4 +1,5 @@
|
|||||||
using Decimation.Content.Buffs.Debuffs;
|
using Decimation.Content.Buffs.Debuffs;
|
||||||
|
using Decimation.Content.Projectiles;
|
||||||
using Decimation.Lib.Items;
|
using Decimation.Lib.Items;
|
||||||
using Terraria;
|
using Terraria;
|
||||||
using Terraria.ID;
|
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 string ItemTooltip => "Unleashe molten ashes upon your foes.";
|
||||||
protected override DamageType DamagesType => DamageType.Ranged;
|
protected override DamageType DamagesType => DamageType.Ranged;
|
||||||
protected override int Damages => 800;
|
protected override int Damages => 800;
|
||||||
protected override string ProjectileName => "MoltenStyngerBolt";
|
protected override int ProjectileId => ModContent.ProjectileType<MoltenStyngerBolt>();
|
||||||
|
|
||||||
protected override void InitWeapon()
|
protected override void InitWeapon()
|
||||||
{
|
{
|
||||||
this.item.CloneDefaults(ItemID.Stynger);
|
item.CloneDefaults(ItemID.Stynger);
|
||||||
|
item.width = 66;
|
||||||
|
item.height = 36;
|
||||||
item.shootSpeed = 9f;
|
item.shootSpeed = 9f;
|
||||||
this.item.crit *= 2;
|
item.crit *= 2;
|
||||||
this.item.knockBack *= 2;
|
item.knockBack *= 2;
|
||||||
this.item.rare = 10;
|
item.rare = 10;
|
||||||
this.item.value = Item.buyPrice(0, 45);
|
item.value = Item.buyPrice(0, 45);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void OnHitNPC(Player player, NPC target, int damage, float knockBack, bool crit)
|
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 |
Loading…
Reference in New Issue
Block a user