summaryrefslogtreecommitdiff
path: root/docs/tutorial/content1/maps
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-05-20 17:10:56 +0200
committertroido <troido@protonmail.com>2020-05-20 17:10:56 +0200
commit530661e39b0b8791bc8c790ece3bc558033894ca (patch)
treeab3313ee27c854795c6835543eb76566240c1300 /docs/tutorial/content1/maps
parentf98a024a06fef04fc40b29204f50d6e3a9089e10 (diff)
wrote first part of the content creation tutorial
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"],
+ " ": []
+ }
+}