X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=plomrogue%2Ftasks.py;h=de9f1c87d1591820f2a405bf97313866e0c90ab5;hb=8d1f606e1dd84a5418f1612d266ece318747832b;hp=09e9c56702083cefbff105268a5c7a241f20d8fb;hpb=3e0f898a8bc308e6b7d06573a90c197eff8d82f3;p=plomrogue2 diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py index 09e9c56..de9f1c8 100644 --- a/plomrogue/tasks.py +++ b/plomrogue/tasks.py @@ -42,11 +42,22 @@ class Task_MOVE(Task): raise PlayError('blocked by impassable tile') def do(self): + if self.thing.type_ == 'Player' and not self.thing.standing: + self.thing.standing = True + self.thing.send_msg('CHAT "You get up."') self.thing.game.record_change(self.thing.position, 'other') if self.thing.blocks_light: self.thing.game.record_change(self.thing.position, 'fov') self.thing.position = self._get_move_target() self.thing.game.record_change(self.thing.position, 'other') + terrain = \ + self.thing.game.maps[self.thing.position[0]][self.thing.position[1]] + if terrain in self.thing.game.terrains: + terrain_type = self.thing.game.terrains[terrain] + if 'sittable' in terrain_type.tags: + self.thing.standing = False + self.thing.send_msg('CHAT "You sink into the %s."' + % terrain_type.description) self.thing.invalidate('fov') if self.thing.blocks_light: self.thing.game.record_change(self.thing.position, 'fov') @@ -195,8 +206,7 @@ class Task_INTOXICATE(Task): self.thing.carrying.full = False self.thing.carrying.empty() self.thing.send_msg('CHAT "You are drunk now."') - self.thing.need_for_toilet *= 2 - self.thing.need_for_toilet += 1 + self.thing.need_for_toilet += 10000 self.thing.drunk = 10000 self.thing.invalidate('fov') self.thing.game.record_change(self.thing.position, 'other')