From c84128a2ca700b3dd4e152d211f2269724d20be5 Mon Sep 17 00:00:00 2001 From: MRegnard <62838312+MRegnard@users.noreply.github.com> Date: Wed, 4 Dec 2024 20:50:09 +0100 Subject: [PATCH] Automatic Djinn and Bootlegger (#197) * Update CHANGELOG.md * Automatic addition of Djinn and Bootlegger * Correcting some spaces typos * Corrections for the linter * Some corrections for the linter * Corrections for the linter --- CHANGELOG.md | 2 +- src/components/modals/EditionModal.vue | 31 +++++++++++++++++++++++++- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b84adce..f714297 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Upcoming version - +- Automatic Djinn and Bootlegger ### Version 3.20.1 - Inconsistancies in french translations for "Power" & "Character" diff --git a/src/components/modals/EditionModal.vue b/src/components/modals/EditionModal.vue index 14fe6a3..dfed0db 100644 --- a/src/components/modals/EditionModal.vue +++ b/src/components/modals/EditionModal.vue @@ -128,7 +128,7 @@ export default { }; }, computed: { - ...mapState(["modals", "locale", "editions"]), + ...mapState(["modals", "locale", "editions", "roles", "jinxes"]), }, methods: { openUpload() { @@ -193,11 +193,40 @@ export default { ); // set fabled const fabled = []; + var djinnAdded = false; + var djinnNeeded = false; + var bootleggerAdded = false; + var bootleggerNedded = false; roles.forEach((role) => { if (this.$store.state.fabled.has(role.id || role)) { fabled.push(this.$store.state.fabled.get(role.id || role)); + if ((role.id || role) == "djinn") { + djinnAdded = true; + } else if ((role.id || role) == "bootlegger") { + bootleggerAdded = true; + } + } else if (role.edition == "custom" || role.image) { + /* If the role isn't fabled, but detected as custom, we will need a Bootlegger + * NB: The actual version isn't perfect, since they only detect custom roles with an image or with the argument "edition":"custom". + * The code will could be changed later, when all non-custom roles will have an attribute "edition" + */ + bootleggerNedded = true; + } + // If the role isn't fabled, neither custom, and if we neither added a Djinn neither planned to add a Djinn, we look if this role is jinxed + else if (!djinnAdded && !djinnNeeded && this.jinxes.get(role.id)) { + this.jinxes.get(role.id).forEach((reason, second) => { + if (this.roles.get(second)) { + djinnNeeded = true; + } + }); } }); + if (djinnNeeded && !djinnAdded) { + fabled.push(this.$store.state.fabled.get("djinn")); + } + if (bootleggerNedded && !bootleggerAdded) { + fabled.push(this.$store.state.fabled.get("bootlegger")); + } this.$store.commit("players/setFabled", { fabled }); }, runEdition(edition) {