Unciv/core/src/com/unciv/Constants.kt
2020-07-17 15:47:49 +03:00

81 lines
No EOL
2.7 KiB
Kotlin

package com.unciv
object Constants {
const val worker = "Worker"
const val workerUnique = "Can build improvements on tiles"
const val settler = "Settler"
const val greatGeneral = "Great General"
const val impassable = "Impassable"
const val ocean = "Ocean"
const val coast = "Coast"
const val mountain = "Mountain"
const val hill = "Hill"
const val plains = "Plains"
const val lakes = "Lakes"
const val desert = "Desert"
const val grassland = "Grassland"
const val tundra = "Tundra"
const val snow = "Snow"
const val forest = "Forest"
const val jungle = "Jungle"
const val marsh = "Marsh"
const val oasis = "Oasis"
const val atoll = "Atoll"
const val ice = "Ice"
const val floodPlains = "Flood plains"
val vegetation = arrayOf(forest, jungle)
val sea = arrayOf(ocean, coast)
const val barringerCrater = "Barringer Crater"
const val grandMesa = "Grand Mesa"
const val greatBarrierReef = "Great Barrier Reef"
const val krakatoa = "Krakatoa"
const val mountFuji = "Mount Fuji"
const val oldFaithful = "Old Faithful"
const val rockOfGibraltar = "Rock of Gibraltar"
const val cerroDePotosi = "Cerro de Potosi"
const val elDorado = "El Dorado"
const val fountainOfYouth = "Fountain of Youth"
const val barbarianEncampment = "Barbarian encampment"
const val ancientRuins = "Ancient ruins"
const val peaceTreaty = "Peace Treaty"
const val researchAgreement = "Research Agreement"
const val openBorders = "Open Borders"
const val random = "Random"
const val fort = "Fort"
const val citadel = "Citadel"
const val tradingPost = "Trading post"
const val unitActionSetUp = "Set Up"
const val unitActionSleep = "Sleep"
const val unitActionSleepUntilHealed = "Sleep until healed"
const val unitActionAutomation = "Automate"
const val unitActionExplore = "Explore"
const val futureTech = "Future Tech"
const val cancelImprovementOrder = "Cancel improvement order"
const val tutorialPopupNamePrefix = "Tutorial: "
const val close = "Close"
const val disabled = "disabled"
const val enabled = "enabled"
const val scienceConversionEffect = "Production to science conversion in cities increased by 33%"
const val ancientEra = "Ancient era"
const val classicalEra = "Classical era"
const val medievalEra = "Medieval era"
const val renaissanceEra = "Renaissance era"
const val industrialEra = "Industrial era"
const val modernEra = "Modern era"
const val informationEra = "Information era"
const val futureEra = "Future era"
const val barbarians = "Barbarians"
const val spectator = "Spectator"
}