mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-11 00:08:58 +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 approximately [stats] =
|
||||
Needs removal of terrain features to be built =
|
||||
Air Intercept Range: [amount] =
|
||||
Unit type =
|
||||
Units: =
|
||||
Unit types =
|
||||
|
@ -97,6 +97,10 @@ object BaseUnitDescriptions {
|
||||
textList += FormattedLine(stats.joinToString("/", "{Cost}: "))
|
||||
}
|
||||
|
||||
if (baseUnit.interceptRange > 0) {
|
||||
textList += FormattedLine("Air Intercept Range: [${baseUnit.interceptRange}]")
|
||||
}
|
||||
|
||||
if (baseUnit.replacementTextForUniques.isNotEmpty()) {
|
||||
textList += FormattedLine()
|
||||
textList += FormattedLine(baseUnit.replacementTextForUniques)
|
||||
|
Reference in New Issue
Block a user