From 3db5ddb1d219dd7cdf69ab5894bad302e7da78b1 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Mon, 13 Nov 2017 14:11:27 -0500 Subject: [PATCH] Created World (markdown) --- World.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 World.md diff --git a/World.md b/World.md new file mode 100644 index 0000000..5e5b9ce --- /dev/null +++ b/World.md @@ -0,0 +1,22 @@ +Each world is a grid of 16x16 tiles. The middle part of the grid is generated randomly while the outer part is guaranteed to follow these rules: +``` +1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +1 0 * * * * * * * * * * * * 0 1 +1 0 * * * * * * * * * * * * 0 1 +1 0 * * * * * * * * * * * * 0 1 +1 0 * * * * * * * * * * * * 0 1 +2 0 * * * * * * * * * * * * 0 2 +2 0 * * * * * * * * * * * * 0 2 +2 0 * * * * * * * * * * * * 0 2 +2 0 * * * * * * * * * * * * 0 2 +1 0 * * * * * * * * * * * * 0 1 +1 0 * * * * * * * * * * * * 0 1 +1 0 * * * * * * * * * * * * 0 1 +1 0 * * * * * * * * * * * * 0 1 +1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 +1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 +``` +0: These tiles are always plain tiles +1: These tiles are always wall tiles +2: These tiles are always plain tiles and Biomass will never spawn here \ No newline at end of file