mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-13 09:18:43 +07:00
Add Air Intercept Range to Civilopedia card (#12044)
* Add Air Intercept Range to Civilopedia card * Add translation entry
This commit is contained in:
@ -1690,6 +1690,7 @@ Start year: [comment] =
|
|||||||
Pillaging this improvement yields [stats] =
|
Pillaging this improvement yields [stats] =
|
||||||
Pillaging this improvement yields approximately [stats] =
|
Pillaging this improvement yields approximately [stats] =
|
||||||
Needs removal of terrain features to be built =
|
Needs removal of terrain features to be built =
|
||||||
|
Air Intercept Range: [amount] =
|
||||||
Unit type =
|
Unit type =
|
||||||
Units: =
|
Units: =
|
||||||
Unit types =
|
Unit types =
|
||||||
|
@ -97,6 +97,10 @@ object BaseUnitDescriptions {
|
|||||||
textList += FormattedLine(stats.joinToString("/", "{Cost}: "))
|
textList += FormattedLine(stats.joinToString("/", "{Cost}: "))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (baseUnit.interceptRange > 0) {
|
||||||
|
textList += FormattedLine("Air Intercept Range: [${baseUnit.interceptRange}]")
|
||||||
|
}
|
||||||
|
|
||||||
if (baseUnit.replacementTextForUniques.isNotEmpty()) {
|
if (baseUnit.replacementTextForUniques.isNotEmpty()) {
|
||||||
textList += FormattedLine()
|
textList += FormattedLine()
|
||||||
textList += FormattedLine(baseUnit.replacementTextForUniques)
|
textList += FormattedLine(baseUnit.replacementTextForUniques)
|
||||||
|
Reference in New Issue
Block a user