mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-08 20:12:11 +00:00
Add a mini map
This commit is contained in:
parent
b99889f95d
commit
16cdefe3be
2 changed files with 22 additions and 0 deletions
22
mods/game/maps/maps/mini-map/map.lua
Normal file
22
mods/game/maps/maps/mini-map/map.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
local map_data = {
|
||||
name = "mini-map",
|
||||
size_x = 8,
|
||||
size_y = 19,
|
||||
size_z = 8,
|
||||
|
||||
barrier_level = 15,
|
||||
|
||||
spawn_x = nil,
|
||||
spawn_y = nil,
|
||||
spawn_z = nil,
|
||||
|
||||
start_time = 15,
|
||||
|
||||
scripts = {
|
||||
on_start = "",
|
||||
on_barrier_remove = "",
|
||||
on_end = ""
|
||||
}
|
||||
}
|
||||
|
||||
return map_data
|
||||
BIN
mods/game/maps/maps/mini-map/map.mts
Normal file
BIN
mods/game/maps/maps/mini-map/map.mts
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue