X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=116ad696338ffea4fae46fc579426f8e6489048f;hb=04230c463dc78b92adfe0f1a432117e349aa771e;hp=32d7854732029bd0fc2ef2946dae9ecaebf006d7;hpb=4d2cf315344ec4a376ffb3f49f02674e4b5facb6;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 32d7854..116ad69 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,10 +178,11 @@ 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 …') + self.game.changed = True