Script selection UI rework

This commit is contained in:
Pingumask 2023-07-30 13:17:36 +00:00
parent 35b02e2077
commit 3941b87da1
11 changed files with 337 additions and 309 deletions

View file

@ -2,6 +2,9 @@
## Upcomming Version
### Version 3.14.0
Reworked script selection UI
### Version 3.13.2
Malformed JSON breaking compilation

4
package-lock.json generated
View file

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

View file

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

View file

@ -1,84 +1,93 @@
<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)"
>
{{ edition.name }}
</li>
<li
class="edition edition-custom"
@click="isCustom = true"
:style="{
backgroundImage: `url(${require('../../assets/editions/custom.png')})`
}"
>
{{ 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])"
>
{{ 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 }}
<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>
<span class="tab" icon="broadcast-tower" @click="tab = 'popular'" :class="{active: tab== 'popular'}" >{{ locale.modal.edition.tab.popular }}</span>
<span class="tab" icon="theater-masks" @click="tab = 'teensyville'" :class="{active: tab== 'teensyville'}" >{{ locale.modal.edition.tab.teensyville }}</span>
<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 +101,8 @@ 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 +176,6 @@ export default {
});
this.$store.commit("players/setFabled", { fabled });
}
this.isCustom = false;
},
...mapMutations(["toggleModal", "setEdition"])
}
@ -309,6 +183,10 @@ export default {
</script>
<style scoped lang="scss">
ul {
width: 100%;
}
ul.editions {
.edition {
font-family: PiratesBay, sans-serif;
@ -330,26 +208,63 @@ 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"] {
margin-block: 1em;
}
input[type="file"] {
display: none;
}
.scripts {
.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;
// display: grid;
// grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
display: flex;
gap: .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;
}
}
}
}
</style>

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,19 @@ 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
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 +25,7 @@ const getRolesByEdition = (edition = editionJSON[0]) => {
);
};
const getTravelersNotInEdition = (edition = editionJSON[0]) => {
const getTravelersNotInEdition = (edition = editionJSON.official[0]) => {
return new Map(
rolesJSON
.filter(
@ -54,7 +54,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

@ -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

@ -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`);