diff --git a/Step-0-Initialize-your-Ship-Commander/index.js b/Step-0-Initialize-your-Ship-Commander/index.js
index 2919525..1e57916 100644
--- a/Step-0-Initialize-your-Ship-Commander/index.js
+++ b/Step-0-Initialize-your-Ship-Commander/index.js
@@ -22,9 +22,10 @@ const LaunchRequestHandler = {
&& handlerInput.requestEnvelope.request.intent.name === 'ReturnHomeIntent');
},
handle(handlerInput) {
- const speechText = "Welcome to the Ship Commander skill. You are the captain of our space exploration. "
- + "To get started you can say things like, analyze the ship status or read the captains log. "
- + "Time to embark on an adventure into the unknown!";
+ const speechText = "Welcome Captain. You are now in command of the Starship YummyFries, in it's "
+ + "continuing mission to seek out new sources of french fries and new ways to cook them. "
+ + "To get started, you can say things like, analyze the ship status or read the captains log. "
+ + "Time to embark on another adventure into the unknown!";
return handlerInput.responseBuilder
.speak(speechText)
@@ -74,7 +75,7 @@ const BeamMeUpIntentHandler = {
&& handlerInput.requestEnvelope.request.intent.name === 'BeamMeUpIntent';
},
handle(handlerInput) {
- const speechText = "Prepare to beam. Engage.";
+ const speechText = "Initializing transport process. Transporting... Wait... I forgot to beam up your clothes... One second, Captain... Beam process successful!";
return handlerInput.responseBuilder
.speak(speechText)
diff --git a/Step-1-Add-SSML-Sound-Effects-and-Amazon-Polly/index.js b/Step-1-Add-SSML-Sound-Effects-and-Amazon-Polly/index.js
index 6b2d299..cf0b65a 100644
--- a/Step-1-Add-SSML-Sound-Effects-and-Amazon-Polly/index.js
+++ b/Step-1-Add-SSML-Sound-Effects-and-Amazon-Polly/index.js
@@ -76,10 +76,7 @@ const BeamMeUpIntentHandler = {
&& handlerInput.requestEnvelope.request.intent.name === 'BeamMeUpIntent';
},
handle(handlerInput) {
- const speechText = "Prepare to beam "
- + " "
- + "Engage "
- + "";
+ const speechText = "Initializing transport process. Transporting... Wait... I forgot to beam up your clothes... One second, Captain... Beam process successful!";
return handlerInput.responseBuilder
.speak(speechText)