Skip to content
Snippets Groups Projects
Commit ad4d091e authored by dg's avatar dg
Browse files

Vox correctly states it increases vim

git-svn-id: http://svn.net-core.org/repos/t-engine4@4428 51575b47-30f0-44d4-a5cc-537603b46e54
parent d7dfacbf
No related branches found
No related tags found
No related merge requests found
......@@ -717,6 +717,7 @@ function _M:getTextualDesc(compare_with)
compare_fields(w, compare_with, field, "max_mana", "%+.2f", "Maximum mana: ")
compare_fields(w, compare_with, field, "max_stamina", "%+.2f", "Maximum stamina: ")
compare_fields(w, compare_with, field, "max_hate", "%+.2f", "Maximum hate: ")
compare_fields(w, compare_with, field, "max_vim", "%+.2f", "Maximum vim: ")
compare_fields(w, compare_with, field, "max_air", "%+.2f", "Maximum air capacity: ")
compare_fields(w, compare_with, field, "combat_spellpower", "%+d", "Spellpower: ")
......@@ -1013,6 +1014,7 @@ function _M:getPriceFlags()
if w.max_life then price = price + w.max_life * 0.1 end
if w.max_stamina then price = price + w.max_stamina * 0.1 end
if w.max_mana then price = price + w.max_mana * 0.2 end
if w.max_vim then price = price + w.max_vim * 0.4 end
if w.life_regen then price = price + w.life_regen * 10 end
if w.stamina_regen then price = price + w.stamina_regen * 100 end
if w.mana_regen then price = price + w.mana_regen * 80 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