Line 86: |
Line 86: |
| | | |
| function ShipListKai:id(ship) | | function ShipListKai:id(ship) |
− | return {value = Formatting:format_stat(ship:true_id() or ship:id())} | + | return {value = Formatting:format_stat(ship:true_id() or ship:id()), simple = true} |
| end | | end |
| | | |
Line 108: |
Line 108: |
| firepower_max = ship:firepower() | | firepower_max = ship:firepower() |
| end | | end |
− | return {value = Formatting:format_stat(firepower_max)} | + | return {value = Formatting:format_stat(firepower_max), simple = true} |
| end | | end |
| | | |
Line 116: |
Line 116: |
| torpedo_max = ship:torpedo() | | torpedo_max = ship:torpedo() |
| end | | end |
− | return {value = Formatting:format_stat(torpedo_max)} | + | return {value = Formatting:format_stat(torpedo_max), simple = true} |
| end | | end |
| | | |
Line 134: |
Line 134: |
| night_battle = night_battle + torpedo_max | | night_battle = night_battle + torpedo_max |
| end | | end |
− | return {value = Formatting:format_stat(night_battle)} | + | return {value = Formatting:format_stat(night_battle), simple = true} |
| end | | end |
| | | |
Line 142: |
Line 142: |
| aa_max = ship:aa() | | aa_max = ship:aa() |
| end | | end |
− | return {value = Formatting:format_stat(aa_max)} | + | return {value = Formatting:format_stat(aa_max), simple = true} |
| end | | end |
| | | |
| function ShipListKai:asw(ship) | | function ShipListKai:asw(ship) |
− | return {value = Formatting:format_stat(ship:asw())} | + | return {value = Formatting:format_stat(ship:asw()), simple = true} |
| end | | end |
| | | |
Line 154: |
Line 154: |
| asw_max = ship:asw() | | asw_max = ship:asw() |
| end | | end |
− | return {value = Formatting:format_stat(asw_max)} | + | return {value = Formatting:format_stat(asw_max), simple = true} |
| end | | end |
| | | |
| function ShipListKai:los(ship) | | function ShipListKai:los(ship) |
− | return {value = Formatting:format_stat(ship:los())} | + | return {value = Formatting:format_stat(ship:los()), simple = true} |
| end | | end |
| | | |
Line 166: |
Line 166: |
| los_max = ship:los() | | los_max = ship:los() |
| end | | end |
− | return {value = Formatting:format_stat(los_max)} | + | return {value = Formatting:format_stat(los_max), simple = true} |
| end | | end |
| | | |
| function ShipListKai:luck(ship) | | function ShipListKai:luck(ship) |
− | return {value = Formatting:format_stat(ship:luck())} | + | return {value = Formatting:format_stat(ship:luck()), simple = true} |
| end | | end |
| | | |
Line 178: |
Line 178: |
| luck_max = ship:luck() | | luck_max = ship:luck() |
| end | | end |
− | return {value = Formatting:format_stat(luck_max)} | + | return {value = Formatting:format_stat(luck_max), simple = true} |
| end | | end |
| | | |
| function ShipListKai:hp(ship) | | function ShipListKai:hp(ship) |
− | return {value = Formatting:format_stat(ship:hp())} | + | return {value = Formatting:format_stat(ship:hp()), simple = true} |
| end | | end |
| | | |
Line 190: |
Line 190: |
| armor_max = ship:armor() | | armor_max = ship:armor() |
| end | | end |
− | return {value = Formatting:format_stat(armor_max)} | + | return {value = Formatting:format_stat(armor_max), simple = true} |
| end | | end |
| | | |
| function ShipListKai:evasion(ship) | | function ShipListKai:evasion(ship) |
− | return {value = Formatting:format_stat(ship:evasion())} | + | return {value = Formatting:format_stat(ship:evasion()), simple = true} |
| end | | end |
| | | |
Line 202: |
Line 202: |
| evasion_max = ship:evasion() | | evasion_max = ship:evasion() |
| end | | end |
− | return {value = Formatting:format_stat(evasion_max)} | + | return {value = Formatting:format_stat(evasion_max), simple = true} |
| end | | end |
| | | |
| function ShipListKai:speed(ship) | | function ShipListKai:speed(ship) |
− | return {value = Formatting:format_speed(ship:speed())} | + | return {value = Formatting:format_speed(ship:speed()), simple = true} |
| end | | end |
| | | |
| function ShipListKai:aircraft(ship) | | function ShipListKai:aircraft(ship) |
− | return {value = Formatting:format_stat(ship:total_space())} | + | return {value = Formatting:format_stat(ship:total_space()), simple = true} |
| end | | end |
| | | |
| function ShipListKai:range(ship) | | function ShipListKai:range(ship) |
− | return {value = Formatting:format_range(ship:range())} | + | return {value = Formatting:format_range(ship:range()), simple = true} |
| end | | end |
| | | |
| function ShipListKai:fuel(ship) | | function ShipListKai:fuel(ship) |
− | return {value = Formatting:format_stat(ship:fuel())} | + | return {value = Formatting:format_stat(ship:fuel()), simple = true} |
| end | | end |
| | | |
| function ShipListKai:ammo(ship) | | function ShipListKai:ammo(ship) |
− | return {value = Formatting:format_stat(ship:ammo())} | + | return {value = Formatting:format_stat(ship:ammo()), simple = true} |
| end | | end |
| | | |