X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=3a72ca31728dfd72ebeb8e6cd8b23510db34615c;hb=8aad5c25535b1570ff7a59c170cfec677b9f74c7;hp=3c8f09da72ff02bd96584ae4297cfc053c6499e7;hpb=ac4f9e2337229827418b191743c1182cc5eae4d1;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 3c8f09d..3a72ca3 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -449,13 +449,15 @@ class Thing_BottleDeposit(Thing): def proceed(self): if self.bottle_counter >= 3: self.bottle_counter = 0 - choice = random.choice(['MusicPlayer', 'Hat']) + choice = random.choice(['MusicPlayer', 'Hat', 'Stimulant', 'Psychedelic']) self.game.add_thing(choice, self.position) msg = 'here is a gift as a reward for ecological consciousness –' if choice == 'MusicPlayer': msg += 'pick it up and then use "command thing" on it!' elif choice == 'Hat': msg += 'pick it up and then use "(un-)wear" on it!' + elif choice in {'Psychedelic', 'Stimulant'}: + msg += 'pick it up and then use "consume" on it!' self.sound('BOTTLE DEPOSITOR', msg) def accept(self):