Skip to content
Snippets Groups Projects
Commit 159b980d authored by Chris Davidson's avatar Chris Davidson
Browse files

Improve Endless Woes tooltip

parent 8ac0d46e
No related branches found
No related tags found
2 merge requests!617WIP: experienmental i18n support,!613Misc
......@@ -193,7 +193,7 @@ uberTalent{
Whenever you have stored %d damage of one type you unleash a powerful blast at a random enemy dealing %d damage of that type in radius %d and applying one of the following effects:
Physical: Slows combat, mind, and spell speed by 20%%.
#GREEN#Acid:#LAST# Deals %d acid damage each turn for 5 turns.
#GREEN#Acid:#LAST# Deals %d acid damage each turn for 5 turns (%d total).
#DARK_GREEN#Blight:#LAST# Deals %d blight damage each turn for 5 turns and reduces strength, constitution, and dexterity by %d.
#GREY#Darkness:#LAST# Reduces damage dealt by %d%% for 5 turns.
#LIGHT_STEEL_BLUE#Temporal:#LAST# Slows global action speed by %d%% for 5 turns.
......@@ -202,7 +202,7 @@ uberTalent{
Each effect can only happen once per 10 player turns. This does not count as a typical cooldown.
The damage and effect power increase with your Cunning, the threshold with your level, and the apply power is the highest of your mind or spell power.
%s]])
:format(t.getThreshold(self, t), t.getDamage(self, t), self:getTalentRadius(t), t.getAcid(self, t), blight_dam, blight_disease, t.getDarkness(self, t), t.getTemporal(self, t), t.getMind(self, t), str)
:format(t.getThreshold(self, t), t.getDamage(self, t), self:getTalentRadius(t), damDesc(self, DamageType.ACID, t.getAcid(self, t)), damDesc(self, DamageType.ACID, t.getAcid(self, t)*5), blight_dam, blight_disease, t.getDarkness(self, t), t.getTemporal(self, t), t.getMind(self, t), str)
end,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment