mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-09 04:16:30 +00:00
Dehardcode map
* Dehardcode maps (currently not working) maps need work and proper configs * Fix bugs i'm terrible at lua * Add proper maps and configs * Fix some bugs the game at least loads now, though it crashes when you run /start <a map> * Fix more bugs The map starts now though you don't get teleported to it. * Teleport the player to the map spawn on start * Fix lots of bugs It mostly works now * Add butterflies mod * Another bugfix * Add fireflies mod * Add vessels mod (dependency for fireflies) * Add a sprint mod * Add a spawnpoint no more falling into the void * Update TODO.txt * Fix the barriers being offset by 2 Also add more dependency mods
This commit is contained in:
parent
319422974a
commit
2259be43a2
306 changed files with 9142 additions and 31 deletions
13
mods/maps/maps/forest/map.lua
Normal file
13
mods/maps/maps/forest/map.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
local map_data = {
|
||||
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/maps/maps/forest/map.mts
Normal file
BIN
mods/maps/maps/forest/map.mts
Normal file
Binary file not shown.
13
mods/maps/maps/pine/map.lua
Normal file
13
mods/maps/maps/pine/map.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
local map_data = {
|
||||
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/maps/maps/pine/map.mts
Normal file
BIN
mods/maps/maps/pine/map.mts
Normal file
Binary file not shown.
13
mods/maps/maps/savanna/map.lua
Normal file
13
mods/maps/maps/savanna/map.lua
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
local map_data = {
|
||||
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/maps/maps/savanna/map.mts
Normal file
BIN
mods/maps/maps/savanna/map.mts
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue