Update UniqueType.kt

This commit is contained in:
PhiRite 2025-09-15 15:03:04 +08:00 committed by GitHub
parent 17c59c02ed
commit b1fb6bbe55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -434,6 +434,10 @@ enum class UniqueType(
CannotCaptureCities("Unable to capture cities", UniqueTarget.Unit, UniqueTarget.Global),
CannotPillage("Unable to pillage tiles", UniqueTarget.Unit, UniqueTarget.Global),
// allow any unit to destory cities instead of capturing them, also allows non melee units to destroy cities
CanDestroyCities("Can destroy [cityFilter] cities", UniqueTarget.Unit, UniqueTarget.Global,
docDescription = "The unit will destroy cityFilter cities instead of capturing them, also allows non-melee units to destroy cities." + "Capital cities (including city states) are immune to this effect."),
// Movement
NoMovementToPillage("No movement cost to pillage", UniqueTarget.Unit, UniqueTarget.Global),
CanMoveAfterAttacking("Can move after attacking", UniqueTarget.Unit),