foreshadow overhaul (#9223)

* overhaul foreshadow

* whar ?
This commit is contained in:
Ilya246
2023-11-02 16:58:26 +04:00
committed by GitHub
parent e15a4e6bdf
commit 6014f2353a
4 changed files with 22 additions and 6 deletions

View File

@@ -487,6 +487,10 @@ public class StatValues{
sep(bt, "@bullet.armorpierce");
}
if(type.maxDamageFraction > 0){
sep(bt, Core.bundle.format("bullet.maxdamagefraction", (int)(type.maxDamageFraction * 100)));
}
if(type.suppressionRange > 0){
sep(bt, Core.bundle.format("bullet.suppression", Strings.autoFixed(type.suppressionDuration / 60f, 2), Strings.fixed(type.suppressionRange / tilesize, 1)));
}