Files
Werewolf/static/cards.js

53 lines
1.6 KiB
JavaScript

export const cards = [
{
role: "Villager",
team: "good",
description: "During the day, find the wolves and kill them.",
powerRole: false
},
{
role: "Werewolf",
team: "evil",
description: "During the night, choose a villager to kill. Don't get killed.",
powerRole: false
},
{
role: "Sycophant",
team: "evil",
description: "You are an evil villager - you know who the wolves are, and you want them to win.",
powerRole: true
},
{
role: "Seer",
team: "good",
description: "During each night, choose one person. The moderator will tell you whether that player is a wolf.",
powerRole: true
},
{
role: "Shadow",
team: "evil",
description: "If the Seer checks you, the Seer dies that night instead of whoever the wolves chose to kill. You" +
" do not know who the wolves are.",
powerRole: true
},
{
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.",
powerRole: true
},
{
role: "Sorcerer",
team: "good",
description: "Once a game, change who the wolves are going to kill to someone else, including yourself. You will" +
" see who is going to die each night until you use this power.",
powerRole: true
},
{
role: "Martyr",
team: "good",
description: "If you die, take someone else with you.",
powerRole: true
}
];