X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=0a06601e8a3836a77cd05602ff010467c2560e92;hb=73607030fbd5ae9ebb98ceaefa973c98924ce61b;hp=98a5995cf5d46824d5f9fee9ebb2ff1a50cc1510;hpb=acdf162669be2293919fe536275b28703489881f;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 98a5995..0a06601 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -35,8 +35,14 @@ class Thing(ThingBase): -class Thing_Stone(Thing): - symbol_hint = 'o' +class Thing_Item(Thing): + symbol_hint = 'i' + + + +class Thing_Furniture(Thing): + symbol_hint = 'h' + class ThingAnimate(Thing):