initial work on game

This commit is contained in:
ch0ccyra1n 2024-09-19 14:00:54 -07:00
parent be3f868d7b
commit 7322c36043
3 changed files with 26 additions and 2 deletions

View file

@ -1,3 +1,5 @@
# fedijam-engine
Game engine for https://itch.io/jam/fedi-jam
Game engine for https://itch.io/jam/fedi-jam

22
game.yaml Normal file
View file

@ -0,0 +1,22 @@
entrypoint:
goto: "called to the office"
Credits:
scenario: "Programming: ch0ccyra1n\nWriting: ch0ccyra1n"
choices: ["Exit game"]
called to the office:
scenario: "You have been called to the office of your boss at [corporation name here], the corporation you work for. The pay isn't amazing but at least it pays the bills.\nBOSS: Well well well, if it isn't my most useful employee. Look, I'm gonna need you to do some work for me. If you screw this up, we're to use a technical term, fucked. Here's the sitch:\nWe've got to prevent our rivals at [rival corp] from getting a government grant. Our initial recon suggests that a certain engineer by the name of [engineer] is heading the project and without him, us getting the grant is a shoe-in! Of course, if you refuse to do this, I'm firing you on the spot, and if you fail, we'll cover our ass and remove all records of you working here. So what do you say?"
choices: ["I'm not gonna throw my life away for a bunch of suits! Screw this!", "Alright, I'll do it."]
I'm not gonna throw my life away for a bunch of suits! Screw this!:
scenario: "BOSS: Well, I tried. Guess I'll have to find someone else for this, you're fired."
choices: ["Credits", "Exit game"]
Alright, I'll do it.:
scenario: "BOSS: Excellent! I'll make sure you're employee of the month by the time you're back from this mission. Get on with it!\n\e[96mYou move to the planning room and begin formulating a plan for sabotaging the project of [rival corp]\e[0m"
choices: ["Hack the office", "Infiltrate the offices of [rival corp] to get to the engineer's office"]
Hack the office:
scenario: "\e[96mYou decide to hack the offices of [rival corp]. You enter their lobby and sit down with your cyberdeck.\e[0m\nYou'll need to figure out how to get into their internal network."
choices: [""]

View file

@ -21,6 +21,6 @@ def run_encounter(encounter):
validate_encounter(game[encounter['goto']])
if __name__ == '__main__':
with open("sample.yaml", "r") as file:
with open("game.yaml", "r") as file:
game = yaml.safe_load(file)
validate_encounter(game['entrypoint'])