2023-10-29 10:00:34 +00:00
|
|
|
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...";
|
|
|
|
jump main;
|
|
|
|
}
|
|
|
|
"Okay!"
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2023-12-07 15:50:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc arthur_talk
|
|
|
|
{
|
|
|
|
@arthur(normal) "Hi! Thanks for talking to me.";
|
|
|
|
@arthur "Do you want my rundown once again?";
|
|
|
|
branch
|
|
|
|
{
|
|
|
|
"Yes!"
|
|
|
|
{
|
|
|
|
@arthur "Okay then!";
|
|
|
|
jump main;
|
|
|
|
}
|
|
|
|
|
|
|
|
"No"
|
|
|
|
{
|
|
|
|
@arthur "Alright!";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proc monika_talk
|
|
|
|
{
|
|
|
|
@monika(leaning) "Okay everyone!";
|
2023-10-29 10:00:34 +00:00
|
|
|
}
|