X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=67a3807fc939b88df98716d61392065d2511e496;hb=018bb0242ebd2b7e9fde170fae830376dea55e16;hp=15216efe5fdbaa8309a6f5b48bd5e4dc971dce2e;hpb=e5a83f8987647c3c239e48d5bc1ff939ce531544;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 15216ef..67a3807 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -141,14 +141,15 @@ class Thing_Door(Thing): -class Thing_Consumable(Thing): +class Thing_Bottle(Thing): symbol_hint = 'B' portable = True + full = True -class Thing_ConsumableSpawner(ThingSpawner): - child_type = 'Consumable' +class Thing_BottleSpawner(ThingSpawner): + child_type = 'Bottle'