diff --git a/Content/Items/Accessories/Trinity/Soul.cs b/Content/Items/Accessories/Trinity/Soul.cs index 696f5b7..38e02b6 100644 --- a/Content/Items/Accessories/Trinity/Soul.cs +++ b/Content/Items/Accessories/Trinity/Soul.cs @@ -9,8 +9,9 @@ namespace Decimation.Content.Items.Accessories.Trinity protected override string ItemName => "The Soul"; protected override string ItemTooltip => "I am all...\n" + "Increases maximum mana by 50\n" + - "You deal 10% more magic damage\n" + + "You deal 10% more magic and minion damage\n" + "Your magic critical hit chances are increased by 10%\n" + + "Your minions knockback is increased by 10%" + "Your criticals hits leech mana\n" + "Hostile projectiles have 10% to phase through you,\nnegating all damage and causing your next attack to be a critical hit"; @@ -28,6 +29,8 @@ namespace Decimation.Content.Items.Accessories.Trinity player.statManaMax2 += 50; player.magicDamage *= 1.10f; player.magicCrit *= (int) (player.magicCrit * 1.10f); + player.minionDamage *= 1.10f; + player.minionKB *= 1.10f; base.UpdateAccessory(player, hideVisual); }