Added minion damages to The Soul.

This commit is contained in:
FyloZ 2020-07-13 12:30:51 -04:00
parent 803bda060b
commit 4636e76d76

View File

@ -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);
}