home · contact · privacy
Widen face and hat.
[plomrogue2] / plomrogue / things.py
index 32d7854732029bd0fc2ef2946dae9ecaebf006d7..53837e36194b9479454500381153e67cff8f5248 100644 (file)
@@ -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 …')