From 8aad5c25535b1570ff7a59c170cfec677b9f74c7 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 20 Dec 2020 16:40:44 +0100 Subject: [PATCH] Lengthen intoxication time for alcohol and psychedelics. --- plomrogue/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() -- 2.30.2