share/hedgewars/Data/Missions/Scenario/Big_Armory.lua
changeset 15495 5326b7e90a69
parent 14649 e7b2542c4d28
equal deleted inserted replaced
15494:55436712b5e9 15495:5326b7e90a69
     1 HedgewarsScriptLoad("/Scripts/SimpleMission.lua")
     1 HedgewarsScriptLoad("/Scripts/SimpleMission.lua")
     2 HedgewarsScriptLoad("/Scripts/Locale.lua")
     2 HedgewarsScriptLoad("/Scripts/Locale.lua")
     3 
     3 
     4 local heroAmmo = {}
     4 local heroAmmo = {}
     5 for a=0, amCreeper do
     5 for a=0, amMinigun do
     6 	if a == amExtraTime then
     6 	if a == amExtraTime then
     7 		heroAmmo[a] = 2
     7 		heroAmmo[a] = 2
     8 	elseif a ~= amNothing and a ~= amCreeper then
     8 	elseif a ~= amNothing and a ~= amCreeper then
     9 		heroAmmo[a] = 100
     9 		heroAmmo[a] = 100
    10 	end
    10 	end