diff options
| author | nathan <nathansmith@disroot.org> | 2026-01-14 11:22:09 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2026-01-14 11:22:09 +0000 |
| commit | 1b6cb396a429310e2d374fb276efbefe3f6c2fc7 (patch) | |
| tree | d52c1797e128fd275a21e07dc8fb737b490c5d09 /src/entities/samantha.c | |
| parent | bbce25930d9910c715245f5d87a108ab1dac3426 (diff) | |
| download | FindThings-1b6cb396a429310e2d374fb276efbefe3f6c2fc7.tar.gz FindThings-1b6cb396a429310e2d374fb276efbefe3f6c2fc7.tar.bz2 FindThings-1b6cb396a429310e2d374fb276efbefe3f6c2fc7.zip | |
Funnies
Diffstat (limited to 'src/entities/samantha.c')
| -rw-r--r-- | src/entities/samantha.c | 8 |
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; } |
