]> git.jsancho.org Git - lugaru.git/commitdiff
Improve end texts for existing campaigns
authorRémi Verschelde <rverschelde@gmail.com>
Sat, 11 Feb 2017 12:35:46 +0000 (13:35 +0100)
committerRémi Verschelde <rverschelde@gmail.com>
Sat, 11 Feb 2017 12:36:20 +0000 (13:36 +0100)
Made the end text left-aligned since the current system
does not allow proper centering of variable length lines.

Completes and closes #60.

Data/Campaigns/empire.txt
Data/Campaigns/main.txt
Data/Campaigns/seventasks.txt
Data/Campaigns/temple.txt
Source/Menu/Menu.cpp

index 5311489bc389272b0affdf6c404552a440141860..ff82ab09c9e8eb5f9ecf3f49b8b5dd6aa11fdeee 100644 (file)
@@ -367,3 +367,7 @@ ChooseNext: 1
 NumNext: 0
 LocationX: 130
 LocationY: 350
+
+EndText:At last, the Empire is defeated!
+While Ash, avenged, mourns the loss of Leila,
+the reconstruction of Lugaru's island begins...
index 677d2eb86327ad184df84509c6c8aaca1ee7e3a7..44a5c259426ea8b53966d4fcd300b2d5882bef16 100644 (file)
@@ -242,6 +242,6 @@ NumNext: 0
 LocationX: 284
 LocationY: 312
 
-EndText:Congratulations!
-You have avenged your family and
-restored peace to the island of Lugaru.
+EndText:You have avenged your family and
+restored peace to the island of Lugaru...
+But will you find your inner peace?
index 70b2aedb163d4cc11d66322b29c04db7dd0cf886..ba1fcf758eb89a4787c77d067064201ba3240b62 100644 (file)
@@ -160,3 +160,7 @@ ChooseNext: 1
 NumNext: 0
 LocationX: 400
 LocationY: 400
+
+EndText:Finally a true Seneschal!
+Your vow of silence is lifted, and your
+assassination skills are beyond question.
index 7b67f6c0b0665d4dc5cbf459f1a9bc6993eb8bcd..27d2be7d3762fb9f508512a20a80d75175234e64 100644 (file)
@@ -277,3 +277,7 @@ ChooseNext: 1
 NumNext: 0
 LocationX: 343
 LocationY: 258
+
+EndText:Congratulations!
+You beat the Temple campaign and got the right
+to propose a cool ending text upstream! :D
index caabec392baa5321457c89a20dbf4e284aeee7a4..776d8258b5a3d284421027121db34372c2fe7bc1 100644 (file)
@@ -503,9 +503,9 @@ void Menu::Load()
             addButton(numchallengelevels, "Back", 10, 10);
             break;
         case 10: {
-            addLabel(0, campaignEndText[0], 220, 330);
-            addLabel(1, campaignEndText[1], 140, 300);
-            addLabel(2, campaignEndText[2], 110, 270);
+            addLabel(0, campaignEndText[0], 80, 330);
+            addLabel(1, campaignEndText[1], 80, 300);
+            addLabel(2, campaignEndText[2], 80, 270);
             addButton(3, "Back", 10, 10);
             addLabel(4, string("Your score:         ") + to_string((int)Account::active().getCampaignScore()), 190, 200);
             addLabel(5, string("Highest score:      ") + to_string((int)Account::active().getCampaignHighScore()), 190, 180);