X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;ds=sidebyside;f=plomrogue%2Fthings.py;h=53837e36194b9479454500381153e67cff8f5248;hb=88c8acab582aeb25735d86b78defe28441439cba;hp=32d7854732029bd0fc2ef2946dae9ecaebf006d7;hpb=bf8653594beb9ee94b8e7c4139b2891425a6367b;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 32d7854..53837e3 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -167,7 +167,7 @@ class Thing_BottleSpawner(ThingSpawner): class Thing_Hat(Thing): symbol_hint = 'H' portable = True - design = ' X X ===' + design = ' +--+ ' + ' | | ' + '======' @@ -178,7 +178,7 @@ class Thing_HatRemixer(Thing): import string new_design = '' legal_chars = string.ascii_letters + string.digits + string.punctuation + ' ' - for i in range(9): + for i in range(18): new_design += random.choice(list(legal_chars)) hat.design = new_design self.sound('HAT REMIXER', 'remixing a hat …')