Added End Game Messages for varioud victory types

This commit is contained in:
Yair Morgenstern 2019-08-20 10:55:27 +03:00
parent 56b3f1c77a
commit b9baa654ab
3 changed files with 24 additions and 4 deletions

View File

@ -1646,6 +1646,18 @@
Portuguese:"Você ganhou uma vitória de dominação!"
}
"You have achieved victory through the awesome power of your Culture. Your civilization's greatness - the magnificence of its monuments and the power of its artists - have astounded the world! Poets will honor you as long as beauty brings gladness to a weary heart.":{
}
"The world has been convulsed by war. May great and powerful civilizations have fallen, but you have survived - and emerged victorious! The world will long remember your glorious triumph!":{
}
"You have achieved victory through mastery of Science! You have conquered the mysteries of nature and led your people on a voyage to a brave new world! Your triumph will be remembered as long as the stars burn in the night sky!":{
}
"You have been defeated. Your civilization has been overwhelmed by its many foes. But your people do not despair, for they know that one day you shall return - and lead them forward to victory!":{
}
"One more turn...!":{
Italian:"Aspetta! Solo un altro turno..."
German:"Nur noch eine Runde..."

View File

@ -71,7 +71,15 @@ class VictoryScreen : PickerScreen() {
fun wonOrLost(description: String) {
descriptionLabel.setText(description.tr())
val endGameMessage = when(description){
"You have won a cultural victory!" -> "You have achieved victory through the awesome power of your Culture. Your civilization's greatness - the magnificence of its monuments and the power of its artists - have astounded the world! Poets will honor you as long as beauty brings gladness to a weary heart."
"You have won a domination victory!" -> "The world has been convulsed by war. May great and powerful civilizations have fallen, but you have survived - and emerged victorious! The world will long remember your glorious triumph!"
"You have won a scientific victory!" -> "You have achieved victory through mastery of Science! You have conquered the mysteries of nature and led your people on a voyage to a brave new world! Your triumph will be remembered as long as the stars burn in the night sky!"
else -> "You have been defeated. Your civilization has been overwhelmed by its many foes. But your people do not despair, for they know that one day you shall return - and lead them forward to victory!"
}
descriptionLabel.setText(description.tr()+"\n"+endGameMessage.tr() )
rightSideButton.setText("Start new game".tr())
rightSideButton.isVisible = true