From 38ed5259d550ef3dfb7ddcf4fbf9b051fdb15805 Mon Sep 17 00:00:00 2001 From: eichhornchen Date: Fri, 6 Nov 2020 16:50:18 +0100 Subject: [PATCH] added a squirrel unicode texturepack --- dungeonbattle/display/texturepack.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dungeonbattle/display/texturepack.py b/dungeonbattle/display/texturepack.py index ea3b1e4..3805b44 100644 --- a/dungeonbattle/display/texturepack.py +++ b/dungeonbattle/display/texturepack.py @@ -1,8 +1,13 @@ -#This is the base ascii texturepack - ascii_textures = { "EMPTY" : ' ', "WALL" : '#', "FLOOR" : '.', "PLAYER" : '@' } + +squirrel_textures = { + "EMPTY" : ' ', + "WALL" : '█', + "FLOOR" : '.', + "PLAYER" : '🐿️' + }