mirror of
https://github.com/AlecM33/Werewolf.git
synced 2025-12-26 15:57:50 +01:00
38 lines
1.2 KiB
JavaScript
38 lines
1.2 KiB
JavaScript
export const defaultCards = [
|
|
{
|
|
role: "Villager",
|
|
team: "good",
|
|
description: "During the day, find the wolves and kill them.",
|
|
},
|
|
{
|
|
role: "Werewolf",
|
|
team: "evil",
|
|
description: "During the night, choose a villager to kill. Don't get killed.",
|
|
},
|
|
{
|
|
role: "Dream Wolf",
|
|
team: "evil",
|
|
description: "If a Werewolf dies, you become a Werewolf. You do not wake up with the Werewolves until this happens. You count for parity only after converting to a wolf.",
|
|
},
|
|
{
|
|
role: "Knowing Minion",
|
|
team: "evil",
|
|
description: "You are an evil villager - you know who the wolves are, and you want them to win.",
|
|
},
|
|
{
|
|
role: "Double-Blind Minion",
|
|
team: "evil",
|
|
description: "You are an evil villager. You don't know who the wolves are, but you want them to win.",
|
|
},
|
|
{
|
|
role: "Seer",
|
|
team: "good",
|
|
description: "During each night, choose one person. The moderator will tell you whether that player is a wolf.",
|
|
},
|
|
{
|
|
role: "Hunter",
|
|
team: "good",
|
|
description: "If you are alive with a wolf at the end of the game, you best the wolf, and the village wins.",
|
|
}
|
|
];
|