Merge branch 'Pingumask:develop' into develop

This commit is contained in:
MRegnard 2023-07-30 18:30:37 +02:00 committed by GitHub
commit a4dba1ab80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 427 additions and 356 deletions

View file

@ -2,7 +2,21 @@
## Upcomming Version
### Version 3.15.0
- Night order bubbles always on for storyteller
- Optional night order bubbles for players
### Version 3.14.0
Reworked script selection UI
### Version 3.13.2
Malformed JSON breaking compilation
### Version 3.13.1
Some corrections in the reminders tokens:
- Correcting some french names
- Putting some tokens in "remindersGlobal"
- Deleting some useless tokens, or adding some other
### Version 3.13.1
Some corrections in the reminders tokens:

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "townsquare",
"version": "3.13.0",
"version": "3.15.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "townsquare",
"version": "3.13.0",
"version": "3.15.0",
"license": "GPL-3.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",

View file

@ -1,6 +1,6 @@
{
"name": "townsquare",
"version": "3.13.0",
"version": "3.15.0",
"description": "Blood on the Clocktower Town Square",
"author": "Pingumaskt",
"scripts": {

View file

@ -81,7 +81,7 @@
/>
</em>
</li>
<li @click="toggleNightOrder" v-if="players.length">
<li @click="toggleNightOrder" v-if="session.isSpectator">
{{ locale.menu.grimoire.order }}
<em>
<font-awesome-icon

View file

@ -20,7 +20,10 @@
<div
class="night-order first"
v-if="nightOrder.get(player).first && grimoire.isNightOrder"
v-if="
nightOrder.get(player).first &&
(grimoire.isNightOrder || !session.isSpectator)
"
>
<em>{{ nightOrder.get(player).first }}.</em>
<span v-if="player.role.firstNightReminder">{{
@ -29,7 +32,10 @@
</div>
<div
class="night-order other"
v-if="nightOrder.get(player).other && grimoire.isNightOrder"
v-if="
nightOrder.get(player).other &&
(grimoire.isNightOrder || !session.isSpectator)
"
>
<em>{{ nightOrder.get(player).other }}.</em>
<span v-if="player.role.otherNightReminder">{{

View file

@ -140,7 +140,10 @@
>
<div
class="night-order first"
v-if="nightOrder.get(role).first && grimoire.isNightOrder"
v-if="
nightOrder.get(role).first &&
(grimoire.isNightOrder || !session.isSpectator)
"
>
<em>{{ nightOrder.get(role).first }}.</em>
<span v-if="role.firstNightReminder">{{
@ -149,7 +152,10 @@
</div>
<div
class="night-order other"
v-if="nightOrder.get(role).other && grimoire.isNightOrder"
v-if="
nightOrder.get(role).other &&
(grimoire.isNightOrder || !session.isSpectator)
"
>
<em>{{ nightOrder.get(role).other }}.</em>
<span v-if="role.otherNightReminder">{{

View file

@ -1,84 +1,116 @@
<template>
<Modal class="editions" v-if="modals.edition" @close="toggleModal('edition')">
<div v-if="!isCustom">
<h3>{{ locale.modal.edition.title }}</h3>
<ul class="editions">
<li
v-for="edition in editions"
class="edition"
:class="['edition-' + edition.id]"
:style="{
backgroundImage: `url(${require('../../assets/editions/' +
edition.id +
'.png')})`
}"
:key="edition.id"
@click="setEdition(edition)"
<h3>{{ locale.modal.edition.title }}</h3>
<ul>
<li class="tabs" :class="tab">
<span
class="tab"
icon="book-open"
@click="tab = 'official'"
:class="{ active: tab == 'official' }"
>{{ locale.modal.edition.tab.official }}</span
>
{{ edition.name }}
</li>
<li
class="edition edition-custom"
@click="isCustom = true"
:style="{
backgroundImage: `url(${require('../../assets/editions/custom.png')})`
}"
<span
class="tab"
icon="broadcast-tower"
@click="tab = 'popular'"
:class="{ active: tab == 'popular' }"
>{{ locale.modal.edition.tab.popular }}</span
>
{{ locale.modal.edition.custom.button }}
</li>
</ul>
</div>
<div class="custom" v-else>
<h3>{{ locale.modal.edition.custom.title }}</h3>
{{ locale.modal.edition.custom.introStart }}
<a href="https://script.bloodontheclocktower.com/" target="_blank">{{
locale.modal.edition.custom.scriptTool
}}</a>
{{ locale.modal.edition.custom.introEnd }}.<br />
<br />
{{ locale.modal.edition.custom.instructionsStart }}
<a
href="https://github.com/bra1n/townsquare#custom-characters"
target="_blank"
>{{ locale.modal.edition.custom.documentation }}n</a
>
{{ locale.modal.edition.custom.instructionsEnd }}<br />
<b>{{ locale.modal.edition.custom.warning }}</b>
<h3>{{ locale.modal.edition.popularScripts }}</h3>
<ul class="scripts">
<li
v-for="(script, index) in scripts"
:key="index"
@click="handleURL(script[1])"
<span
class="tab"
icon="theater-masks"
@click="tab = 'teensyville'"
:class="{ active: tab == 'teensyville' }"
>{{ locale.modal.edition.tab.teensyville }}</span
>
{{ script[0] }}
</li>
</ul>
<input
type="file"
ref="upload"
accept="application/json"
@change="handleUpload"
/>
<div class="button-group">
<div class="button" @click="openUpload">
<font-awesome-icon icon="file-upload" />
{{ locale.modal.edition.custom.upload }}
<span
class="tab"
icon="question"
@click="tab = 'custom'"
:class="{ active: tab == 'custom' }"
>{{ locale.modal.edition.tab.custom }}</span
>
</li>
<template v-if="tab == 'official'">
<ul class="editions">
<li
v-for="edition in editions.official"
class="edition"
:class="['edition-' + edition.id]"
:style="{
backgroundImage: `url(${require('../../assets/editions/' +
edition.id +
'.png')})`
}"
:key="edition.id"
@click="setEdition(edition)"
>
{{ edition.name }}
</li>
</ul>
</template>
<template v-if="tab == 'popular'">
<ul class="scripts">
<li
v-for="(script, index) in editions.popular"
:key="index"
@click="handleURL(script[1])"
>
{{ script[0] }}
</li>
</ul>
</template>
<template v-if="tab == 'teensyville'">
<ul class="scripts">
<li
v-for="(script, index) in editions.teensyville"
:key="index"
@click="handleURL(script[1])"
>
{{ script[0] }}
</li>
</ul>
</template>
<template v-if="tab == 'custom'">
<div class="custom">
{{ locale.modal.edition.custom.introStart }}
<a href="https://script.bloodontheclocktower.com/" target="_blank">{{
locale.modal.edition.custom.scriptTool
}}</a>
{{ locale.modal.edition.custom.introEnd }}.<br />
<br />
{{ locale.modal.edition.custom.instructionsStart }}
<a
href="https://github.com/bra1n/townsquare#custom-characters"
target="_blank"
>{{ locale.modal.edition.custom.documentation }}n</a
>
{{ locale.modal.edition.custom.instructionsEnd }}<br />
<b>{{ locale.modal.edition.custom.warning }}</b>
<input
type="file"
ref="upload"
accept="application/json"
@change="handleUpload"
/>
</div>
<div class="button" @click="promptURL">
<font-awesome-icon icon="link" />
{{ locale.modal.edition.custom.url }}
<div class="button-group">
<div class="button" @click="openUpload">
<font-awesome-icon icon="file-upload" />
{{ locale.modal.edition.custom.upload }}
</div>
<div class="button" @click="promptURL">
<font-awesome-icon icon="link" />
{{ locale.modal.edition.custom.url }}
</div>
<div class="button" @click="readFromClipboard">
<font-awesome-icon icon="clipboard" />
{{ locale.modal.edition.custom.clipboard }}
</div>
</div>
<div class="button" @click="readFromClipboard">
<font-awesome-icon icon="clipboard" />
{{ locale.modal.edition.custom.clipboard }}
</div>
<div class="button" @click="isCustom = false">
<font-awesome-icon icon="undo" />
{{ locale.modal.edition.custom.back }}
</div>
</div>
</div>
</template>
</ul>
</Modal>
</template>
@ -92,142 +124,7 @@ export default {
},
data: function() {
return {
editions: this.$store.state.editions,
isCustom: false,
scripts: [
[
"Boozling",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/boozling.json"
],
[
"Catfishing",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/catfishing.json"
],
[
"Chaos in the streets",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/chaos_in_the_streets.json"
],
[
"Comrade Demon (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/comrade_demon.json"
],
[
"Cultists of Atlantis",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/cultists_of_atlantis.json"
],
[
"Deadly Penance Day",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/deadly_penance_day.json"
],
[
"Frankenstein's Mayor (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/frankensteins_mayor.json"
],
[
"Harold Holt's Revenge",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/harold_holts_revenge.json"
],
[
"Hide & Seek",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/hide_and_seek.json"
],
[
"Knowing me, Knowing you",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/knowing_me_knowing_you.json"
],
[
"Late night drive by 1.6 (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/late_night_drive_by.json"
],
[
"Midnight Oasis",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/midnight_oasis.json"
],
[
"Minion is Angel Protected & the Demon Has 2 Bluffs (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/minion_is_angel_protected_and_the_demon_has_2_bluffs.json"
],
[
"No greater joy (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/no_greater_joy.json"
],
[
"No roles barred",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/no_roles_barred.json"
],
[
"On thin ice (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/on_thin_ice.json"
],
[
"Pont Saint-Esprit",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/pont_saint_esprit.json"
],
[
"Poppyganda",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/poppyganda.json"
],
[
"Race to the bottom (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/race_to_the_bottom.json"
],
[
"Reptiles !",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/reptiles.json"
],
[
"Reptiles II : Lizard in the city",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/reptiles2.json"
],
[
"Reykjavik's Scheme",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/reykjaviks_scheme.json"
],
[
"Rochambeau",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/rochambeau.json"
],
[
"Simpletown Village",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/simpletown_village.json"
],
[
"Spooky tea 2 : Very spooky (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/spooky_tea2.json"
],
[
"Storyteller's Vengeance",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/storytellers_vengeance.json"
],
[
"The Horrifying Spectacle of Public Executions",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/the_horrifying_spectacle_of_public_executions.json"
],
[
"Trouble Brewing Advanced",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/trouble_brewing_advanced.json"
],
[
"Trouble with Violets",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/trouble_with_violets.json"
],
[
"Uncertain Death",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/uncertain_death.json"
],
[
"Vigormortis High school (Teensyville)",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/vigormortis_high_school.json"
],
[
"Visitors",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/visitors.json"
],
[
"Whose Cult is it Anyway",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/whose_cult_is_it_anyway.json"
]
]
tab: "official"
};
},
computed: {
@ -301,7 +198,6 @@ export default {
});
this.$store.commit("players/setFabled", { fabled });
}
this.isCustom = false;
},
...mapMutations(["toggleModal", "setEdition"])
}
@ -309,6 +205,10 @@ export default {
</script>
<style scoped lang="scss">
ul {
width: 100%;
}
ul.editions {
.edition {
font-family: PiratesBay, sans-serif;
@ -330,25 +230,65 @@ ul.editions {
}
}
.tabs {
display: flex;
padding: 0;
justify-content: flex-start;
width: 100%;
gap: 0.25rem;
border-bottom: 3px solid white;
.tab {
text-align: center;
flex-grow: 1;
flex-shrink: 0;
height: 35px;
border: 1px solid grey;
border-radius: 5px 5px 0 0;
padding: 0.15em 1em;
cursor: pointer;
transition: color 250ms;
user-select: none;
&:hover {
color: red;
}
&.active {
background: linear-gradient(
rgb(31, 101, 255) 0%,
rgba(0, 0, 0, 0.5) 100%
);
}
}
}
.custom {
text-align: center;
input[type="file"] {
display: none;
}
.scripts {
margin-block: 1em;
list-style-type: disc;
font-size: 120%;
cursor: pointer;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 0.5em 1em;
li {
text-align: left;
list-style-type: none;
&:hover {
color: red;
}
margin-block: 1em;
}
input[type="file"] {
display: none;
}
.scripts {
margin-block: 1em;
list-style-type: disc;
font-size: 120%;
cursor: pointer;
// display: grid;
// grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
display: flex;
gap: 0.75em 1em;
justify-content: flex-start;
li {
text-align: left;
list-style-type: none;
border: 1px solid white;
border-radius: 100vmax;
padding: 0.15em 1.5em;
background: linear-gradient(#4e4e4e, #040404);
user-select: none;
&:hover {
color: red;
}
}
}

179
src/editions.json Normal file
View file

@ -0,0 +1,179 @@
{
"official":
[
{
"id": "tb",
"name": "Trouble Brewing",
"author": "The Pandemonium Institute",
"description": "Clouds roll in over Ravenswood Bluff, engulfing this sleepy town and its superstitious inhabitants in foreboding shadow. Freshly-washed clothes dance eerily on lines strung between cottages. Chimneys cough plumes of smoke into the air. Exotic scents waft through cracks in windows and under doors, as hidden cauldrons lay bubbling. An unusually warm Autumn breeze wraps around vine-covered walls and whispers ominously to those brave enough to walk the cobbled streets.\n\nAnxious mothers call their children home from play, as thunder begins to clap on the horizon. If you listen more closely, however, noises stranger still can be heard echoing from the neighbouring forest. Under the watchful eye of a looming monastery, silhouetted figures skip from doorway to doorway. Those who can read the signs know there is... Trouble Brewing.",
"level": "Beginner",
"roles": [],
"isOfficial": true
},
{
"id": "bmr",
"name": "Bad Moon Rising",
"author": "The Pandemonium Institute",
"description": "The sun is swallowed by a jagged horizon as another winter's day surrenders to the night. Flecks of orange and red decay into deeper browns, the forest transforming in silent anticipation of the coming snow.\n\nRavenous wolves howl from the bowels of a rocky crevasse beyond the town borders, sending birds scattering from their cozy rooks. Travelers hurry into the inn, seeking shelter from the gathering chill. They warm themselves with hot tea, sweet strains of music and hearty ale, unaware that strange and nefarious eyes stalk them from the ruins of this once great city.\n\nTonight, even the livestock know there is a... Bad Moon Rising.",
"level": "Intermediate",
"roles": [],
"isOfficial": true
},
{
"id": "snv",
"name": "Sects & Violets",
"author": "The Pandemonium Institute",
"description": "Vibrant spring gives way to a warm and inviting summer. Flowers of every description blossom as far as the eye can see, tenderly nurtured in public gardens and window boxes overlooking the lavish promenade. Birds sing, artists paint and philosophers ponder life's greatest mysteries inside a bustling tavern as a circus pitches its endearingly ragged tent on the edge of town.\n\nAs the townsfolk bask in frivolity and mischief, indulging themselves in fine entertainment and even finer wine, dark and clandestine forces are assembling. Witches and cults lurk in majestic ruins on the fringes of the community, hosting secret meetings in underground caves and malevolently plotting the downfall of Ravenswood Bluff and its revelers.\n\nThe time is ripe for... Sects & Violets.",
"level": "Intermediate",
"roles": [],
"isOfficial": true
},
{
"id": "luf",
"name": "Laissez Un Faire",
"author": "The Pandemonium Institute",
"description": "",
"level": "Veteran",
"roles": ["balloonist", "savant", "amnesiac", "fisherman", "artist", "cannibal", "mutant", "lunatic", "widow", "goblin", "leviathan"],
"isOfficial": true
}
],
"popular" :
[
[
"Boozling",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/boozling.json"
],
[
"Catfishing",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/catfishing.json"
],
[
"Chaos in the streets",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/chaos_in_the_streets.json"
],
[
"Cultists of Atlantis",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/cultists_of_atlantis.json"
],
[
"Deadly Penance Day",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/deadly_penance_day.json"
],
[
"Harold Holt's Revenge",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/harold_holts_revenge.json"
],
[
"Hide & Seek",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/hide_and_seek.json"
],
[
"Knowing me, Knowing you",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/knowing_me_knowing_you.json"
],
[
"Midnight Oasis",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/midnight_oasis.json"
],
[
"No roles barred",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/no_roles_barred.json"
],
[
"Pont Saint-Esprit",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/pont_saint_esprit.json"
],
[
"Poppyganda",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/poppyganda.json"
],
[
"Reptiles !",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/reptiles.json"
],
[
"Reptiles II : Lizard in the city",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/reptiles2.json"
],
[
"Reykjavik's Scheme",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/reykjaviks_scheme.json"
],
[
"Rochambeau",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/rochambeau.json"
],
[
"Simpletown Village",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/simpletown_village.json"
],
[
"Storyteller's Vengeance",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/storytellers_vengeance.json"
],
[
"The Horrifying Spectacle of Public Executions",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/the_horrifying_spectacle_of_public_executions.json"
],
[
"Trouble Brewing Advanced",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/trouble_brewing_advanced.json"
],
[
"Trouble with Violets",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/trouble_with_violets.json"
],
[
"Uncertain Death",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/uncertain_death.json"
],
[
"Visitors",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/visitors.json"
],
[
"Whose Cult is it Anyway",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/whose_cult_is_it_anyway.json"
]
],
"teensyville":
[
[
"Comrade Demon",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/comrade_demon.json"
],
[
"Frankenstein's Mayor",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/frankensteins_mayor.json"
],
[
"Late night drive by 1.6",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/late_night_drive_by.json"
],
[
"Minion is Angel Protected & the Demon Has 2 Bluffs",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/minion_is_angel_protected_and_the_demon_has_2_bluffs.json"
],
[
"No greater joy",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/no_greater_joy.json"
],
[
"On thin ice",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/on_thin_ice.json"
],
[
"Race to the bottom",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/race_to_the_bottom.json"
],
[
"Spooky tea 2 : Very spooky",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/spooky_tea2.json"
],
[
"Vigormortis High school",
"https://raw.githubusercontent.com/Pingumask/townsquare/develop/src/assets/scripts/vigormortis_high_school.json"
]
]
}

View file

@ -4,19 +4,14 @@ import persistence from "./persistence";
import socket from "./socket";
import players from "./modules/players";
import session from "./modules/session";
import editionJSON from "../editions.json";
import {
locale,
rolesJSON,
jinxesJSON,
fabledJSON,
editionJSON
} from "./modules/locale";
import { locale, rolesJSON, jinxesJSON, fabledJSON } from "./modules/locale";
Vue.use(Vuex);
// helper functions
const getRolesByEdition = (edition = editionJSON[0]) => {
const getRolesByEdition = (edition = editionJSON.official[0]) => {
return new Map(
rolesJSON
.filter(r => r.edition === edition.id || edition.roles.includes(r.id))
@ -25,7 +20,7 @@ const getRolesByEdition = (edition = editionJSON[0]) => {
);
};
const getTravelersNotInEdition = (edition = editionJSON[0]) => {
const getTravelersNotInEdition = (edition = editionJSON.official[0]) => {
return new Map(
rolesJSON
.filter(
@ -54,7 +49,7 @@ const clean = id => id.toLocaleLowerCase().replace(/[^a-z0-9]/g, "");
// global data maps
const editionJSONbyId = new Map(
editionJSON.map(edition => [edition.id, edition])
editionJSON.official.map(edition => [edition.id, edition])
);
const rolesJSONbyId = new Map(rolesJSON.map(role => [role.id, role]));
const fabled = new Map(fabledJSON.map(role => [role.id, role]));

View file

@ -1,38 +0,0 @@
[
{
"id": "tb",
"name": "Trouble Brewing",
"author": "The Pandemonium Institute",
"description": "Clouds roll in over Ravenswood Bluff, engulfing this sleepy town and its superstitious inhabitants in foreboding shadow. Freshly-washed clothes dance eerily on lines strung between cottages. Chimneys cough plumes of smoke into the air. Exotic scents waft through cracks in windows and under doors, as hidden cauldrons lay bubbling. An unusually warm Autumn breeze wraps around vine-covered walls and whispers ominously to those brave enough to walk the cobbled streets.\n\nAnxious mothers call their children home from play, as thunder begins to clap on the horizon. If you listen more closely, however, noises stranger still can be heard echoing from the neighbouring forest. Under the watchful eye of a looming monastery, silhouetted figures skip from doorway to doorway. Those who can read the signs know there is... Trouble Brewing.",
"level": "Beginner",
"roles": [],
"isOfficial": true
},
{
"id": "bmr",
"name": "Bad Moon Rising",
"author": "The Pandemonium Institute",
"description": "The sun is swallowed by a jagged horizon as another winter's day surrenders to the night. Flecks of orange and red decay into deeper browns, the forest transforming in silent anticipation of the coming snow.\n\nRavenous wolves howl from the bowels of a rocky crevasse beyond the town borders, sending birds scattering from their cozy rooks. Travelers hurry into the inn, seeking shelter from the gathering chill. They warm themselves with hot tea, sweet strains of music and hearty ale, unaware that strange and nefarious eyes stalk them from the ruins of this once great city.\n\nTonight, even the livestock know there is a... Bad Moon Rising.",
"level": "Intermediate",
"roles": [],
"isOfficial": true
},
{
"id": "snv",
"name": "Sects & Violets",
"author": "The Pandemonium Institute",
"description": "Vibrant spring gives way to a warm and inviting summer. Flowers of every description blossom as far as the eye can see, tenderly nurtured in public gardens and window boxes overlooking the lavish promenade. Birds sing, artists paint and philosophers ponder life's greatest mysteries inside a bustling tavern as a circus pitches its endearingly ragged tent on the edge of town.\n\nAs the townsfolk bask in frivolity and mischief, indulging themselves in fine entertainment and even finer wine, dark and clandestine forces are assembling. Witches and cults lurk in majestic ruins on the fringes of the community, hosting secret meetings in underground caves and malevolently plotting the downfall of Ravenswood Bluff and its revelers.\n\nThe time is ripe for... Sects & Violets.",
"level": "Intermediate",
"roles": [],
"isOfficial": true
},
{
"id": "luf",
"name": "Laissez un Faire",
"author": "The Pandemonium Institute",
"description": "",
"level": "Veteran",
"roles": ["balloonist", "savant", "amnesiac", "fisherman", "artist", "cannibal", "mutant", "lunatic", "widow", "goblin", "leviathan"],
"isOfficial": true
}
]

View file

@ -43,7 +43,7 @@
"id": "revolutionary",
"firstNightReminder": "",
"otherNightReminder": "",
"reminders": ["Used"],
"reminders": ["Same alignment", "Used"],
"setup": false,
"name": "Revolutionary",
"team": "fabled",

View file

@ -576,9 +576,8 @@
"firstNightReminder": "If 7 or more players: Show the Lunatic a number of arbitrary 'Minions', players equal to the number of Minions in play. Show 3 character tokens of arbitrary good characters. If the token received by the Lunatic is a Demon that would wake tonight: Allow the Lunatic to do the Demon actions. Place their 'attack' markers. Wake the Demon. Show the Demon\u2019s real character token. Show them the Lunatic player. If the Lunatic attacked players: Show the real demon each marked player. Remove any Lunatic 'attack' markers.",
"otherNight": 20,
"otherNightReminder": "Allow the Lunatic to do the actions of the Demon. Place their 'attack' markers. If the Lunatic selected players: Wake the Demon. Show the 'attack' marker, then point to each marked player. Remove any Lunatic 'attack' markers.",
"reminders": ["Attack 1",
"Attack 2",
"Attack 3"],
"reminders": [],
"remindersGlobal": ["Lunatic"],
"setup": false,
"ability": "You think you are a Demon, but you are not. The Demon knows who you are & who you choose at night."
},
@ -887,7 +886,8 @@
"otherNight": 2,
"otherNightReminder": "If the Philosopher has not used their ability: the Philosopher either shows a 'no' head signal, or points to a good character on their sheet. If they chose a character: Swap the out-of-play character token with the Philosopher token and add the 'Is the Philosopher' reminder. If the character is in play, place the drunk marker by that player.",
"reminders": ["Drunk",
"Is the Philosopher"],
"Philosopher",
"No ability"],
"setup": false,
"ability": "Once per game, at night, choose a good character: gain that ability. If this character is in play, they are drunk."
},
@ -991,7 +991,8 @@
"firstNightReminder": "Wake the Evil Twin and their twin. Confirm that they have acknowledged each other. Point to the Evil Twin. Show their Evil Twin token to the twin player. Point to the twin. Show their character token to the Evil Twin player.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": ["Twin"],
"reminders": [],
"remindersGlobal": ["Twin"],
"setup": false,
"ability": "You & an opposing player know each other. If the good player is executed, evil wins. Good can't win if you both live."
},
@ -1248,8 +1249,7 @@
"reminders": ["Seen Townsfolk",
"Seen Outsider",
"Seen Minion",
"Seen Demon",
"Seen Traveller"],
"Seen Demon"],
"setup": true,
"ability": "Each night, you learn 1 player of each character type, until there are no more types to learn. [+1 Outsider]"
},
@ -1354,7 +1354,7 @@
"otherNight": 0,
"otherNightReminder": "",
"reminders": [],
"remindersGlobal": ["Is the Alchemist"],
"remindersGlobal": ["Alchemist"],
"setup": false,
"ability": "You have a not-in-play Minion ability."
},
@ -1718,12 +1718,12 @@
"firstNightReminder": "Place the Leviathan 'Day 1' marker. Announce 'The Leviathan is in play; this is Day 1.'",
"otherNight": 73,
"otherNightReminder": "Change the Leviathan Day reminder for the next day.",
"reminders": ["Day 1",
"reminders": ["Good player executed"],
"remindersGlobal": ["Day 1",
"Day 2",
"Day 3",
"Day 4",
"Day 5",
"Good player executed"],
"Day 5"],
"setup": false,
"ability": "If more than 1 good player is executed, you win. All players know you are in play. After day 5, evil wins."
},

View file

@ -163,9 +163,13 @@
"modal":{
"edition":{
"title": "Select an edition:",
"tab": {
"official": "Official scripts",
"popular": "Popular scripts",
"teensyville": "Teensyville",
"custom": "Load custom"
},
"custom": {
"button": "Custom Script / Characters",
"title": "Load custom script / characters",
"introStart": "To play with a custom script, you need to select the characters you want to play with in the official",
"scriptTool": "Script Tool",
"introEnd": "and then upload the generated \"custom-list.json\" either directly here or provide a URL to such a hosted JSON file.",

View file

@ -1,38 +0,0 @@
[
{
"id": "tb",
"name": "Trouble Brewing",
"author": "The Pandemonium Institute",
"description": "Clouds roll in over Ravenswood Bluff, engulfing this sleepy town and its superstitious inhabitants in foreboding shadow. Freshly-washed clothes dance eerily on lines strung between cottages. Chimneys cough plumes of smoke into the air. Exotic scents waft through cracks in windows and under doors, as hidden cauldrons lay bubbling. An unusually warm Autumn breeze wraps around vine-covered walls and whispers ominously to those brave enough to walk the cobbled streets.\n\nAnxious mothers call their children home from play, as thunder begins to clap on the horizon. If you listen more closely, however, noises stranger still can be heard echoing from the neighbouring forest. Under the watchful eye of a looming monastery, silhouetted figures skip from doorway to doorway. Those who can read the signs know there is... Trouble Brewing.",
"level": "Beginner",
"roles": [],
"isOfficial": true
},
{
"id": "bmr",
"name": "Bad Moon Rising",
"author": "The Pandemonium Institute",
"description": "The sun is swallowed by a jagged horizon as another winter's day surrenders to the night. Flecks of orange and red decay into deeper browns, the forest transforming in silent anticipation of the coming snow.\n\nRavenous wolves howl from the bowels of a rocky crevasse beyond the town borders, sending birds scattering from their cozy rooks. Travelers hurry into the inn, seeking shelter from the gathering chill. They warm themselves with hot tea, sweet strains of music and hearty ale, unaware that strange and nefarious eyes stalk them from the ruins of this once great city.\n\nTonight, even the livestock know there is a... Bad Moon Rising.",
"level": "Intermediate",
"roles": [],
"isOfficial": true
},
{
"id": "snv",
"name": "Sects & Violets",
"author": "The Pandemonium Institute",
"description": "Vibrant spring gives way to a warm and inviting summer. Flowers of every description blossom as far as the eye can see, tenderly nurtured in public gardens and window boxes overlooking the lavish promenade. Birds sing, artists paint and philosophers ponder life's greatest mysteries inside a bustling tavern as a circus pitches its endearingly ragged tent on the edge of town.\n\nAs the townsfolk bask in frivolity and mischief, indulging themselves in fine entertainment and even finer wine, dark and clandestine forces are assembling. Witches and cults lurk in majestic ruins on the fringes of the community, hosting secret meetings in underground caves and malevolently plotting the downfall of Ravenswood Bluff and its revelers.\n\nThe time is ripe for... Sects & Violets.",
"level": "Intermediate",
"roles": [],
"isOfficial": true
},
{
"id": "luf",
"name": "Laissez Un Faire",
"author": "The Pandemonium Institute",
"description": "",
"level": "Veteran",
"roles": ["balloonist", "savant", "amnesiac", "fisherman", "artist", "cannibal", "mutant", "lunatic", "widow", "goblin", "leviathan"],
"isOfficial": true
}
]

View file

@ -43,7 +43,7 @@
"id": "revolutionary",
"firstNightReminder": "",
"otherNightReminder": "",
"reminders": ["Utilisé"],
"reminders": ["Même camp", "Utilisé"],
"setup": false,
"name": "Révolutionnaire",
"team": "fabled",

View file

@ -213,7 +213,7 @@
"otherNightReminder": "",
"reminders": [],
"remindersGlobal": [
"Ivre"
"Ivrogne"
],
"setup": true,
"ability": "Vous ne savez pas que vous êtres l'Ivrogne. Vous croyez avoir un rôle de Villageois, mais vous ne l'avez pas."
@ -635,7 +635,8 @@
"firstNightReminder": "S'il y a 7 joueurs ou plus, indiquez à l'Aliéné un nombre de rôles de Serviteurs correspondant au nombre de Serviteurs en jeu et des joueurs pour chacuns de ces personnages. Montrez 3 jetons de personnages bons de votre choix. Si le faux personnage de Démon assigné à l'Aliéné a des actions de nuit, prétendez que vous lui faites réaliser ces actions. Placez le(s) marqueur(s) d'attaque de l'Aliéné. Réveillez le vrai Démon. Dévoilez au Démon les véritables Serviteurs et 3 bons personnages qui ne sont pas en jeu. Dévoilez au Démon qui est l'Aliéné. Si l'Aliéné a attaqué des joueurs, dévoilez au véritable Démon les joueurs marqués puis retirez les marqueurs de l'Aliéné.",
"otherNight": 21,
"otherNightReminder": "Permettez à l'Aliéné de réaliser les actions du Démon qu'il croit être. Placez le(s) marqueur(s) d'attaque. Si l'Aliéné a indiqué des joueurs, réveillez le Démon. Dévoilez au Démon les marqueurs de l'Aliéné puis retirez-les.",
"reminders": [
"reminders": [],
"remindersGlobal": [
"Aliéné"
],
"setup": true,
@ -975,7 +976,7 @@
"otherNightReminder": "S'il ne l'a pas encore fait, le Philosophe choisit s'il souhaite utiliser son pouvoir. S'il le fait, il choisit un personnage Bon. Si ce personnage n'est pas en jeu, le philosophe gagne son pouvoir. Sinon, ce personnage devient Ivre.",
"reminders": [
"Ivre",
"Est le Philosophe",
"Philosophe",
"Épuisé"
],
"setup": false,
@ -1006,7 +1007,7 @@
"otherNight": 62,
"otherNightReminder": "Si aujourd'hui était la première journée du jongleur, indiquez-lui combien de ses prédictions étaient juste.",
"reminders": [
"Correcte",
"Correct",
"Faux"
],
"setup": false,
@ -1090,7 +1091,8 @@
"firstNightReminder": "Réveillez le Jumeau Maléfique et son Jumeau. Informez-les tous deux du rôle de l'autre.",
"otherNight": 0,
"otherNightReminder": "",
"reminders": [
"reminders": [],
"remindersGlobal": [
"Jumeau"
],
"setup": false,
@ -1121,7 +1123,7 @@
"otherNight": 16,
"otherNightReminder": "Le Cerenovus désigne un joueur et un personnage. Reveillez ce joueur. Informez-le qu'il est persuadé d'être ce personnage. S'il n'est pas convaincant, il peut être exécuté.",
"reminders": [
"Fou"
"Persuadé"
],
"setup": false,
"ability": "Chaque nuit, désignez un joueur et un personnage bon : il sera persuadé d'être ce personnage demain, ou pourra être exécuté."
@ -1318,7 +1320,7 @@
"otherNight": 0,
"otherNightReminder": "",
"reminders": [
"Fou",
"Persuadé",
"Pouvoir Dispo"
],
"setup": false,
@ -1378,8 +1380,7 @@
"Villageois vu",
"Étranger vu",
"Serviteur vu",
"Démon vu",
"Voyageur vu"
"Démon vu"
],
"setup": true,
"ability": "Chaque nuit, vous apprenez qu'un joueur a un personnage d'un type que vous n'avez pas encore vu jusqu'à ce que vous en connaissiez un de chaque. [+1 Étranger]."
@ -1498,10 +1499,7 @@
"otherNight": 0,
"otherNightReminder": "Si la capacité de l'alchimiste s'utilise la nuit, réveillez le.",
"reminders": [],
"remindersGlobal": [
"Alchimiste",
"Bon"
],
"remindersGlobal": ["Alchimiste"],
"setup": false,
"ability": "Vous avez la capacité d'un Serviteur qui n'est pas en jeu."
},
@ -1890,7 +1888,7 @@
"otherNightReminder": "Vous pouvez choisir un joueur, Ce joueur meurt.",
"reminders": [
"Mort",
"Mourant"
"Condamné"
],
"setup": true,
"ability": "Chaque nuit*, un joueur peut mourir. Les exécutions ratent si seuls des joueurs Mauvais ont voté. Vous apparaissez également comme un Serviteur. [La majorité des joueurs sont Légion]"
@ -1905,12 +1903,14 @@
"otherNight": 73,
"otherNightReminder": "Changez le marqueur de jour du Léviathan.",
"reminders": [
"Joueur Bon Exécuté"
],
"remindersGlobal": [
"Jour 1",
"Jour 2",
"Jour 3",
"Jour 4",
"Jour 5",
"Joueur Bon Exécuté"
"Jour 5"
],
"setup": false,
"ability": "Si plus d'un Bon joueur est exécuté, les Mauvais gagnent. Tous les joueurs savent que votre personnage est en jeu. Après 5 jours, les Mauvais gagnent."

View file

@ -163,9 +163,13 @@
"modal":{
"edition":{
"title": "Choisir un Scénario :",
"tab": {
"official": "Scénarios officiels",
"popular": "Scripts populaires",
"teensyville": "Teensyville",
"custom": "Partie personnalisée"
},
"custom": {
"button": "Scénario Perso / Personnages",
"title": "Charger un Scénario Perso",
"introStart": "Pour jouer avec un script personnalisé, vous pouvez sélectionner les personnages de votre choix grace à l'",
"scriptTool": "outil officiel d'édition de scripts",
"introEnd": "puis téléverser le fichier json généré directement ici ou depuis une URL hébergée.",

View file

@ -27,4 +27,3 @@ export const locale = require(`../locale/${usedLanguage}/ui.json`);
export const rolesJSON = require(`../locale/${usedLanguage}/roles.json`);
export const jinxesJSON = require(`../locale/${usedLanguage}/hatred.json`);
export const fabledJSON = require(`../locale/${usedLanguage}/fabled.json`);
export const editionJSON = require(`../locale/${usedLanguage}/editions.json`);