Add "Land" as possible input to tile-related uniques (#3574)

* no message

* Revert "no message"

This reverts commit 9ece60bd583a02e80d2c4886dceb1e5d3e9996a9.

* Renamed Haka War Dance effect to Intimidation, to make it more applicable to non-Maori Warrior units.

* no message

* Parameterized civUnique for extra experience from combat

* Update build.gradle.kts

* Update BattleDamage.kt

* Update Policies.json

* Update Battle.kt

* Fully parameterized nationwide XP gain

* New parameterized uniques for border expansion - "-[]% Gold cost of acquiring tiles []" and "-[]% Culture cost of acquiring tiles []"

* Parameterized uniques for acquiring new tiles via either culture or gold

* Parameterizing expansion unique - improved calculation method

* Improved parameterization for border expansion uniques

* Add "Land" as possible input to tile-related uniques
This commit is contained in:
SpacedOutChicken 2021-02-03 21:42:12 -07:00 committed by GitHub
parent c85137aaaf
commit 72b917ca1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -355,6 +355,7 @@ open class TileInfo {
|| improvement == filter
// || resource == filter // TODO uncomment in next version
|| filter == "Water" && isWater
|| filter == "Land" && isLand
}
fun hasImprovementInProgress() = improvementInProgress != null