share/hedgewars/Data/Missions/Training/Basic_Training_-_Bazooka.lua
changeset 8366 67c7ba2b82a3
parent 8043 da083f8d95e6
child 8679 a8bdcf7bec20
equal deleted inserted replaced
8365:fbd799a1e95b 8366:67c7ba2b82a3
    62 	-- Things we don't modify here will use their default values.
    62 	-- Things we don't modify here will use their default values.
    63 
    63 
    64 	-- The base number for the random number generator
    64 	-- The base number for the random number generator
    65 	Seed = 1
    65 	Seed = 1
    66 	-- Game settings and rules
    66 	-- Game settings and rules
    67 	GameFlags = gfMultiWeapon + gfOneClanMode + gfSolidLand
    67     EnableGameFlags(gfMultiWeapon, gfOneClanMode, gfSolidLand)
       
    68     -- Uncommenting this wouldn't do anything
       
    69     --EnableGameFlags(gfMultiWeapon, gfOneClanMode, gfSolidLand)
       
    70     -- Neither this
       
    71     --DisableGameFlags(gfArtillery)
       
    72     -- Uncommenting this would make the terrain damageable
       
    73     --DisableGameFlags(gfSolidLand)
       
    74     -- Uncommenting this would remove all flags set previously
       
    75     --ClearGameFlags()
    68 	-- The time the player has to move each round (in ms)
    76 	-- The time the player has to move each round (in ms)
    69 	TurnTime = 60000
    77 	TurnTime = 60000
    70 	-- The frequency of crate drops
    78 	-- The frequency of crate drops
    71 	CaseFreq = 0
    79 	CaseFreq = 0
    72 	-- The number of mines being placed
    80 	-- The number of mines being placed