From 18490df0723176b554845a318ac3b9cbcf497a3f Mon Sep 17 00:00:00 2001 From: Cat Flynn Date: Wed, 30 Apr 2025 20:22:12 +0100 Subject: [PATCH] feat: gamer group chat --- ides-of-march-goty.json | 40 ++++++++++++++++++++++++++++++++++++++++ main.js | 4 ++-- 2 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 ides-of-march-goty.json diff --git a/ides-of-march-goty.json b/ides-of-march-goty.json new file mode 100644 index 0000000..af9cb9e --- /dev/null +++ b/ides-of-march-goty.json @@ -0,0 +1,40 @@ + { + "title": "raid: ides of march", + "interactive": false, + "characters": [ + "mark antony", + "cassius", + "brutus", + "casca", + "decimus", + "trebonius" + ], + "messages": [ + { "character": -1, "text": "cassius started the 'ides of march' squad" }, + { "character": -1, "text": "cassius invited brutus casca decimus trebonius and mark antony" }, + { "character": 1, "text": "yo its go time we needa lock this strat everyone ready for tmrw?" }, + { "character": 2, "text": "yeah gotta be tmrw no more stalling" }, + { "character": 3, "text": "we know the exact loc?" }, + { "character": 4, "text": "hes hitting the senate tmrw for sure i talked him into it even tho hes been kinda sus lately lol" }, + { "character": 5, "text": "nice gotta jump him before he knows whats up everyone clear on their job?" }, + { "character": 1, "text": "ill give the go signal brutus u hang back til the end makes it look legit or whatever" }, + { "character": 2, "text": "its not about looking good dude its about saving the guild" }, + { "character": 3, "text": "yeah yeah but gotta think about the optics ppl need to see why we did it" }, + { "character": 1, "text": "casca ur on first hit like we planned u good?" }, + { "character": 3, "text": "yep got this ez first blood" }, + { "character": 4, "text": "remember everyone committed no backing out now" }, + { "character": 5, "text": "what about mark antony hes always like caesars pocket healer" }, + { "character": 1, "text": "trebonius u got him keep him busy outside make sure he doesnt aggro" }, + { "character": 5, "text": "kk np" }, + { "character": 2, "text": "remember this isnt griefing its like balancing the server rome > one dude" }, + { "character": 3, "text": "right but tmrw gonna be a shitshow lol" }, + { "character": 4, "text": "we deal w the drama later just stick to the strat" }, + { "character": 1, "text": "tmrw at senate lets finish this op run" }, + { "character": 2, "text": "for rome" }, + { "character": 3, "text": "for the republic" }, + { "character": 5, "text": "for the future" }, + { "character": 0, "text": "uh guys?" }, + { "character": 1, "text": "shit" }, + { "character": -1, "text": "you have been kicked from 'ides of march'" } + ] +} diff --git a/main.js b/main.js index e335dda..0c611ec 100644 --- a/main.js +++ b/main.js @@ -437,7 +437,7 @@ function populateConversationList() { const conversationFiles = [ "caesar.json", "lucius.json", - "ides-of-march.json", + "ides-of-march-goty.json", "lepidus.json", "publius.json", "sextus.json" @@ -452,5 +452,5 @@ function populateConversationList() { setTypingIndicator(false); populateConversationList(); -showConversation("ides-of-march.json"); +showConversation("ides-of-march-goty.json");