mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-08 20:12:11 +00:00
Add new map forest-4
This commit is contained in:
parent
cd34551789
commit
b99889f95d
2 changed files with 22 additions and 0 deletions
22
mods/game/maps/maps/forest-4/map.lua
Normal file
22
mods/game/maps/maps/forest-4/map.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
local map_data = {
|
||||
name = "forest-4",
|
||||
size_x = 190,
|
||||
size_y = 69,
|
||||
size_z = 155,
|
||||
|
||||
barrier_level = 65,
|
||||
|
||||
spawn_x = nil,
|
||||
spawn_y = nil,
|
||||
spawn_z = nil,
|
||||
|
||||
start_time = 30,
|
||||
|
||||
scripts = {
|
||||
on_start = "for x=0, 189 do\nfor y=0, 10 do\nfor z=0, 154 do\ncore.set_node({x=x,y=69+y,z=z}, {name=\"air\"})\nend\nend\nend",
|
||||
on_barrier_remove = "",
|
||||
on_end = ""
|
||||
}
|
||||
}
|
||||
|
||||
return map_data
|
||||
BIN
mods/game/maps/maps/forest-4/map.mts
Normal file
BIN
mods/game/maps/maps/forest-4/map.mts
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue