mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-29 09:17:51 +01:00
30 lines
837 B
JavaScript
30 lines
837 B
JavaScript
export const cards = {
|
|
"cards": {
|
|
"1": {
|
|
"role": "Villager",
|
|
"team": "village",
|
|
"description": "During the day, find the wolves and kill them."
|
|
},
|
|
"2": {
|
|
"role": "Seer",
|
|
"team": "village",
|
|
"description": "During the night, choose one person. The moderator will tell you whether that player is evil."
|
|
},
|
|
"3": {
|
|
"role": "Hunter",
|
|
"team": "village",
|
|
"description": "If you are alive with a wolf at the end of the game, the village wins."
|
|
},
|
|
"4": {
|
|
"role": "Werewolf",
|
|
"team": "wolf",
|
|
"description": "During the night, choose a villager to kill. Don't get killed."
|
|
},
|
|
"5": {
|
|
"role": "Minion",
|
|
"team": "wolf",
|
|
"description": "You are villager, but you know who the wolves are - and want them to win."
|
|
}
|
|
}
|
|
};
|