def _rashid_tibia(self):
"""Get Rashid's Location"""
current_date = date.today()
if calendar.day_name[current_date.weekday()] == "Sunday":
await self.bot.say("On Sundays you can find him in Carlin depot, one floor above.")
elif calendar.day_name[current_date.weekday()] == "Monday":
await self.bot.say("On Mondays you can find him in Svargrond, in Dankwart's tavern, south of the temple.")
elif calendar.day_name[current_date.weekday()] == "Tuesday":
await self.bot.say("On Tuesdays you can find him in Liberty Bay, in Lyonel's tavern, west of the depot.")
elif calendar.day_name[current_date.weekday()] == "Wednesday":
await self.bot.say("On Wednesdays you can find him in Port Hope, in Clyde's tavern, north of the ship.")
elif calendar.day_name[current_date.weekday()] == "Thursday":
await self.bot.say("On Thursdays you can find him in Ankrahmun, in Arito's tavern, above the post office.")
elif calendar.day_name[current_date.weekday()] == "Friday":
await self.bot.say("On Fridays you can find him in Darashia, in Miraia's tavern, south of the guildhalls.")
elif calendar.day_name[current_date.weekday()] == "Saturday":
await self.bot.say("On Saturdays you can find him in Edron, in Mirabell's tavern, above the depot.")
else:
pass
评论列表
文章目录