From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 20 Dec 2020 15:40:44 +0000 (+0100)
Subject: Lengthen intoxication time for alcohol and psychedelics.
X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/%7B%7Bdb.prefix%7D%7D/do_todos?a=commitdiff_plain;h=8aad5c25535b1570ff7a59c170cfec677b9f74c7;p=plomrogue2

Lengthen intoxication time for alcohol and psychedelics.
---

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()