2019-05-03 13:59:46 +00:00
|
|
|
package com.unciv
|
|
|
|
|
2020-03-11 09:39:37 +00:00
|
|
|
object Constants {
|
|
|
|
const val worker = "Worker"
|
|
|
|
const val settler = "Settler"
|
|
|
|
const val greatGeneral = "Great General"
|
|
|
|
|
2020-04-13 07:49:32 +00:00
|
|
|
const val impassable = "Impassable"
|
2020-03-11 09:39:37 +00:00
|
|
|
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"
|
|
|
|
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"
|
2020-04-03 08:22:27 +00:00
|
|
|
val greatImprovements = listOf("Academy", "Landmark", "Manufactory", "Customs house", "Citadel")
|
2020-03-11 09:39:37 +00:00
|
|
|
|
2020-04-16 17:39:05 +00:00
|
|
|
const val fort = "Fort"
|
|
|
|
const val citadel = "Citadel"
|
|
|
|
|
2020-04-11 19:02:00 +00:00
|
|
|
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"
|
2020-04-11 18:40:08 +00:00
|
|
|
const val tutorialPopupNamePrefix = "Tutorial: "
|
2020-04-13 18:53:23 +00:00
|
|
|
|
|
|
|
const val close = "Close"
|
2020-04-17 07:21:11 +00:00
|
|
|
|
|
|
|
const val scienceConversionEffect = "Production to science conversion in cities increased by 33%"
|
2020-04-17 12:11:45 +00:00
|
|
|
|
2020-04-17 12:26:24 +00:00
|
|
|
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"
|
2019-05-03 13:59:46 +00:00
|
|
|
}
|