slow fallout attacks

This commit is contained in:
1brucben
2025-06-01 22:06:29 +02:00
parent 421a940252
commit 5590a4e41e
+1 -1
View File
@@ -230,7 +230,7 @@ export class DefaultConfig implements Config {
falloutDefenseModifier(falloutRatio: number): number {
// falloutRatio is between 0 and 1
// So defense modifier is between [3, 1]
return 2 - falloutRatio;
return 2 - 0.9 * falloutRatio;
}
SAMCooldown(): number {
return 75;