Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- cutscene from Re:creation by Elias Daler
- -- see it here: http://i.imgur.com/yB0Hw90.gif
- local cat = getEntityByTag("CAT")
- local cutscene = {
- {
- type = ActionType.Dialogue,
- dialogue = {
- {
- entity = cat,
- text = { "meow_meow_pop_quiz", "pop_quiz" },
- choices = {
- {
- text = "yes",
- f = function()
- cutsceneGoTo("ANSWERED_YES")
- end
- },
- {
- text = "no",
- f = function()
- cutsceneGoTo("ANSWERED_NO")
- end
- }
- }
- }
- }
- },
- {
- tag = "ANSWERED_YES",
- type = ActionType.Dialogue,
- dialogue = {
- {
- entity = cat,
- text = { "incorrect" },
- }
- }
- },
- {
- tag = "ANSWERED_NO",
- type = ActionType.Dialogue,
- dialogue = {
- {
- entity = cat,
- text = { "i_thought_you_would" },
- portraitName = "sad"
- },
- {
- entity = cat,
- text = { "silly_me" },
- portraitName = "shrug"
- }
- }
- }
- }
- return cutscene
Advertisement
Add Comment
Please, Sign In to add comment