aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/samantha.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/samantha.c')
-rw-r--r--src/entities/samantha.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/entities/samantha.c b/src/entities/samantha.c
index 8ee5009..2455e93 100644
--- a/src/entities/samantha.c
+++ b/src/entities/samantha.c
@@ -1,5 +1,6 @@
#include "samantha.h"
#include "ui.h"
+#include "mad-libs.h"
void initSamantha(Entity* entity)
{
@@ -54,7 +55,12 @@ InteractionCommand interactWithSamantha(Entity* entity, Game* game,
case SELECTION_NEXT_MESSAGE:
if (samantha->dialogCount == 0)
{
- setInteractionChat(chat, "I WILL DESTROY THE WORLD");
+ char funnies[255];
+ game->strangeTalkSeed = mapLibs(
+ funnies,
+ "You must be the @nist I orded to @v my @j @n",
+ 255, game->strangeTalkSeed);
+ setInteractionChat(chat, funnies);
++samantha->dialogCount;
return INTERACTION_TALK;
}