give generic conversation options to hideout occupants

This commit is contained in:
yuni 2024-11-17 21:31:37 +01:00
parent bf5b5f2156
commit 875bf5a972

View file

@ -883,12 +883,22 @@
- Oh, hello! - Oh, hello!
- Look, I'm very busy right now constructing this place. - Look, I'm very busy right now constructing this place.
- We can talk more once this is done. - We can talk more once this is done.
- label: entrypoint
- Can you spare some oxygen?: - Can you spare some oxygen?:
- Oh, sure thing! - Oh, sure thing!
- script: refilloxygen 1 - script: refilloxygen 1
- Can I ask you some general questions?:
- Of course.
- goto: generic_questions
- Bye!: - Bye!:
- See you around! - See you around!
- goto: EXIT
- goto: entrypoint
- label: generic_questions
- include: generic_questions_serenity
- Anything else?
- goto: entrypoint
--- ---
@ -896,11 +906,22 @@
- chat: River - chat: River
- Welcome to our little oasis! - Welcome to our little oasis!
- This will be great once it's finished. - This will be great once it's finished.
- label: entrypoint
- Can you spare some oxygen?: - Can you spare some oxygen?:
- Oh, sure thing! - Oh, sure thing!
- script: refilloxygen 1 - script: refilloxygen 1
- Can I ask you some general questions?:
- Of course.
- goto: generic_questions
- Bye!: - Bye!:
- See you around! - See you around!
- goto: EXIT
- goto: entrypoint
- label: generic_questions
- include: generic_questions_serenity
- Anything else?
- goto: entrypoint
--- ---