mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-09 04:16:30 +00:00
Updates
- Minor terrain changes to forest-4 - All classes now spawn with a torch in forest-4 - [Wielded Light](https://content.luanti.org/packages/bell07/wielded_light/) is now a part of the game
This commit is contained in:
parent
9ebc01bf29
commit
db2fa4d7dd
7 changed files with 1364 additions and 1 deletions
|
|
@ -16,7 +16,24 @@ local map_data = {
|
|||
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 = ""
|
||||
}
|
||||
},
|
||||
|
||||
classes = {
|
||||
class_1 = {
|
||||
name = "Long-range",
|
||||
initial_items = {"ctf_ranged:m200_loaded", "default:sword_stone", "ctf_ranged:ammo 99", "default:torch 1"}
|
||||
},
|
||||
|
||||
class_2 = {
|
||||
name = "Mid-ranged",
|
||||
initial_items = {"ctf_ranged:ak47_loaded", "ctf_ranged:glock17_loaded", "ctf_ranged:ammo 99", "default:torch 1"}
|
||||
},
|
||||
|
||||
class_3 = {
|
||||
name = "Short-range",
|
||||
initial_items = {"ctf_ranged:benelli_loaded", "ctf_ranged:glock17_loaded", "ctf_ranged:ammo 99", "default:torch 1"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return map_data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue