From 530661e39b0b8791bc8c790ece3bc558033894ca Mon Sep 17 00:00:00 2001 From: troido Date: Wed, 20 May 2020 17:10:56 +0200 Subject: wrote first part of the content creation tutorial --- docs/tutorial/content1/maps/island.json | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docs/tutorial/content1/maps/island.json (limited to 'docs/tutorial/content1/maps/island.json') 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"], + " ": [] + } +} -- cgit