# HG changeset patch # User Wuzzy # Date 1492313876 -7200 # Node ID 401cf7a7f870c9f942272557dcb717d7cb679890 # Parent 2eedf9e0cd6dc8e8f40923a7620fdd0ad119e947 Show mines timer in ACF, Dragon's Lair diff -r 2eedf9e0cd6d -r 401cf7a7f870 share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/dragon.lua --- a/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/dragon.lua Sun Apr 16 04:49:05 2017 +0200 +++ b/share/hedgewars/Data/Missions/Campaign/A_Classic_Fairytale/dragon.lua Sun Apr 16 05:37:56 2017 +0200 @@ -299,7 +299,7 @@ ShowMission(loc("Dragon's Lair"), loc("Obstacle course"), loc("In order to get to the other side, you need to collect the crates first.|") .. loc("As the ammo is sparse, you might want to reuse ropes while mid-air.|") .. loc("The enemy can't move but it might be a good idea to stay out of sight!|") .. - string.format(loc("You have %d turns until Sudden Death! Better hurry!"), SuddenDeathTurns), 1, 0) + loc("Mines time: 5 seconds"), 1, 0) end function SkipKillAnim() @@ -312,7 +312,7 @@ PutWeaponCrates() TurnTimeLeft = TurnTime AddEvent(CheckCyborgsDead, {}, DoCyborgsDead, {}, 0) - ShowMission(loc("Dragon's Lair"), loc("The Slaughter"), loc("Kill the aliens!"), 1, 2000) + ShowMission(loc("Dragon's Lair"), loc("The Slaughter"), loc("Kill the aliens!").."|"..loc("Mines time: 5 seconds"), 1, 2000) end function SkipKilledAnim() @@ -330,7 +330,8 @@ SpawnHealthCrate(secondPos[1][1] + 30, secondPos[1][2]) ShowMission(loc("Dragon's Lair"), loc("The what?!"), loc("Use the portal gun to get to the next crate, then use the new gun to get to the final destination!|").. loc("Portal hint: one goes to the destination, and one is the entrance.|").. - loc("Teleport hint: just use the mouse to select the destination!"), 1, 0) + loc("Teleport hint: just use the mouse to select the destination!").."|".. + loc("Mines time: 5 seconds"), 1, 0) end -----------------------------Events------------------------------------