diff --git a/Content/Items/Weapons/TitanicGatliStynger.cs b/Content/Items/Weapons/TitanicGatliStynger.cs index 3ba5a62..da75937 100644 --- a/Content/Items/Weapons/TitanicGatliStynger.cs +++ b/Content/Items/Weapons/TitanicGatliStynger.cs @@ -16,23 +16,21 @@ namespace Decimation.Content.Items.Weapons protected override string ItemTooltip => "Feel the rage of Kronos by your side."; protected override DamageType DamagesType => DamageType.Ranged; protected override int Damages => 950; - protected override string ProjectileName => "TitanicStyngerBolt"; + protected override int ProjectileId => ModContent.ProjectileType(); protected override void InitWeapon() { - this.item.CloneDefaults(ItemID.Stynger); - + item.CloneDefaults(ItemID.Stynger); item.knockBack = 11; item.shootSpeed = 9f; item.crit = 8; - - this.item.width = 52; - this.item.height = 26; - this.item.useTime = 10; - this.item.useAnimation = 10; - this.item.rare = 10; - this.item.autoReuse = true; - this.item.value = Item.buyPrice(0, 60); + item.width = 72; + item.height = 36; + item.useTime = 10; + item.useAnimation = 10; + item.rare = 10; + item.autoReuse = true; + item.value = Item.buyPrice(0, 60); } protected override ModRecipe GetRecipe() diff --git a/Content/Items/Weapons/TitanicGatliStynger.png b/Content/Items/Weapons/TitanicGatliStynger.png index 22925c1..3845320 100644 Binary files a/Content/Items/Weapons/TitanicGatliStynger.png and b/Content/Items/Weapons/TitanicGatliStynger.png differ