mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-07 00:41:39 +07:00
Added documentation for Mac parameters as per #5679 and future-proofing build.gradle for eventual mac releases
This commit is contained in:
252
docs/uniques.md
252
docs/uniques.md
@ -4,10 +4,10 @@
|
||||
- [Building uniques](#building-uniques)
|
||||
- [CityState uniques](#citystate-uniques)
|
||||
- [Nation uniques](#nation-uniques)
|
||||
- [Improvement uniques](#improvement-uniques)
|
||||
- [Unit uniques](#unit-uniques)
|
||||
- [Terrain uniques](#terrain-uniques)
|
||||
- [Resource uniques](#resource-uniques)
|
||||
- [Improvement uniques](#improvement-uniques)
|
||||
- [Conditional uniques](#conditional-uniques)
|
||||
- [Ruins uniques](#ruins-uniques)
|
||||
- [Promotion uniques](#promotion-uniques)
|
||||
@ -17,7 +17,7 @@
|
||||
#### [stats]
|
||||
Example: "[+1 Gold, +2 Production]"
|
||||
|
||||
Applicable to: Global, Improvement, FollowerBelief
|
||||
Applicable to: Global, FollowerBelief, Improvement
|
||||
|
||||
#### [stats] [cityFilter]
|
||||
Example: "[+1 Gold, +2 Production] [in all cities]"
|
||||
@ -335,6 +335,36 @@ Example: "Remove extra unhappiness from annexed cities"
|
||||
|
||||
Applicable to: Building
|
||||
|
||||
#### Consumes [amount] [resource]
|
||||
Example: "Consumes [20] [Iron]"
|
||||
|
||||
Applicable to: Building, Unit, Improvement
|
||||
|
||||
#### Provides [amount] [resource]
|
||||
Example: "Provides [20] [Iron]"
|
||||
|
||||
Applicable to: Building, Improvement
|
||||
|
||||
#### Unbuildable
|
||||
Example: "Unbuildable"
|
||||
|
||||
Applicable to: Building, Unit
|
||||
|
||||
#### Cannot be purchased
|
||||
Example: "Cannot be purchased"
|
||||
|
||||
Applicable to: Building, Unit
|
||||
|
||||
#### Can be purchased with [stat] [cityFilter]
|
||||
Example: "Can be purchased with [Culture] [in all cities]"
|
||||
|
||||
Applicable to: Building, Unit
|
||||
|
||||
#### Can be purchased for [amount] [stat] [cityFilter]
|
||||
Example: "Can be purchased for [20] [Culture] [in all cities]"
|
||||
|
||||
Applicable to: Building, Unit
|
||||
|
||||
#### Cost increases by [amount] per owned city
|
||||
Example: "Cost increases by [20] per owned city"
|
||||
|
||||
@ -350,6 +380,11 @@ Example: "Requires a [Library] in this city"
|
||||
|
||||
Applicable to: Building
|
||||
|
||||
#### Not displayed as an available construction without [buildingName/tech/resource/policy]
|
||||
Example: "Not displayed as an available construction without [buildingName/tech/resource/policy]"
|
||||
|
||||
Applicable to: Building, Unit
|
||||
|
||||
#### Must be on [terrainFilter]
|
||||
Example: "Must be on [Grassland]"
|
||||
|
||||
@ -417,123 +452,7 @@ Example: "Retain [20]% of the happiness from a luxury after the last copy has be
|
||||
|
||||
Applicable to: Nation
|
||||
|
||||
## Improvement uniques
|
||||
#### Consumes [amount] [resource]
|
||||
Example: "Consumes [20] [Iron]"
|
||||
|
||||
Applicable to: Improvement, Unit, Building
|
||||
|
||||
#### Provides [amount] [resource]
|
||||
Example: "Provides [20] [Iron]"
|
||||
|
||||
Applicable to: Improvement, Building
|
||||
|
||||
#### Tile provides yield without assigned population
|
||||
Example: "Tile provides yield without assigned population"
|
||||
|
||||
Applicable to: Improvement, Terrain
|
||||
|
||||
#### Can also be built on tiles adjacent to fresh water
|
||||
Example: "Can also be built on tiles adjacent to fresh water"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### [stats] from [tileFilter] tiles
|
||||
Example: "[+1 Gold, +2 Production] from [Farm] tiles"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### [stats] for each adjacent [tileFilter]
|
||||
Example: "[+1 Gold, +2 Production] for each adjacent [Farm]"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Can be built outside your borders
|
||||
Example: "Can be built outside your borders"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Can be built just outside your borders
|
||||
Example: "Can be built just outside your borders"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Cannot be built on [tileFilter] tiles until [tech] is discovered
|
||||
Example: "Cannot be built on [Farm] tiles until [tech] is discovered"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Cannot be built on [tileFilter] tiles
|
||||
Example: "Cannot be built on [Farm] tiles"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Does not need removal of [tileFilter]
|
||||
Example: "Does not need removal of [Farm]"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Gives a defensive bonus of [amount]%
|
||||
Example: "Gives a defensive bonus of [20]%"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Costs [amount] gold per turn when in your territory
|
||||
Example: "Costs [20] gold per turn when in your territory"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Deal [amount] damage to adjacent enemy units
|
||||
Example: "Deal [20] damage to adjacent enemy units"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Great Improvement
|
||||
Example: "Great Improvement"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Provides a random bonus when entered
|
||||
Example: "Provides a random bonus when entered"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Unpillagable
|
||||
Example: "Unpillagable"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Indestructible
|
||||
Example: "Indestructible"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
## Unit uniques
|
||||
#### Unbuildable
|
||||
Example: "Unbuildable"
|
||||
|
||||
Applicable to: Unit, Building
|
||||
|
||||
#### Cannot be purchased
|
||||
Example: "Cannot be purchased"
|
||||
|
||||
Applicable to: Unit, Building
|
||||
|
||||
#### Can be purchased with [stat] [cityFilter]
|
||||
Example: "Can be purchased with [Culture] [in all cities]"
|
||||
|
||||
Applicable to: Unit, Building
|
||||
|
||||
#### Can be purchased for [amount] [stat] [cityFilter]
|
||||
Example: "Can be purchased for [20] [Culture] [in all cities]"
|
||||
|
||||
Applicable to: Unit, Building
|
||||
|
||||
#### Not displayed as an available construction without [buildingName/tech/resource/policy]
|
||||
Example: "Not displayed as an available construction without [buildingName/tech/resource/policy]"
|
||||
|
||||
Applicable to: Unit, Building
|
||||
|
||||
#### Founds a new city
|
||||
Example: "Founds a new city"
|
||||
|
||||
@ -654,11 +573,6 @@ Example: "Never appears as a Barbarian unit"
|
||||
|
||||
Applicable to: Unit
|
||||
|
||||
#### Hidden when religion is disabled
|
||||
Example: "Hidden when religion is disabled"
|
||||
|
||||
Applicable to: Unit, Building, Ruins
|
||||
|
||||
## Terrain uniques
|
||||
#### Must be adjacent to [amount] [simpleTerrain] tiles
|
||||
Example: "Must be adjacent to [20] [simpleTerrain] tiles"
|
||||
@ -720,6 +634,11 @@ Example: "Provides a one-time Production bonus to the closest city when cut down
|
||||
|
||||
Applicable to: Terrain
|
||||
|
||||
#### Tile provides yield without assigned population
|
||||
Example: "Tile provides yield without assigned population"
|
||||
|
||||
Applicable to: Terrain, Improvement
|
||||
|
||||
#### Nullifies all other stats this tile provides
|
||||
Example: "Nullifies all other stats this tile provides"
|
||||
|
||||
@ -851,6 +770,82 @@ Example: "Can only be created by Mercantile City-States"
|
||||
|
||||
Applicable to: Resource
|
||||
|
||||
## Improvement uniques
|
||||
#### Can also be built on tiles adjacent to fresh water
|
||||
Example: "Can also be built on tiles adjacent to fresh water"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### [stats] from [tileFilter] tiles
|
||||
Example: "[+1 Gold, +2 Production] from [Farm] tiles"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### [stats] for each adjacent [tileFilter]
|
||||
Example: "[+1 Gold, +2 Production] for each adjacent [Farm]"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Can be built outside your borders
|
||||
Example: "Can be built outside your borders"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Can be built just outside your borders
|
||||
Example: "Can be built just outside your borders"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Cannot be built on [tileFilter] tiles until [tech] is discovered
|
||||
Example: "Cannot be built on [Farm] tiles until [tech] is discovered"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Cannot be built on [tileFilter] tiles
|
||||
Example: "Cannot be built on [Farm] tiles"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Does not need removal of [tileFilter]
|
||||
Example: "Does not need removal of [Farm]"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Gives a defensive bonus of [amount]%
|
||||
Example: "Gives a defensive bonus of [20]%"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Costs [amount] gold per turn when in your territory
|
||||
Example: "Costs [20] gold per turn when in your territory"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Deal [amount] damage to adjacent enemy units
|
||||
Example: "Deal [20] damage to adjacent enemy units"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Great Improvement
|
||||
Example: "Great Improvement"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Provides a random bonus when entered
|
||||
Example: "Provides a random bonus when entered"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Unpillagable
|
||||
Example: "Unpillagable"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
#### Indestructible
|
||||
Example: "Indestructible"
|
||||
|
||||
Applicable to: Improvement
|
||||
|
||||
## Conditional uniques
|
||||
#### when at war
|
||||
Example: "when at war"
|
||||
@ -1043,6 +1038,11 @@ Example: "This Unit upgrades for free including special upgrades"
|
||||
|
||||
Applicable to: Ruins
|
||||
|
||||
#### Hidden when religion is disabled
|
||||
Example: "Hidden when religion is disabled"
|
||||
|
||||
Applicable to: Ruins, Building, Unit
|
||||
|
||||
#### Hidden before founding a Pantheon
|
||||
Example: "Hidden before founding a Pantheon"
|
||||
|
||||
@ -1103,9 +1103,7 @@ Applicable to: Promotion
|
||||
- "Immediately creates the cheapest available cultural building in each of your first [amount] cities for free" - Deprecated As of 3.16.15 - removed 3.18.4, replace with "Provides the cheapest [stat] building in your first [amount] cities for free"
|
||||
- "Immediately creates a [buildingName] in each of your first [amount] cities for free" - Deprecated As of 3.16.15 - removed 3.18.4, replace with "Provides a [buildingName] in your first [amount] cities for free"
|
||||
- "Not displayed as an available construction unless [buildingName] is built" - Deprecated As of 3.16.11, replace with "Not displayed as an available construction without [buildingName]"
|
||||
- "[stats] on [tileFilter] tiles once [tech] is discovered" - Deprecated As of 3.17.10, replace with "[stats] from [tileFilter] tiles <after discovering [tech]>"
|
||||
- "[stats] once [tech] is discovered" - Deprecated As of 3.17.10, replace with "[stats] <after discovering [tech]>"
|
||||
- "Deal 30 damage to adjacent enemy units" - Deprecated As of 3.17.10, replace with "Adjacent enemy units ending their turn take [30] damage"
|
||||
- "+[amount]% Strength" - Deprecated As of 3.17.3 - removed 3.17.13, replace with "[amount]% Strength"
|
||||
- "-[amount]% Strength" - Deprecated As of 3.17.3 - removed 3.17.13, replace with "[amount]% Strength"
|
||||
- "+[amount]% Strength vs [combatantFilter]" - Deprecated As of 3.17.3 - removed 3.17.13, replace with "[amount]% Strength <vs [mapUnitFilter] units>/<vs cities>"
|
||||
@ -1120,4 +1118,6 @@ Applicable to: Promotion
|
||||
- "Limited Visibility" - Deprecated As of 3.17.5 - removed 3.18.5, replace with "[-1] Sight"
|
||||
- "Double movement in coast" - Deprecated As of 3.17.1 - removed 3.17.13, replace with "Double movement in [terrainFilter]"
|
||||
- "Double movement rate through Forest and Jungle" - Deprecated As of 3.17.1 - removed 3.17.13, replace with "Double movement in [terrainFilter]"
|
||||
- "Double movement in Snow, Tundra and Hills" - Deprecated As of 3.17.1 - removed 3.17.13, replace with "Double movement in [terrainFilter]"
|
||||
- "Double movement in Snow, Tundra and Hills" - Deprecated As of 3.17.1 - removed 3.17.13, replace with "Double movement in [terrainFilter]"
|
||||
- "[stats] on [tileFilter] tiles once [tech] is discovered" - Deprecated As of 3.17.10, replace with "[stats] from [tileFilter] tiles <after discovering [tech]>"
|
||||
- "Deal 30 damage to adjacent enemy units" - Deprecated As of 3.17.10, replace with "Adjacent enemy units ending their turn take [30] damage"
|
Reference in New Issue
Block a user