From 3a8afeb369d4ef66c9b991e64febe66a35338177 Mon Sep 17 00:00:00 2001 From: Wango Fett Date: Thu, 26 Oct 2017 17:05:49 +0000 Subject: Pip installable! --- asciifarm/charmaps/__init__.py | 0 asciifarm/charmaps/default.json | 31 +++++++++++++++++++++++++++++++ asciifarm/charmaps/fullwidth.json | 31 +++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 asciifarm/charmaps/__init__.py create mode 100644 asciifarm/charmaps/default.json create mode 100644 asciifarm/charmaps/fullwidth.json (limited to 'asciifarm/charmaps') diff --git a/asciifarm/charmaps/__init__.py b/asciifarm/charmaps/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/asciifarm/charmaps/default.json b/asciifarm/charmaps/default.json new file mode 100644 index 0000000..433745d --- /dev/null +++ b/asciifarm/charmaps/default.json @@ -0,0 +1,31 @@ +{ + "mapping":{ + "tree": ["T", 2], + "wall": ["#", 135], + "rock": ["X", 8], + "stone": ["o", 8], + "pebble": ["*", 8], + "player": ["@", 15], + "ground": [".", 3], + "grass1": [",", 2], + "grass2": ["'", 2], + "grass3": ["`", 10], + "water": ["~", 70], + "rabbit": "r", + "floor": "+", + "portal": "$", + "stairdown": ">", + "stairup": "<", + "dummy": "d", + "spikes": "^", + "goblin": "g", + "seed": ":", + "plant": "Y", + "youngplant": "v", + "food": "8", + "troll": "T", + " ": " " + }, + "default": "?", + "charwidth": 1 +} diff --git a/asciifarm/charmaps/fullwidth.json b/asciifarm/charmaps/fullwidth.json new file mode 100644 index 0000000..dc1cec8 --- /dev/null +++ b/asciifarm/charmaps/fullwidth.json @@ -0,0 +1,31 @@ +{ + "mapping":{ + "tree": "T", + "wall": "#", + "rock": "X", + "stone": "o", + "pebble": "*", + "player": "@", + "ground": ".", + "grass1": ",", + "grass2": "'", + "grass3": "`", + "rabbit": "r", + "water": "~", + "floor": "+", + "portal": "$", + "stairdown": ">", + "stairup": "<", + "dummy": "d", + "spikes": "^", + "goblin": "g", + "seed": ":", + "plant": "Y", + "youngplant": "v", + "food": "8", + "troll": "T", + " ": " " + }, + "default": "?", + "charwidth": 2 +} -- cgit