diff --git a/mods/game/maps/maps/mini-map/map.lua b/mods/game/maps/maps/mini-map/map.lua new file mode 100644 index 0000000..13b431b --- /dev/null +++ b/mods/game/maps/maps/mini-map/map.lua @@ -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 diff --git a/mods/game/maps/maps/mini-map/map.mts b/mods/game/maps/maps/mini-map/map.mts new file mode 100644 index 0000000..3a93dd5 Binary files /dev/null and b/mods/game/maps/maps/mini-map/map.mts differ