X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=0a06601e8a3836a77cd05602ff010467c2560e92;hb=c44edaea10aa907301a47f19e492f1d869d528d9;hp=d1fc7110b8bba8ca32baeeb1105d69b4c43c880b;hpb=0747716a70ba46dbd6a8d7091b864e02b754f56f;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index d1fc711..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): @@ -107,4 +113,4 @@ class Thing_Player(ThingAnimate): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - self.nickname = 'undefined' + self.carrying = None