From d43d9e094528f9d781dfb10e0ec7e449d78bae31 Mon Sep 17 00:00:00 2001 From: ch0ccyra1n Date: Mon, 30 Sep 2024 12:56:43 -0700 Subject: [PATCH] Finish the game itself --- game.yaml | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- main.py | 2 +- 2 files changed, 80 insertions(+), 2 deletions(-) diff --git a/game.yaml b/game.yaml index 9eb3121..3d42e54 100644 --- a/game.yaml +++ b/game.yaml @@ -93,5 +93,83 @@ Join Yamaguchi: choices: ["Credits", "Exit game"] Don't join Yamaguchi: - scenario: "You decide to cut off all ties with any of the corps and spend the rest of your days as a merc.\nENDING: The Contractor" + scenario: "You decide to cut off all ties with any of the corps and spend the rest of your days as a merc for hire.\nENDING: The Contractor" + choices: ["Credits", "Exit game"] + +Infiltrate the offices of Yamaguchi to get to the engineer's office: + scenario: "You decide to infiltrate the old-fashioned way. Now to think of a clever disguise." + choices: ["Disguise yourself as pizza delivery", "Disguise yourself as a singing telegram"] + +Disguise yourself as pizza delivery: + scenario: "You put on an old uniform from a previous job of yours delivering pizzas, and walk into the lobby where you see a secretary. A name tag sits on the counter reading 'Ember Johnson (they/them)'.\nEMBER: Hi, I see you're here to deliver a pizza?\nYOU: Yeah that's right, I'm delivering a pizza for..." + choices: ["You, actually!", "Yuki Hashimoto", "Yuki Hash Browns", "Yuki Hashimota"] + +You, actually!: + scenario: "Ember has a puzzled look on their face.\nEMBER: I didn't order any pizza. There must be some sort of mistake.\nYOU: Oh! sorry about that!\nYou feel a tinge of embarassment as you screwed up so horribly. There's no way you'll be able to infiltrate at this point.\nENDING: The Forgotten Name" + choices: ["Credits", "Exit game"] + +Yuki Hashimoto: + scenario: "EMBER: Ah yes, I'll inform her right away that her pizza is here and she'll come down soon. Just hang tight." + goto: "Stall!" + +Yuki Hash Browns: + scenario: "Ember has a puzzled look on their face.\nEMBER: I- I don't know how you got her name that wrong but I assume you mean Yuki Hashimoto? I'll inform her right away that her pizza is here and she'll come down soon. Just hang tight." + goto: "Stall!" + +Yuki Hashimota: + scenario: "EMBER: It's actually Hashimoto, not Hashimota. But yes I'll inform her right away that her pizza is here and she'll come down soon. Just hang tight." + goto: "Stall!" + +Stall!: + scenario: "Uh-oh, this is NOT good! You've gotta come up with a way to convince Ember that you absolutely MUST deliver it directly to Yuki's office!\nYOU: I need to deliver it directly to her office because..." + choices: ["It's a surprise from her sweetheart!", "It's an emergency pizza!", "I just do, okay?"] + +It's a surprise from her sweetheart!: + scenario: "EMBER: Oh, I see! Well why didn't you say so? Here's a guest pass, go on in!" + goto: "guest pass" + +Disguise yourself as a singing telegram: + scenario: "You disguise yourself as a singing telegram, putting on your nicest outfit and singing your way to the secretary's desk. A name tag sits on the counter reading 'Ember Johnson (they/them)'. Ember chuckles, giving you a guest pass so you can surprise an employee with your singing telegram message." + goto: "guest pass" + +guest pass: + scenario: "You are given a guest pass and head to the office of Yuki Hashimoto." + choices: ["Enter the office armed", "Knock on the door and enter the office unarmed"] + +It's an emergency pizza!: + goto: "Ember sees through you" + +I just do, okay?: + goto: "Ember sees through you" + +Ember sees through you: + scenario: "EMBER: Yeah right, like I'd believe that. How gullible do you think I am? I didn't get this job for no reason!\nYou are immediately detained by corporate security on suspicion of corporate espionage.\nENDING: The Secretary" + choices: ["Credits", "Exit game"] + +Enter the office armed: + scenario: "You go in hot with a pistol in your hands.\nYOU: Alright, you better do what I say or I'm blowing your brains out!" + choices: ["Give me a copy of the Oni Project data and delete it from your workstation!", "Delete the Oni Project data from your workstation!"] + +Give me a copy of the Oni Project data and delete it from your workstation!: + scenario: "Yuki Hashimoto complies, giving you a copy of the Oni Project data and deleting it from her workstation. You walk out of the Yamaguchi corporate offices, but when you look at the data, you immediately collapse to the ground. The data that Yuki gave you was laced with a virus that affected your implants.\nENDING: The Firebrand" + choices: ["Credits", "Exit game"] + +Delete the Oni Project data from your workstation!: + scenario: "Yuki Hashimoto complies, deleting the Oni Project data from her workstation. You walk out of the Yamaguchi corporate offices and head back to the Tanaka Industries office, meeting with your boss.\nBOSS: Welcome back! I trust that it went well! Looks like we'll continue as a business for years to come! Congratulations new employee of the month!\nENDING: The Reckless Employee" + choices: ["Credits", "Exit game"] + +Knock on the door and enter the office unarmed: + scenario: "You are allowed into the office of Yuki Hashimoto, and she notices your guest pass.\nYUKI: Ah I see, you must be here to talk with me? What do you need?" + choices: ["I'm representing Tanaka Industries. We are requesting that you delete the Project Oni data immediately.", "I'm representing, let's just say some powerful interests. We are requesting that you delete the Project Oni data immediately."] + +I'm representing Tanaka Industries. We are requesting that you delete the Project Oni data immediately.: + scenario: "YUKI: And why would I do that? From what I've heard, Tanaka is in some serious financial trouble." + choices: ["Because I asked nicely?", "This is not a request you can refuse"] + +Because I asked nicely?: + scenario: "YUKI: Uhh, I don't even know what to say to that other than no, I won't. But I do have an idea for you. You could work here at Yamaguchi Holdings. I'd be down to vouch for you." + choices: ["Join Yamaguchi", "Don't join Yamaguchi"] + +This is not a request you can refuse: + scenario: "YUKI: Alright alright! I understand!\nYuki Hashimoto complies and deletes the Oni Project from her workstation. You walk out of the Yamaguchi corporate offices and head back to the Tanaka Industries office, meeting with your boss.\nBOSS: Welcome back! I trust that it went well! Looks like we'll continue as a business for years to come! Congratulations new employee of the month!\nENDING: The Diplomat" choices: ["Credits", "Exit game"] diff --git a/main.py b/main.py index 5a24153..e1b42bb 100644 --- a/main.py +++ b/main.py @@ -3,7 +3,7 @@ import yaml import textwrap -wrapper = textwrap.TextWrapper(break_long_words=False) +wrapper = textwrap.TextWrapper(break_long_words=False, replace_whitespace=False) def validate_encounter(encounter): run_encounter(encounter)