Initial commit.

This commit is contained in:
Storm Dragon
2025-01-30 01:17:52 -05:00
commit 0d115b2bef
17 changed files with 260 additions and 0 deletions

36
levels/1.json Normal file
View File

@@ -0,0 +1,36 @@
{
"level_id": 1,
"name": "The Mausoleum",
"description": "After years of existing as a pile of bones, someone was crazy enough to assemble your skeleton. Time to reak some havoc!",
"player_start": {
"x": 0,
"y": 0
},
"objects": [
{
"x": 5,
"y": 3,
"sound": "coin",
"collectible": true,
"static": true
},
{
"x": 25,
"y": 0,
"sound": "goblin",
"hazard": true,
"static": false
},
{
"x": 50,
"y": 0,
"hazard": true,
"sound": "grave",
"static": true
}
],
"boundaries": {
"left": 0,
"right": 500
}
}