Restore DefensePost shells, increase cool down, decrease shell damage

This commit is contained in:
David Eskin
2025-04-23 22:57:59 -04:00
parent 2f59c50f64
commit 7119923e09
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -250,7 +250,7 @@ export class DefaultConfig implements Config {
return {
cost: () => 0,
territoryBound: false,
damage: 250,
damage: 200,
};
case UnitType.SAMMissile:
return {
@@ -706,7 +706,7 @@ export class DefaultConfig implements Config {
}
defensePostShellAttackRate(): number {
return 100;
return 120;
}
safeFromPiratesCooldownMax(): number {
+1 -1
View File
@@ -118,7 +118,7 @@ export class DefensePostExecution implements Execution {
this.target = null;
return;
} else {
//this.shoot();
this.shoot();
return;
}
}