Commit fa2e0bdd7c5f652119688a4e3e33668e0c26d377
Merge branch 'master' of git.net-core.org:tome/t-engine4
Showing
2 changed files
with
2 additions
and
2 deletions
This diff could not be displayed because it is too large.
... | ... | @@ -81,7 +81,7 @@ newTalent{ |
81 | 81 | return ([[When you hit with Weapon Folding you have a %d%% chance of dealing an additional %0.2f temporal damage to enemies in a radius of %d. |
82 | 82 | Affected targets may also have their physical and temporal resistance reduced by %d%% for %d turns %s. |
83 | 83 | This effect has a cooldown. If it triggers while on cooldown it will reduce the cooldown of Fold Gravity and Fold Warp by one turn.]]) |
84 | - :tformat(chance, damDesc(self, DamageType.TEMPORAL, damage), radius, resists, Desc.vs"ss", duration) | |
84 | + :tformat(chance, damDesc(self, DamageType.TEMPORAL, damage), radius, resists, duration, Desc.vs"ss") | |
85 | 85 | end, |
86 | 86 | } |
87 | 87 | |
... | ... | @@ -127,7 +127,7 @@ newTalent{ |
127 | 127 | return ([[When you hit with Weapon Folding you have a %d%% chance of dealing an additional %0.2f physical and %0.2f temporal (warp) damage to enemies in a radius of %d. |
128 | 128 | Each target hit may be stunned, blinded, pinned, or confused for %d turns %s. |
129 | 129 | This effect has a cooldown. If it triggers while on cooldown it will reduce the cooldown of Fold Gravity and Fold Fate by one turn.]]) |
130 | - :tformat(chance, damDesc(self, DamageType.TEMPORAL, damage/2), damDesc(self, DamageType.PHYSICAL, damage/2), radius, Desc.vs("sp", Desc.max("ms", "ps")), duration) | |
130 | + :tformat(chance, damDesc(self, DamageType.TEMPORAL, damage/2), damDesc(self, DamageType.PHYSICAL, damage/2), radius, duration, Desc.vs("sp", Desc.max("ms", "ps"))) | |
131 | 131 | end, |
132 | 132 | } |
133 | 133 | ... | ... |
-
Please register or login to post a comment