summaryrefslogtreecommitdiff
path: root/docs/tutorial/content1/maps
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorial/content1/maps')
-rw-r--r--docs/tutorial/content1/maps/island.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/docs/tutorial/content1/maps/island.json b/docs/tutorial/content1/maps/island.json
new file mode 100644
index 0000000..3b2f21d
--- /dev/null
+++ b/docs/tutorial/content1/maps/island.json
@@ -0,0 +1,38 @@
+{
+ "width": 16,
+ "height": 16,
+ "spawn": [8, 8],
+ "field": [
+ "~~~~~~~~~~~~~~~~",
+ "~~~~~~~~~~~~~~~~",
+ "~~~~,,,,,,,,~~~~",
+ "~~~,,,#####,,~~~",
+ "~~,,,,#+++#,,,~~",
+ "~~,,,,#+++#,,,~~",
+ "~~,,,,##D##,,,~~",
+ "~~,,,,,,.,,,,,~~",
+ "~~,,T,,,.,,,,,~~",
+ "~~,,,,,,.,,,,,~~",
+ "~~,,,T,,.,,,,,~~",
+ "~~,,,,,,.,,T,,~~",
+ "~~~,,,,,.,,,,~~~",
+ "~~~~,,,,.,,,~~~~",
+ "~~~~~~~~~~~~~~~~",
+ "~~~~~~~~~~~~~~~~"
+ ],
+ "mapping": {
+ "#": "wall",
+ ",": "grass",
+ ".": "ground",
+ "~": "water",
+ "b": "bridge",
+ "+": "floor",
+ "'": "greengrass",
+ "T": ["grass", "tree"],
+ "f": ["grass", "fence"],
+ "X": "rock",
+ "^": ["grass", "spiketrap"],
+ "D": ["ground", "closeddoor"],
+ " ": []
+ }
+}