23 lines
371 B
Plaintext
23 lines
371 B
Plaintext
|
var arthur = "Arthur";
|
||
|
var monika = "Monika";
|
||
|
|
||
|
proc main
|
||
|
{
|
||
|
@arthur(normal) "Welcome to the Scene Test!";
|
||
|
@arthur(happy) "Feel free to move around.";
|
||
|
|
||
|
branch
|
||
|
{
|
||
|
"No! Sooth me with your voice one more time."
|
||
|
{
|
||
|
@monika(leaning) "Really? Him?!?!";
|
||
|
@monika(leaning) "If you say so...";
|
||
|
@monika(none);
|
||
|
jump main;
|
||
|
}
|
||
|
"Okay!"
|
||
|
{
|
||
|
@arthur(none);
|
||
|
}
|
||
|
}
|
||
|
}
|