X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue%2Ftasks.py;h=b2303261dbdedf60e88bae280eab1e11110ecadc;hb=8aad5c25535b1570ff7a59c170cfec677b9f74c7;hp=83a1b02306c497d2c607ec7a198bb8fdc3b60bab;hpb=8dfe78d39a92e2967459bf7e4da5e3ed93741ae7;p=plomrogue2 diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py index 83a1b02..b230326 100644 --- a/plomrogue/tasks.py +++ b/plomrogue/tasks.py @@ -259,11 +259,11 @@ class Task_INTOXICATE(Task): self.thing.carrying.empty() self.thing.send_msg('CHAT "You are drunk now."') self.thing.need_for_toilet += 1 - self.thing.drunk += 10000 + self.thing.drunk += 100000 self.thing.invalidate('fov') self.thing.game.record_change(self.thing.position, 'other') elif self.thing.carrying.type_ == 'Psychedelic': - self.thing.tripping += 10000 + self.thing.tripping += 100000 self.thing.send_msg('CHAT "You start tripping."') self.thing.send_msg('RANDOM_COLORS') eaten = self.thing.uncarry()