update maps: remove small lakes as it breaks encirclement. More money… (#188)

… more frequent trade ships, lakes prevent encirclement, warships start
at full health
This commit is contained in:
evanpelle
2025-03-08 16:45:23 -08:00
committed by GitHub
parent de584329b8
commit 4281095666
20 changed files with 427 additions and 1021 deletions
+1 -2
View File
@@ -25,8 +25,7 @@ export class UnitImpl implements Unit {
public _owner: PlayerImpl,
private _dstPort?: Unit,
) {
// default to 60% health (or 1.2 is no health specified)
this._health = toInt((this.mg.unitInfo(_type).maxHealth ?? 2) * 0.6);
this._health = toInt(this.mg.unitInfo(_type).maxHealth ?? 1);
this._lastTile = _tile;
}