mirror of
https://github.com/bra1n/townsquare.git
synced 2025-04-04 14:14:38 +00:00
Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon" (#204)
This commit is contained in:
parent
2e3c5abcb4
commit
01d02f6bc4
4 changed files with 33 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
## Upcoming version
|
## Upcoming version
|
||||||
|
|
||||||
- Using official generic icons as default custom icons
|
- Using official generic icons as default custom icons
|
||||||
|
- Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon"
|
||||||
- Unique night order bubble for each player with the same role
|
- Unique night order bubble for each player with the same role
|
||||||
- Adding some special votes
|
- Adding some special votes
|
||||||
- Automatic Djinn and Bootlegger
|
- Automatic Djinn and Bootlegger
|
||||||
|
|
|
@ -86,8 +86,30 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
reminders.push({ role: "good", name: this.locale.modal.reminder.good });
|
reminders.push({
|
||||||
reminders.push({ role: "evil", name: this.locale.modal.reminder.evil });
|
role: "good",
|
||||||
|
name: this.locale.modal.reminder.good,
|
||||||
|
});
|
||||||
|
reminders.push({
|
||||||
|
role: "evil",
|
||||||
|
name: this.locale.modal.reminder.evil,
|
||||||
|
});
|
||||||
|
reminders.push({
|
||||||
|
role: "townsfolk",
|
||||||
|
name: this.locale.modal.reminder.townsfolk,
|
||||||
|
});
|
||||||
|
reminders.push({
|
||||||
|
role: "outsider",
|
||||||
|
name: this.locale.modal.reminder.outsider,
|
||||||
|
});
|
||||||
|
reminders.push({
|
||||||
|
role: "minion",
|
||||||
|
name: this.locale.modal.reminder.minion,
|
||||||
|
});
|
||||||
|
reminders.push({
|
||||||
|
role: "demon",
|
||||||
|
name: this.locale.modal.reminder.demon,
|
||||||
|
});
|
||||||
reminders.push({
|
reminders.push({
|
||||||
role: "custom",
|
role: "custom",
|
||||||
name: this.locale.modal.reminder.custom,
|
name: this.locale.modal.reminder.custom,
|
||||||
|
|
|
@ -228,6 +228,10 @@
|
||||||
"title": "Choose a reminder token:",
|
"title": "Choose a reminder token:",
|
||||||
"good": "Good",
|
"good": "Good",
|
||||||
"evil": "Evil",
|
"evil": "Evil",
|
||||||
|
"townsfolk": "Townfolk",
|
||||||
|
"outsider": "Outsider",
|
||||||
|
"minion": "Minion",
|
||||||
|
"demon": "Demon",
|
||||||
"custom": "Custom Note"
|
"custom": "Custom Note"
|
||||||
},
|
},
|
||||||
"role": {
|
"role": {
|
||||||
|
|
|
@ -228,6 +228,10 @@
|
||||||
"title": "Apposer une note :",
|
"title": "Apposer une note :",
|
||||||
"good": "Bon",
|
"good": "Bon",
|
||||||
"evil": "Mauvais",
|
"evil": "Mauvais",
|
||||||
|
"townsfolk": "Villageois",
|
||||||
|
"outsider": "Étranger",
|
||||||
|
"minion": "Sbire",
|
||||||
|
"demon": "Demon",
|
||||||
"custom": "Note"
|
"custom": "Note"
|
||||||
},
|
},
|
||||||
"role": {
|
"role": {
|
||||||
|
|
Loading…
Add table
Reference in a new issue