Working Copy #9

Merged
conco merged 43 commits from english into master 2021-11-07 20:14:37 +00:00
2 changed files with 21 additions and 1 deletions
Showing only changes of commit 0c247b7578 - Show all commits

View File

@@ -170,7 +170,24 @@ DataService.PowerTable = {
[3] = {100,4}, [3] = {100,4},
[4] = {175,5}, [4] = {175,5},
[5] = {346,6}, [5] = {346,6},
} },
-- ex units have no quality, they're strong so lets try just making them ssr power or something
["cirno_ex"] = {
["quality_override"] = "SSR"
},
["rumia_ex"] = {
["quality_override"] = "SSR"
},
-- alice patchy and lily have statlines 1 above where they should
["alice"] = {
["quality_override"] = "SSR"
},
["patchouli"] = {
["quality_override"] = "SSR"
},
["lily"] = {
["quality_override"] = "SR"
},
} }
DataService.AttackFactorTable = { DataService.AttackFactorTable = {

View File

@@ -776,6 +776,9 @@ function CDOTA_BaseNPC:THTD_GetGrowPower()
if thtd_power_table[unitName] == nil then if thtd_power_table[unitName] == nil then
thtd_power_table[unitName] = thtd_power_table[THTD_GetCardQualityText(unitName)] thtd_power_table[unitName] = thtd_power_table[THTD_GetCardQualityText(unitName)]
end end
if thtd_power_table[unitName]["quality_override"] ~= nil then
thtd_power_table[unitName] = thtd_power_table[thtd_power_table[unitName]["quality_override"]]
end
return math.floor(thtd_power_table[unitName][self.thtd_star][1] + thtd_power_table[unitName][self.thtd_star][2] * (self:THTD_GetLevel()-1)) return math.floor(thtd_power_table[unitName][self.thtd_star][1] + thtd_power_table[unitName][self.thtd_star][2] * (self:THTD_GetLevel()-1))
end end