Mention inf attack rule in Diver, also fix the in-game mission name
authorWuzzy <almikes@aol.com>
Thu, 27 Apr 2017 03:38:22 +0200
changeset 12354 5e4ac10a03ce
parent 12353 ebff18a44c1e
child 12355 37ed9df448fa
Mention inf attack rule in Diver, also fix the in-game mission name
share/hedgewars/Data/Missions/Scenario/User_Mission_-_Diver.lua
--- a/share/hedgewars/Data/Missions/Scenario/User_Mission_-_Diver.lua	Thu Apr 27 03:21:16 2017 +0200
+++ b/share/hedgewars/Data/Missions/Scenario/User_Mission_-_Diver.lua	Thu Apr 27 03:38:22 2017 +0200
@@ -47,7 +47,10 @@
 
 	AddGear(579, 296, gtMine, 0, 0, 0, 0)
 
-	ShowMission(loc("Operation Diver"), loc("Scenario"), loc("Eliminate the enemy before the time runs out.") .. "|" .. loc("Mines time: 1 second"), -amFirePunch, 0);
+	ShowMission(loc("Diver"), loc("Scenario"),
+		loc("Eliminate the enemy before the time runs out.") .. "|" .. 
+		loc("Unlimited Attacks: Attacks don't end your turn") .. "|" ..
+		loc("Mines time: 1 second"), -amFirePunch, 0);
 	--SetTag(AddGear(0, 0, gtATSmoothWindCh, 0, 0, 0, 1), -70)
 
 	SetWind(-100)
@@ -91,9 +94,9 @@
 function onGearDelete(gear)
 
 	if (gear == enemy) and (GameOver == false) then
-		ShowMission(loc("Operation Diver"), loc("MISSION SUCCESSFUL"), loc("Congratulations!"), 0, 0)
+		ShowMission(loc("Diver"), loc("MISSION SUCCESSFUL"), loc("Congratulations!"), 0, 0)
 	elseif gear == player then
-		ShowMission(loc("Operation Diver"), loc("MISSION FAILED"), loc("Oh no! Just try again!"), -amSkip, 0)		
+		ShowMission(loc("Diver"), loc("MISSION FAILED"), loc("Oh no! Just try again!"), -amSkip, 0)		
 		GameOver = true
 	end