-
-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
403 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
[ | ||
{ | ||
"title": "Sally", | ||
"tags": "", | ||
"body": "<<if visited(\"Sally\") is false>>\nPlayer: Hey, Sally.\nSally: Oh! Hi.\nSally: You snuck up on me.\nSally: Don't do that.\n<<else>>\nPlayer: Hey.\nSally: Hi.\n<<endif>>\n\n<<if not visited(\"Sally.Watch\")>>\n[[Anything exciting happen on your watch?|Sally.Watch]]\n<<endif>>\n<<if $received_warning_from_sally and not visited(\"Sally.Sorry\")>>\n[[Sorry about the console.|Sally.Sorry]]\n<<endif>>\n[[See you later.|Sally.Exit]]", | ||
"position": { | ||
"x": 371, | ||
"y": 137 | ||
}, | ||
"colorID": 0 | ||
}, | ||
{ | ||
"title": "Sally.Watch", | ||
"tags": "", | ||
"body": "Sally: Not really. \nSally: Same old nebula, doing the same old thing.\nSally: Oh, Ship wanted to see you. Go say hi to it.\n<<set $should_see_ship to true>>\n<<if visited(\"Ship\") is true>>\nPlayer: Already done!\nSally: Go say hi again.\n<<endif>>", | ||
"position": { | ||
"x": 359, | ||
"y": 456 | ||
}, | ||
"colorID": 0 | ||
}, | ||
{ | ||
"title": "Sally.Exit", | ||
"tags": "", | ||
"body": "Sally: Bye.", | ||
"position": { | ||
"x": 58, | ||
"y": 443 | ||
}, | ||
"colorID": 6 | ||
}, | ||
{ | ||
"title": "Ship", | ||
"tags": "", | ||
"body": "<<if visited(\"Ship\") is false>>\n Ship: Hey, friend.\n Player: Hi, Ship.\n Player: How's space?\n Ship: Oh, man.\n <<setsprite ShipFace happy>>\n Ship: It's HUGE!\n <<setsprite ShipFace neutral>>\n<<else>>\n <<setsprite ShipFace happy>>\n Ship: Hey!!\n <<setsprite ShipFace neutral>>\n<<endif>>\n\n<<if $should_see_ship is true and $received_warning_from_sally is false>>\nPlayer: Sally said you wanted to see me?\n<<setsprite ShipFace happy>>\nShip: She totally did!!\n<<setsprite ShipFace neutral>>\nShip: She wanted me to tell you...\nShip: If you ever go off-watch without resetting the console again...\n<<setsprite ShipFace happy>>\nShip: She'll flay you alive!\n<<set $received_warning_from_sally to true>>\nPlayer: Uh.\n<<setsprite ShipFace neutral>>\n\n<<endif>>\n", | ||
"position": { | ||
"x": 721, | ||
"y": 130 | ||
}, | ||
"colorID": 0 | ||
}, | ||
{ | ||
"title": "Sally.Sorry", | ||
"tags": "", | ||
"body": "Sally: Yeah. Don't do it again.", | ||
"position": { | ||
"x": 674, | ||
"y": 465 | ||
}, | ||
"colorID": 0 | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
// Tests a single line | ||
|
||
<<expect_line("This is a single line of dialogue.")>> | ||
|
||
This is a single line of dialogue. | ||
|
||
<<assert(true)>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Testing smileys | ||
|
||
Mae: ¯\_(ツ)_/¯ | ||
Mae: <o> | ||
Mae: :| | ||
Mae: :) | ||
Mae: :( | ||
Mae: :o | ||
Mae: :\ | ||
Mae: :< | ||
Mae: D: | ||
Mae: -_- | ||
Mae: =_= | ||
Mae: U_U | ||
Mae: O_O | ||
Mae: o_o | ||
Mae: \o/ | ||
Mae: /o\ | ||
Mae: o/ | ||
Mae: _o_ | ||
Mae: o> | ||
Mae: / \ | ||
Mae: \ / | ||
Mae: ~~ | ||
|
||
// Testing in an option group | ||
|
||
|
||
<<prepare_for_options(-1, 0)>> | ||
|
||
-> Mae: ¯\_(ツ)_/¯ | ||
-> Mae: <o> | ||
-> Mae: :| | ||
-> Mae: :) | ||
-> Mae: :( | ||
-> Mae: :o | ||
-> Mae: :\ | ||
-> Mae: :< | ||
-> Mae: D: | ||
-> Mae: -_- | ||
-> Mae: =_= | ||
-> Mae: U_U | ||
-> Mae: O_O | ||
-> Mae: o_o | ||
-> Mae: \o/ | ||
-> Mae: /o\ | ||
-> Mae: o/ | ||
-> Mae: _o_ | ||
-> Mae: o> | ||
-> Mae: / \ | ||
-> Mae: \ / | ||
-> Mae: ~~ | ||
|
||
// Testing in an option group, with conditionals | ||
|
||
<<prepare_for_options(-1, 0)>> | ||
|
||
-> Mae: ¯\_(ツ)_/¯ <<if true>> | ||
-> Mae: <o> <<if true>> | ||
-> Mae: :| <<if true>> | ||
-> Mae: :) <<if true>> | ||
-> Mae: :( <<if true>> | ||
-> Mae: :o <<if true>> | ||
-> Mae: :\ <<if true>> | ||
-> Mae: :< <<if true>> | ||
-> Mae: D: <<if true>> | ||
-> Mae: -_- <<if true>> | ||
-> Mae: =_= <<if true>> | ||
-> Mae: U_U <<if true>> | ||
-> Mae: O_O <<if true>> | ||
-> Mae: o_o <<if true>> | ||
-> Mae: \o/ <<if true>> | ||
-> Mae: /o\ <<if true>> | ||
-> Mae: o/ <<if true>> | ||
-> Mae: _o_ <<if true>> | ||
-> Mae: o> <<if true>> | ||
-> Mae: / \ <<if true>> | ||
-> Mae: \ / <<if true>> | ||
-> Mae: ~~ <<if true>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.