mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-12-22 23:24:00 +07:00
make shield field in database more clear (#10182)
* make shield field in database more clear * max shield
This commit is contained in:
parent
08c1241fa3
commit
7befdb707e
@ -1061,7 +1061,8 @@ ability.liquidexplode.description = Spills liquid on death
|
||||
|
||||
ability.stat.firingrate = [stat]{0}/sec[lightgray] firing rate
|
||||
ability.stat.regen = [stat]{0}[lightgray] health/sec
|
||||
ability.stat.shield = [stat]{0}[lightgray] shield
|
||||
ability.stat.pulseregen = [stat]{0}[lightgray] health/pulse
|
||||
ability.stat.shield = [stat]{0}[lightgray] max shield
|
||||
ability.stat.repairspeed = [stat]{0}/sec[lightgray] repair speed
|
||||
ability.stat.slurpheal = [stat]{0}[lightgray] health/liquid unit
|
||||
ability.stat.cooldown = [stat]{0} sec[lightgray] cooldown
|
||||
|
@ -34,6 +34,8 @@ public class ShieldRegenFieldAbility extends Ability{
|
||||
t.row();
|
||||
t.add(abilityStat("firingrate", Strings.autoFixed(60f / reload, 2)));
|
||||
t.row();
|
||||
t.add(abilityStat("pulseregen", Strings.autoFixed(amount, 2)));
|
||||
t.row();
|
||||
t.add(abilityStat("shield", Strings.autoFixed(max, 2)));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user