share/hedgewars/Data/Scripts/Multiplayer/Capture_the_Flag.lua
changeset 13114 c3fc9157f740
parent 13113 75afd374b764
child 13115 64d84011a48e
equal deleted inserted replaced
13113:75afd374b764 13114:c3fc9157f740
   442 end
   442 end
   443 
   443 
   444 function showCTFMission()
   444 function showCTFMission()
   445 	local captures
   445 	local captures
   446 	if captureLimit == 1 then
   446 	if captureLimit == 1 then
   447 		captures = string.format(loc("- First team to capture the flag wins"), captureLimit)
   447 		captures = string.format(loc("- First clan to capture the flag wins"), captureLimit)
   448 	else
   448 	else
   449 		captures = string.format(loc("- First team to score %d captures wins"), captureLimit)
   449 		captures = string.format(loc("- First clan to score %d captures wins"), captureLimit)
   450 	end
   450 	end
   451 
   451 
   452 	local rules = loc("Rules:") .. " |" ..
   452 	local rules = loc("Rules:") .. "|" ..
   453 		loc("- Place your team flag at the end of your first turn") .. "|" ..
   453 		loc("- Place your clan flag at the end of your first turn") .. "|" ..
   454 		loc("- Return the enemy flag to your base to score") .."|"..
   454 		loc("- Return the enemy flag to your base to score") .."|"..
   455 		captures .. "|" ..
   455 		captures .. "|" ..
   456 		loc("- You may only score when your flag is in your base") .."|"..
   456 		loc("- You may only score when your flag is in your base") .."|"..
   457 		loc("- Hogs will drop the flag when killed") .."|"..
   457 		loc("- Hogs will drop the flag when killed") .."|"..
   458 		loc("- Dropped flags may be returned or recaptured").."|"..
   458 		loc("- Dropped flags may be returned or recaptured").."|"..