implement fast travel via phone call to FASTravel
This commit is contained in:
parent
52d962a6bb
commit
9ea706c48e
|
@ -1,5 +1,7 @@
|
|||
# v0.14.0-dev
|
||||
|
||||
- Implement fast travel (must be unlocked by getting phone number of FASTravel)
|
||||
- Implement phone calls
|
||||
- Chats don't automatically advance now, the player has to press "Continue"
|
||||
- Add sparkles to Jupiter's ring ✨😍✨ best visible from Farview Station
|
||||
- Add setting to change pointer
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
- chat: ClippyTransSerenity
|
||||
- set: $busstop serenity
|
||||
- Welcome at FASTravel! You have reached Serenity Station.
|
||||
- script: registercontact travel
|
||||
- "Ready for a trip? Available bus stops: Farview Station, Metis Prime Station"
|
||||
- label: fastravel
|
||||
- include: BusStops
|
||||
|
@ -33,6 +34,7 @@
|
|||
- chat: ClippyTransMetis
|
||||
- set: $busstop metis
|
||||
- Welcome at FASTravel! You have reached Metis Prime Station.
|
||||
- script: registercontact travel
|
||||
- "Ready for a trip? Available bus stops: Farview Station, Serenity Station"
|
||||
- label: fastravel
|
||||
- include: BusStops
|
||||
|
@ -48,6 +50,7 @@
|
|||
- chat: ClippyTransFarview
|
||||
- set: $busstop farview
|
||||
- Welcome at FASTravel Services! You have reached Farview Station.
|
||||
- script: registercontact travel
|
||||
- "Ready for a trip? Available bus stops: Serenity Station, Metis Prime Station"
|
||||
- label: fastravel
|
||||
- include: BusStops
|
||||
|
|
|
@ -5,11 +5,51 @@
|
|||
- Select contact to call.
|
||||
- if: phone$travel
|
||||
FASTravel:
|
||||
- script: changename FASTravel™ Chatbot
|
||||
- This is FASTravel, how can I help you?
|
||||
- if: phone$icarus
|
||||
Icarus:
|
||||
- script: changename Icarus
|
||||
- Well hi there!
|
||||
- goto: travel
|
||||
- "[Cancel]":
|
||||
- goto: EXIT
|
||||
|
||||
- label: travel
|
||||
- script: changename FASTravel
|
||||
- Welcome to FASTravel™, how can I help you today?
|
||||
- label: travel_mainnode
|
||||
- Can you pick me up please?:
|
||||
- Yes! Where should we drop you off?
|
||||
- Serenity Station:
|
||||
- Ok! Activate cryofreeze and we'll be right there.
|
||||
- "[Activate Cryofreeze]":
|
||||
- script: cryofadeout
|
||||
- sleep: 5
|
||||
- script: cryotrip serenity
|
||||
- goto: EXIT
|
||||
- I changed my mind.:
|
||||
- Alright. Anything else I can help you with?
|
||||
- goto: travel_mainnode
|
||||
- Metis Prime Station:
|
||||
- Ok! Activate cryofreeze and we'll be right there.
|
||||
- "[Activate Cryofreeze]":
|
||||
- script: cryofadeout
|
||||
- sleep: 5
|
||||
- script: cryotrip metisprime
|
||||
- goto: EXIT
|
||||
- I changed my mind.:
|
||||
- Alright. Anything else I can help you with?
|
||||
- goto: travel_mainnode
|
||||
- Farview Station:
|
||||
- Ok! Activate cryofreeze and we'll be right there.
|
||||
- "[Activate Cryofreeze]":
|
||||
- script: cryofadeout
|
||||
- sleep: 5
|
||||
- script: cryotrip farview
|
||||
- goto: EXIT
|
||||
- I changed my mind.:
|
||||
- Alright. Anything else I can help you with?
|
||||
- goto: travel_mainnode
|
||||
- I just wanted to say that you're awesome!:
|
||||
- Thank you so much!
|
||||
- Hearing this makes my day!
|
||||
- Satisfying our customers is what I'm programmed to live for.
|
||||
- Good bye!:
|
||||
- goto: EXIT
|
||||
- "[Hang up]":
|
||||
- goto: EXIT
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
- How are you doing?
|
||||
- goto: howru
|
||||
- Oh hey, you're awake!
|
||||
- script: registercontact icarus
|
||||
- set: $met
|
||||
- I found you drifting out cold, and thought, I better watch over you.
|
||||
- Took us here behind that moonlet, to shield you from the micrometeorites.
|
||||
|
|
Loading…
Reference in a new issue