summaryrefslogtreecommitdiffstats
path: root/ai_dungeon.py
diff options
context:
space:
mode:
authorRose Hogenson <rhogenson@posteo.net>2022-02-15 10:13:21 -0800
committerRose Hogenson <rhogenson@posteo.net>2022-02-15 10:13:21 -0800
commit66dfe3e616ba0d2c5d90afac4acc8e10ee736169 (patch)
tree162d9a393e7faeea903ac0486595ec031e9b6835 /ai_dungeon.py
parent60cd7954af55e91c97e90a1d8ae3e051c93dded5 (diff)
downloadgpt-adventure-66dfe3e616ba0d2c5d90afac4acc8e10ee736169.tar.zst
Add a doctor scenario.
Diffstat (limited to 'ai_dungeon.py')
-rwxr-xr-xai_dungeon.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/ai_dungeon.py b/ai_dungeon.py
index ad18c48..b0cc64a 100755
--- a/ai_dungeon.py
+++ b/ai_dungeon.py
@@ -68,6 +68,18 @@ def pick_flavor() -> str:
"purifier for your settlement. You arrive at an\n"
"abandoned settlement to the east of your home."
),
+ "doctor": (
+ "Your name is Amelia Plenn. Today is your doctors appointment.\n"
+ "You're kind of not looking forward to it because your doctor\n"
+ "is kind of weird, but today when you get to the doctor's office\n"
+ "it's a different person than usual.\n\n"
+ "The new doctor says to you, \"Hello, my name is Doctor Cockman.\n"
+ "It's my pleasure to see you today.\"\n\n"
+ "Doctor Cockman is very handsome, and you feel yourself blush as\n"
+ "he leads you to the doctor's seat. You sit in the seat and he\n"
+ "runs his warm hands up and down your arms.\n\n"
+ "\"Are you feeling alright?\" Doctor Cockman asks."
+ )
}
choices = []
for i, (scenario, script) in enumerate(flavors.items()):