home · contact · privacy
Lengthen intoxication time for alcohol and psychedelics.
[plomrogue2] / plomrogue / tasks.py
index 83a1b02306c497d2c607ec7a198bb8fdc3b60bab..b2303261dbdedf60e88bae280eab1e11110ecadc 100644 (file)
@@ -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()