## the labyrinth world map ## ############################# ## options options -ms 5 -set _reloadTime 1.5 -set _tankSpeed 40 -set _jumpVelocity 14 -set _shotSpeed 300 end world name thelabyrinth size 1500 end ## Physics ################## physics ## dummy physics (place-holder for groups) name dummy_physics end physics ## move east (+x) name move_east linear 150 0 0 end physics ## move west (-x) name move_west linear -150 0 0 end physics ## move north (+y) name move_north linear 0 150 0 end physics ## move south (-y) name move_south linear 0 -150 0 end ## Group Definitions ######## define corner_base ## defines corner structure for team bases meshbox ## bottom corner box name cornerbox position 0 0 0 size 50 50 7.5 end meshbox name leg1 position -20 -20 7.5 size 5 10 5 end meshbox name leg2 position -10 -25 7.5 size 10 5 5 end enddef ## Corner Bases ############# group corner_base ## nw, red base name red_base #spin 270 0 0 1 ## spin the group 270-d on z-axis shift -1450 1450 0 ## move to nw corner team 1 end group corner_base ## ne, blue base name blue_base #spin 180 0 0 1 ## spin the group 180-d on z-axis shift 1450 1450 0 ## move to ne corner team 3 end group corner_base ## se, purple base name purple_base #spin 90 0 0 1 ## spin group 90-d on z-axis shift 1450 -1450 0 ## move to se corner team 4 end group corner_base ## sw, green base name green_base shift -1450 -1450 0 ## move to sw corner team 2 end ## Perimeter Walls ########## meshbox ## north wall, track to east name northwall position 0 1495 0 size 1400 5 7.5 phydrv move_east end meshbox ## south wall, track to west name southwall position 0 -1495 0 size 1400 5 7.5 phydrv move_west end meshbox ## east wall, track to south name eastwall position 1495 0 0 size 5 1400 7.5 phydrv move_south end meshbox ## west wall, track to north name westwall position -1495 0 0 size 5 1400 7.5 phydrv move_north end ## spawn zone ############### zone ## red spawn name red_spawn position -1450 1450 7.5 size 50 50 0 team 0 1 end zone ## green spawn name green_spawn position -1450 -1450 7.5 size 50 50 0 team 0 2 end zone ## blue spawn name blue_spawn position 1450 1450 7.5 size 50 50 0 team 0 3 end zone ## purple spawn name purple_spawn position 1450 -1450 7.5 size 50 50 0 team 0 4 end