X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fthings.py;fp=plomrogue%2Fthings.py;h=a0db94a0f639907d0cd1d35169c8d77cf3e19b9f;hb=023f991e645730e150bfd2782d16cbb4e440f78c;hp=6f8b79d5d1ce02e32cca57c4b950e884c7acf930;hpb=ce80e43db5939580763b1f66bff4f87f1cccc383;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 6f8b79d..a0db94a 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -638,6 +638,10 @@ class Thing_Player(ThingAnimate): if random.random() > 0.9999: if self.standing: self.weariness += 1 + if self.weariness % 5 == 0: + self.send_msg('CHAT "All that walking or standing makes ' + 'you weary, and thereby slower. Find a place ' + 'to sit or lie down to regain energy."') elif self.weariness > 0: self.weariness -= 1 self.game.changed = True