mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-15 06:02:33 +00:00
LOTS OF STUFF
This commit is contained in:
parent
ba9efa195a
commit
43f40c2550
499 changed files with 566 additions and 225 deletions
14
mods/game/maps/maps/forest/map.lua
Normal file
14
mods/game/maps/maps/forest/map.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
local map_data = {
|
||||
name = "forest",
|
||||
size_x = 155,
|
||||
size_y = 53,
|
||||
size_z = 147,
|
||||
|
||||
barrier_level = 49, -- <- Y level of the barrier
|
||||
|
||||
spawn_x = nil,
|
||||
spawn_y = nil,
|
||||
spawn_z = nil
|
||||
}
|
||||
|
||||
return map_data
|
||||
BIN
mods/game/maps/maps/forest/map.mts
Normal file
BIN
mods/game/maps/maps/forest/map.mts
Normal file
Binary file not shown.
14
mods/game/maps/maps/pine/map.lua
Normal file
14
mods/game/maps/maps/pine/map.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
local map_data = {
|
||||
name = "pine",
|
||||
size_x = 111,
|
||||
size_y = 64,
|
||||
size_z = 107,
|
||||
|
||||
barrier_level = 60, -- <- Y level of the barrier
|
||||
|
||||
spawn_x = nil,
|
||||
spawn_y = nil,
|
||||
spawn_z = nil
|
||||
}
|
||||
|
||||
return map_data
|
||||
BIN
mods/game/maps/maps/pine/map.mts
Normal file
BIN
mods/game/maps/maps/pine/map.mts
Normal file
Binary file not shown.
14
mods/game/maps/maps/savanna/map.lua
Normal file
14
mods/game/maps/maps/savanna/map.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
local map_data = {
|
||||
name = "savanna",
|
||||
size_x = 341,
|
||||
size_y = 83,
|
||||
size_z = 188,
|
||||
|
||||
barrier_level = 79, -- <- Y level of the barrier
|
||||
|
||||
spawn_x = nil,
|
||||
spawn_y = nil,
|
||||
spawn_z = nil
|
||||
}
|
||||
|
||||
return map_data
|
||||
BIN
mods/game/maps/maps/savanna/map.mts
Normal file
BIN
mods/game/maps/maps/savanna/map.mts
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue