update role descriptions

This commit is contained in:
AlecM33
2024-11-11 15:00:18 -05:00
parent 0bbd696fba
commit 467a0a17de

View File

@@ -2,12 +2,12 @@ export const defaultRoles = [
{ {
role: 'Villager', role: 'Villager',
team: 'good', team: 'good',
description: 'During the day, find the wolves and kill them.' description: 'During the day, find the Werewolves and kill them.'
}, },
{ {
role: 'Werewolf', role: 'Werewolf',
team: 'evil', team: 'evil',
description: "During the night, choose a villager to kill. Don't get killed." description: "During the night, choose a player to eliminate."
}, },
{ {
role: 'Dream Wolf', role: 'Dream Wolf',
@@ -22,12 +22,12 @@ export const defaultRoles = [
{ {
role: 'Knowing Minion', role: 'Knowing Minion',
team: 'evil', team: 'evil',
description: 'You are an evil Villager, and you know who the Werewolves are.' description: 'You are an evil Villager, and you know who the Werewolves are. You win if the Werewolves win.'
}, },
{ {
role: 'Blind Minion', role: 'Blind Minion',
team: 'evil', team: 'evil',
description: "You are an evil villager, but you don't know who the Werewolves are." description: "You are an evil villager, but you do NOT know who the Werewolves are. You win if the Werewolves win."
}, },
{ {
role: 'Seer', role: 'Seer',
@@ -48,11 +48,11 @@ export const defaultRoles = [
{ {
role: 'Parity Hunter', role: 'Parity Hunter',
team: 'good', team: 'good',
description: 'You beat a werewolf in a 1v1 situation, winning the game for the village.' description: 'If you and a Werewolf are the only two players remaining, the Village wins.'
}, },
{ {
role: 'Brutal Hunter', role: 'Brutal Hunter',
team: 'good', team: 'good',
description: 'When you are eliminated, choose another player to go with you.' description: 'When you are eliminated, choose another player to be eliminated with you.'
} }
]; ];