Example #1
0
 async def execute(self,game:MUD, player:MPlayer):
     await player.dm("You look through the various camera feeds...")
     await self.notify(player,"is looking at the cameras")
     await asyncio.sleep(10)
     if player.be(mud.Condition.BLINDED):
         await player.dm("You can't see ANYTHING!")
     elif not player.dead:
         await player.dm("\n".join("You can't find %s." % p.mname if p.dead else "%s is in the %s." % (p.mname, p.area.name) for p in game.players if p is not player))
Example #2
0
 def valid(self,game:mud.MUD, player:mud.MPlayer,args:typing.List[str]):
     if player.area.name!="Morgue":
         return "You need to be in the morgue to investigate bodies!"
     if player.immobile:
         return "You can't investigate bodies while you can't move!"
     if player.be(mud.Condition.BLINDED):
         return "You can't see what you're doing!"
     if any(isinstance(i,mud.Corpse) for i in player.area.entities):
         return True
     return "There aren't any corpses to investigate"
Example #3
0
 async def valid(self,game:MUD, player:MPlayer,args:typing.List[str]):
     if player.immobile:
         return "You're in no condition to activate anything!"
     if player.be(mud.Condition.BLINDED):
         return "You can't see what you're doing..."
     return super().valid(game, player, args)
Example #4
0
 def valid(self,game:MUD, player:MPlayer,args:typing.List[str]):
     if player.immobile:
         return "You can't hit the broadcast button atm..."
     if player.be(mud.Condition.BLINDED):
         return "You can't see the broadcast button atm..."
     return super().valid(game,player,args)
Example #5
0
 def valid(self,game:MUD, player:MPlayer,args:typing.List[str]):
     if player.immobile:
         return "You can't write notes while immobile!"
     if player.be(mud.Condition.BLINDED):
         return "You can't see what you're writing!"
     return super().valid(game,player,args)
Example #6
0
 def valid(self,game:MUD, player:MPlayer,args:typing.List[str]):
     if player.be(mud.Condition.BLINDED):
         return "You can't see anything, especially camera feeds!"
     return super().valid(game,player,args)
Example #7
0
 def did_win(self,game:MUD,player:MPlayer):
     return not player.dead and player.be(Condition.DRUGGED)