mirror of
https://github.com/He4eT/simple-tads-game.git
synced 2026-05-04 17:07:24 +00:00
Add dude character
This commit is contained in:
parent
0814851b27
commit
eeb63408bb
3 changed files with 65 additions and 2 deletions
57
characters/dude.t
Normal file
57
characters/dude.t
Normal file
|
|
@ -0,0 +1,57 @@
|
||||||
|
dude: Person
|
||||||
|
'dude'
|
||||||
|
'dude'
|
||||||
|
"Just a guy with a beard. "
|
||||||
|
location = thirdRoom
|
||||||
|
isHim = true
|
||||||
|
;
|
||||||
|
|
||||||
|
+ DefaultAnyTopic, ShuffledEventList [
|
||||||
|
'<q>Yeah! That\'s cool, man!</q>',
|
||||||
|
'<q>OMG! That\'s awesome! By the way, have you tried Zig?</q>',
|
||||||
|
'<q>Sure! It\'s remind me about pointers!</q>'
|
||||||
|
];
|
||||||
|
|
||||||
|
+ DefaultAskTellTopic, ShuffledEventList [
|
||||||
|
'<q>Blah-blah-blah... Did someone say pointers? Blah-blah-blah-blah...</q>',
|
||||||
|
'<q>Blah-blah-blah-blah... Have you heard about Zig? Blah-blah-blah...</q>',
|
||||||
|
'<q>Blah-blah... What do you think about this game? Blah-blah...</q>'
|
||||||
|
];
|
||||||
|
|
||||||
|
+ HelloTopic, ShuffledEventList [
|
||||||
|
' <q>Hello there,</q> you say.\n
|
||||||
|
<q>How\'s it going, man?</q> the guy answered.'
|
||||||
|
][
|
||||||
|
' <q>Er...</q> you start.\b
|
||||||
|
<q>What\'s up, man?</q> he asks. ',
|
||||||
|
' <q>How are you doing, dude?</q>',
|
||||||
|
' <q>Hey, how\'s everything, bro?</q>',
|
||||||
|
' <q>How\'s it going, dude?</q>',
|
||||||
|
' <q>What\'s going on, man?</q>',
|
||||||
|
' <q>How are things, buddy?</q>',
|
||||||
|
' <q>Hey, how\'s life, man?</q>'
|
||||||
|
];
|
||||||
|
|
||||||
|
+ AskTopic [me]
|
||||||
|
"<q>Don't worry, man! You look great!</q>"
|
||||||
|
;
|
||||||
|
|
||||||
|
+ AskTopic [dude]
|
||||||
|
"I really love Zig, pointers, and video games, man!"
|
||||||
|
;
|
||||||
|
|
||||||
|
+ AskTopic [banana, mango, orange, apple]
|
||||||
|
"Yeah, man! Fruits are cool!"
|
||||||
|
;
|
||||||
|
|
||||||
|
+ AskTopic [tZig]
|
||||||
|
"<q>Zig mentioned!</q>"
|
||||||
|
;
|
||||||
|
|
||||||
|
+ AskTopic [tPointers]
|
||||||
|
"<q>Pointers are cool!</q>"
|
||||||
|
;
|
||||||
|
|
||||||
|
+ AskTopic [tGames]
|
||||||
|
"<q>I will later show you one of my games, dude!</q>"
|
||||||
|
;
|
||||||
7
index.t
7
index.t
|
|
@ -25,8 +25,6 @@ gameMain: GameMainDef
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
||||||
#include "characters/pc.t"
|
|
||||||
|
|
||||||
#include "locations/startingRoom.t"
|
#include "locations/startingRoom.t"
|
||||||
#include "locations/secondRoom.t"
|
#include "locations/secondRoom.t"
|
||||||
#include "locations/thirdRoom.t"
|
#include "locations/thirdRoom.t"
|
||||||
|
|
@ -36,3 +34,8 @@ gameMain: GameMainDef
|
||||||
#include "items/table.t"
|
#include "items/table.t"
|
||||||
#include "items/oldDoor.t"
|
#include "items/oldDoor.t"
|
||||||
#include "items/brokenDoor.t"
|
#include "items/brokenDoor.t"
|
||||||
|
|
||||||
|
#include "characters/pc.t"
|
||||||
|
#include "characters/dude.t"
|
||||||
|
|
||||||
|
#include "topics/gamedev.t"
|
||||||
|
|
|
||||||
3
topics/gamedev.t
Normal file
3
topics/gamedev.t
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
tZig: Topic 'zig/language/languages';
|
||||||
|
tPointers: Topic 'pointers/memory';
|
||||||
|
tGames: Topic 'gamedev/game/games';
|
||||||
Loading…
Add table
Add a link
Reference in a new issue