mirror of
https://github.com/n0remac/game-jam-2020.git
synced 2025-12-10 04:05:24 -06:00
Levels can be combined together in dungeon
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
"elements" : {
|
||||
"w" : "resources/images/tiles/wall_tile.png",
|
||||
" " : "resources/images/tiles/floor_tile.png",
|
||||
"e" : ""
|
||||
"e" : "resources/images/tiles/floor_tile.png"
|
||||
},
|
||||
"structure" : [
|
||||
["w", "w", "w", "w", "e", "e", "w", "w", "w", "w"],
|
||||
|
||||
18
triple-dungeon/resources/levels/map1/center.json
Normal file
18
triple-dungeon/resources/levels/map1/center.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"elements" : {
|
||||
"w" : "resources/images/tiles/wall_tile.png",
|
||||
" " : "resources/images/tiles/floor_tile.png"
|
||||
},
|
||||
"structure" : [
|
||||
["w", "w", "w", "w", " ", " ", "w", "w", "w", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
[" ", " ", " ", " ", " ", " ", " ", " ", " ", " "],
|
||||
[" ", " ", " ", " ", " ", " ", " ", " ", " ", " "],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", "w", "w", "w", " ", " ", "w", "w", "w", "w"]
|
||||
]
|
||||
}
|
||||
18
triple-dungeon/resources/levels/map1/room.json
Normal file
18
triple-dungeon/resources/levels/map1/room.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"elements" : {
|
||||
"w" : "resources/images/tiles/wall_tile.png",
|
||||
" " : "resources/images/tiles/floor_tile.png"
|
||||
},
|
||||
"structure" : [
|
||||
["w", "w", "w", "w", "w", "w", "w", "w", "w", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", "w", "w", " ", " ", " ", " "],
|
||||
["w", " ", " ", " ", "w", "w", " ", " ", " ", " "],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", "w", "w", "w", "w", "w", "w", "w", "w", "w"]
|
||||
]
|
||||
}
|
||||
19
triple-dungeon/resources/levels/map1/room1.json
Normal file
19
triple-dungeon/resources/levels/map1/room1.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"elements" : {
|
||||
"w" : "resources/images/tiles/wall_tile.png",
|
||||
" " : "resources/images/tiles/floor_tile.png",
|
||||
"e" : "resources/images/tiles/floor_tile.png"
|
||||
},
|
||||
"structure" : [
|
||||
["w", "w", "w", "w", "w", "w", "w", "w", "w", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["e", " ", " ", " ", "w", "w", " ", " ", " ", "w"],
|
||||
["e", " ", " ", " ", "w", "w", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", " ", " ", " ", " ", " ", " ", " ", " ", "w"],
|
||||
["w", "w", "w", "w", "w", "w", "w", "w", "w", "w"]
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user