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

@ -433,6 +433,10 @@ enum class UniqueType(
WithdrawsBeforeMeleeCombat("Withdraws before melee combat", UniqueTarget.Unit), WithdrawsBeforeMeleeCombat("Withdraws before melee combat", UniqueTarget.Unit),
CannotCaptureCities("Unable to capture cities", UniqueTarget.Unit, UniqueTarget.Global), CannotCaptureCities("Unable to capture cities", UniqueTarget.Unit, UniqueTarget.Global),
CannotPillage("Unable to pillage tiles", 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 // Movement
NoMovementToPillage("No movement cost to pillage", UniqueTarget.Unit, UniqueTarget.Global), NoMovementToPillage("No movement cost to pillage", UniqueTarget.Unit, UniqueTarget.Global),