Initial commit for the Python version

This commit is contained in:
2017-06-12 10:56:08 +02:00
commit 7415f825ef
7 changed files with 272 additions and 0 deletions

32
data/plane.erodar.txt Normal file
View File

@@ -0,0 +1,32 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~===~===~~~~~~~~=~~~~~~~~~
~~~~~~====~~==~~~~~~~=~~~~~~~~~~
~~~~~=====#=======~~~=~~~~~~~~~~
~~~~=====#======~==~===~~~~~~~~~
~~~=======#==============~~~~~~~
~~=========#==============~~~~~~
~~~=========#==============~~~~~
~~===========#==============~~~~
~~~===========#======~=======~~~
~~~=======####==============~~~~
~~~~======#================~~~~~
~~~~~=====#=====~========~~~~~~~
~~~~~~~====#===~~====~==~~~~~~~~
~~~~~~~~==#===~~~~===~~==~~~~~~~
~~~~~~~===#=~~~~~~~~===~=~~~~~~~
~~~~~~===#===~~~~~~====~~~~~~~~~
~~~~~~~~=#====~~~~~~~~~~~~~~~~~~
~~~~~~~~==#==~~~~~~~=~~~~~~~~~~~
~~~~~~~~~=#=~~~~~~~==~~~~~~~~~~~
~~~~~~~~~===~~~~~~~~~~~~~~~~~~~~
~~~~~~~~====~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~====~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~===~~~~~~~~~~~~~~~~~~~
~~~~~~~~~=====~~~~~~~~~~~~~~~~~~
~~~~~~~~~~===~~~~~~~=~~~~~~~~~~~
~~~~~~~~~~~==~~~~~~==~~~~~~~~~~~
~~~~~~~~~~==~~~~~~=~==~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

23
data/terrain.json Normal file
View File

@@ -0,0 +1,23 @@
{
"water": {
"icon": "~",
"map_char": "~",
"color16": 12,
"color256": 57,
"color": "#0000bb"
},
"field": {
"icon": "=",
"map_char": "=",
"color16": 11,
"color256": 228,
"color": "#bbbb00"
},
"road": {
"icon": "#",
"map_char": "#",
"color16": 8,
"color256": 244,
"color": "#808080"
}
}