From b1fb6bbe55f60e0e87a8eb52f9917dcd813751d8 Mon Sep 17 00:00:00 2001 From: PhiRite Date: Mon, 15 Sep 2025 15:03:04 +0800 Subject: [PATCH] Update UniqueType.kt --- core/src/com/unciv/models/ruleset/unique/UniqueType.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/com/unciv/models/ruleset/unique/UniqueType.kt b/core/src/com/unciv/models/ruleset/unique/UniqueType.kt index 9350b9cb39..83c5573544 100644 --- a/core/src/com/unciv/models/ruleset/unique/UniqueType.kt +++ b/core/src/com/unciv/models/ruleset/unique/UniqueType.kt @@ -433,6 +433,10 @@ enum class UniqueType( WithdrawsBeforeMeleeCombat("Withdraws before melee combat", UniqueTarget.Unit), 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),