diff --git a/werewolf/Role.py b/werewolf/Role.py index 7d272c7..bf96957 100644 --- a/werewolf/Role.py +++ b/werewolf/Role.py @@ -126,4 +126,4 @@ class Role: pass async def _at_night_end(self, data=None): - pass \ No newline at end of file + pass diff --git a/werewolf/Roles/VanillaWerewolf.py b/werewolf/Roles/VanillaWerewolf.py index 404a5a2..1335b93 100644 --- a/werewolf/Roles/VanillaWerewolf.py +++ b/werewolf/Roles/VanillaWerewolf.py @@ -2,20 +2,21 @@ import asyncio import discord -from datetime import datetime,timedelta +from datetime import datetime, timedelta from cogs.werewolf.Role import Role from cogs.werewolf.votegroups.wolfvote import WolfVote + class VanillaWerewolf(Role): - rand_choice = True + rand_choice = True category = [11, 15] allignment = 2 # 1: Town, 2: Werewolf, 3: Neutral channel_id = "werewolves" unique = False - game_start_message=""" + game_start_message = """ Your role is **Werewolf** You win by killing everyone else in the village Lynch players during the day with `[p]ww lynch ` @@ -45,15 +46,14 @@ class VanillaWerewolf(Role): # await action_list[event][0](data) - # async def assign_player(self, player): # """ # Give this role a player - # Can be used after the game has started (Cult, Mason, other role swap) + # Can be used after the game has started (Cult, Mason, role swap) # """ # player.role = self - # self.player = player + # self.player = player async def _get_role(self, source=None): """ @@ -93,4 +93,4 @@ class VanillaWerewolf(Role): # super()._at_night_start(data) # async def _at_night_end(self, data=None): - # super()._at_night_end(data) \ No newline at end of file + # super()._at_night_end(data) diff --git a/werewolf/Roles/Villager.py b/werewolf/Roles/Villager.py index 3a7f943..e585ce8 100644 --- a/werewolf/Roles/Villager.py +++ b/werewolf/Roles/Villager.py @@ -81,4 +81,4 @@ class Villager(Role): pass async def _at_night_end(self): - pass \ No newline at end of file + pass diff --git a/werewolf/VoteGroup.py b/werewolf/VoteGroup.py index f35b29e..163b216 100644 --- a/werewolf/VoteGroup.py +++ b/werewolf/VoteGroup.py @@ -98,4 +98,4 @@ class VoteGroup: Receive vote from game """ - self.vote_results[author.id] = id \ No newline at end of file + self.vote_results[author.id] = id