Styling tweaks, import cards into setup

This commit is contained in:
Alec Maier
2019-08-29 22:41:12 -04:00
parent f1fcdf43c0
commit 469009feaa
4 changed files with 38 additions and 4 deletions

29
static/cards.js Normal file
View File

@@ -0,0 +1,29 @@
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."
}
}
};