X-Git-Url: https://plomlompom.com/repos/processes?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=8a6be226532084e0e1d142a760e1cfb4c2aaca59;hb=e1c11c0c04770c3e91f36e953074822d3f9d75dd;hp=3a72ca31728dfd72ebeb8e6cd8b23510db34615c;hpb=8dfe78d39a92e2967459bf7e4da5e3ed93741ae7;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 3a72ca3..8a6be22 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -29,6 +29,7 @@ class Thing(ThingBase): cookable = False carried = False consumable = False + sittable = False def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) @@ -50,7 +51,7 @@ class Thing(ThingBase): def lower_msg_by_volume(msg, volume, largest_audible_distance, url_limits = []): - factor = largest_audible_distance / 4 + factor = largest_audible_distance / 2 lowered_msg = '' in_url = False i = 0 @@ -482,6 +483,19 @@ class Thing_StimulantSpawner(ThingSpawner): +class Thing_Chair(Thing): + symbol_hint = 'h' + portable = True + sittable = True + + + +class Thing_ChairSpawner(ThingSpawner): + symbol_hint = 'e' + child_type = 'Chair' + + + class Thing_Cookie(Thing): symbol_hint = 'c' portable = True