Adding the reminder tokens "Townsfolk", "Outsider", "Minion" and "Demon" (#204)

This commit is contained in:
MRegnard 2024-12-04 21:25:56 +01:00 committed by GitHub
parent 2e3c5abcb4
commit 01d02f6bc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 33 additions and 2 deletions

View file

@ -3,6 +3,7 @@
## Upcoming version
- 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
- Adding some special votes
- Automatic Djinn and Bootlegger

View file

@ -86,8 +86,30 @@ export default {
}
});
reminders.push({ role: "good", name: this.locale.modal.reminder.good });
reminders.push({ role: "evil", name: this.locale.modal.reminder.evil });
reminders.push({
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({
role: "custom",
name: this.locale.modal.reminder.custom,

View file

@ -228,6 +228,10 @@
"title": "Choose a reminder token:",
"good": "Good",
"evil": "Evil",
"townsfolk": "Townfolk",
"outsider": "Outsider",
"minion": "Minion",
"demon": "Demon",
"custom": "Custom Note"
},
"role": {

View file

@ -228,6 +228,10 @@
"title": "Apposer une note :",
"good": "Bon",
"evil": "Mauvais",
"townsfolk": "Villageois",
"outsider": "Étranger",
"minion": "Sbire",
"demon": "Demon",
"custom": "Note"
},
"role": {