diff --git a/src/chats/serenity.yaml b/src/chats/serenity.yaml index 6e9587f..2b0885b 100644 --- a/src/chats/serenity.yaml +++ b/src/chats/serenity.yaml @@ -24,89 +24,6 @@ --- -- chat: ClippyTransSerenity -- Welcome at StarTrans Cargo Services! You have reached Serenity Station. -- "Ready for a trip? Available bus stops: Oscillation Station, Metis Prime Station" -- set busstop: serenity -- label: startransbusstop -- goto: EXIT -- label: interesting -- Serenity Station is famous for the best pizza across the Jovian Rings. -- Look for the neon sign of the pizzeria nearby. - - ---- - - -- chat: ClippyTransMetis -- Welcome at StarTrans Cargo Services! You have reached Metis Prime Station. -- "Ready for a trip? Available bus stops: Oscillation Station, Serenity Station" -- set busstop: metis -- label: startransbusstop -- goto: EXIT -- label: interesting -- This area is an industrial paradise for asteroid miners. -- Though it has been recently abandoned due to the excessive particle radiation. -- I advise you to minimize the duration of your stay here. - - ---- - - -- chat: ClippyTransOscillation -- Welcome at StarTrans Cargo Services! You have reached Oscillation Station. -- "Ready for a trip? Available bus stops: Serenity Station, Metis Prime Station" -- set busstop: oscillation -- label: startransbusstop -- goto: EXIT -- label: interesting -- The main attraction around here is the gorgeous view onto Jupiter from far up ahead. - - ---- - - -- addon: startransbusstop -- Bus stop?! How does this work?: - - StarTrans Cargo Services is the most convenient way to travel the vast distances of space. - - Just activate your suit's built-in cryostasis. A StarTrans carrier will pick you up and you will wake up at your destination in the blink of an eye. - - Of course we will supply you with free oxygen and ensure your safety. - - goto: startransbusstop -- Can I take a spacecraft with me?: - - Absolutely. - - goto startransbusstop -- if: busstop != oscillation - Take me to Oscillation Station, please.: - - StarTrans wishes you a pleasant journey. - - script: cryofadeout - - sleep: 5 - - script: cryotrip oscillation - - goto: EXIT -- if: busstop != metis - Take me to Metis Prime Station, please.: - - StarTrans wishes you a pleasant journey. - - script: cryofadeout - - sleep: 5 - - script: cryotrip metisprime - - goto: EXIT -- if: busstop != serenity - Take me to Serenity Station, please.: - - StarTrans wishes you a pleasant journey. - - script: cryofadeout - - sleep: 5 - - script: cryotrip serenity - - goto: EXIT -- Can you please fill up my oxygen tank without taking me anywhere?: - - Of course, you can count on StarTrans! - - script: refilloxygen 1000 -- Is there anything interesting to do around here?: - - goto: interesting -- No, thank you.: -- TIMEOUT: -- Feel free to come back any time. -- system: Connection terminated. - ---- - chat: Icarus - if talkcount > 0: - "Oh, hi again! How are you?" diff --git a/src/chats/startrans.yaml b/src/chats/startrans.yaml new file mode 100644 index 0000000..34ebd9c --- /dev/null +++ b/src/chats/startrans.yaml @@ -0,0 +1,81 @@ +- chat: ClippyTransSerenity +- Welcome at StarTrans Cargo Services! You have reached Serenity Station. +- "Ready for a trip? Available bus stops: Oscillation Station, Metis Prime Station" +- set busstop: serenity +- label: startransbusstop +- goto: EXIT +- label: interesting +- Serenity Station is famous for the best pizza across the Jovian Rings. +- Look for the neon sign of the pizzeria nearby. + + +--- + + +- chat: ClippyTransMetis +- Welcome at StarTrans Cargo Services! You have reached Metis Prime Station. +- "Ready for a trip? Available bus stops: Oscillation Station, Serenity Station" +- set busstop: metis +- label: startransbusstop +- goto: EXIT +- label: interesting +- This area is an industrial paradise for asteroid miners. +- Though it has been recently abandoned due to the excessive particle radiation. +- I advise you to minimize the duration of your stay here. + + +--- + + +- chat: ClippyTransOscillation +- Welcome at StarTrans Cargo Services! You have reached Oscillation Station. +- "Ready for a trip? Available bus stops: Serenity Station, Metis Prime Station" +- set busstop: oscillation +- label: startransbusstop +- goto: EXIT +- label: interesting +- The main attraction around here is the gorgeous view onto Jupiter from far up ahead. + + +--- + + +- addon: startransbusstop +- Bus stop?! How does this work?: + - StarTrans Cargo Services is the most convenient way to travel the vast distances of space. + - Just activate your suit's built-in cryostasis. A StarTrans carrier will pick you up and you will wake up at your destination in the blink of an eye. + - Of course we will supply you with free oxygen and ensure your safety. + - goto: startransbusstop +- Can I take a spacecraft with me?: + - Absolutely. + - goto startransbusstop +- if: busstop != oscillation + Take me to Oscillation Station, please.: + - StarTrans wishes you a pleasant journey. + - script: cryofadeout + - sleep: 5 + - script: cryotrip oscillation + - goto: EXIT +- if: busstop != metis + Take me to Metis Prime Station, please.: + - StarTrans wishes you a pleasant journey. + - script: cryofadeout + - sleep: 5 + - script: cryotrip metisprime + - goto: EXIT +- if: busstop != serenity + Take me to Serenity Station, please.: + - StarTrans wishes you a pleasant journey. + - script: cryofadeout + - sleep: 5 + - script: cryotrip serenity + - goto: EXIT +- Can you please fill up my oxygen tank without taking me anywhere?: + - Of course, you can count on StarTrans! + - script: refilloxygen 1000 +- Is there anything interesting to do around here?: + - goto: interesting +- No, thank you.: +- TIMEOUT: +- Feel free to come back any time. +- system: Connection terminated.