3x3 breach

This commit is contained in:
Anuken
2021-12-27 15:54:09 -05:00
parent f337a12f90
commit 677abf4924
11 changed files with 45 additions and 21 deletions
@@ -305,6 +305,10 @@ public class StatValues{
sep(bt, Core.bundle.format("bullet.buildingdamage", (int)(type.buildingDamageMultiplier * 100)));
}
if(type.rangeChange != 0 && !compact){
sep(bt, Core.bundle.format("bullet.range", (type.rangeChange > 0 ? "+" : "-") + Strings.autoFixed(type.rangeChange / tilesize, 1)));
}
if(type.splashDamage > 0){
sep(bt, Core.bundle.format("bullet.splashdamage", (int)type.splashDamage, Strings.fixed(type.splashDamageRadius / tilesize, 1)));
}