Advertisement
Guest User

Untitled

a guest
May 2nd, 2025
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. branch collect {
  2. sceneset Norman to Helen
  3. > Norman (happy): "How lucky, there's a candle lying around here!"
  4. take candle_unlit
  5. set candle_collected 1
  6. > Norman (neutral): "It's extinguished, but it's still a good start. And it isn't as much of fire hazard in a dream as it would be in physical realm."
  7. if (see_eternal_flame = 0) {
  8. > Helen (neutral): "It looks like a leftover from Eternal Blaze worshippers. Maybe if we look around, we'll find a stand with an eternal blaze as well?"
  9. } else {
  10. > Helen (neutral): "It looks like another leftover from Eternal Blaze worshippers. We should be able to light it up with eternal fire we saw before."
  11. }
  12. > Norman (neutral): "Huh... if they worship Eternal Blaze I wonder how they ended up with an extinguished candle."
  13. > Helen (neutral): "According to their beliefs, the flame still there, just misplaced in time and space."
  14. > Norman (neutral): "I guess it makes sense if you consider conservation of mass and energy...?"
  15. }
  16.  
  17. branch eternal_flame {
  18. sceneset Norman to Helen
  19. once see_eternal_flame {
  20. if (has candle_unlit) {
  21. > Norman (neutral): "Looks like this is the eternal flame you mentioned earlier. Now let's light our candle up!"
  22. sceneclear
  23. > Info: "Press [red]X[/] when facing an object to use an item on it."
  24. } else {
  25. > Helen (neutral): "A stand with an eternal flame? Looks like it was left here by the Eternal Blaze worshippers."
  26. > Norman (neutral): "Too bad I can't take the entire stand with me..."
  27. }
  28. } else if (has candle_unlit) {
  29. > Norman (neutral): "Let's light our candle up!"
  30. sceneclear
  31. > Info: "Press [red]X[/] when facing an object to use an item on it."
  32. } else {
  33. > Helen (neutral): "Putting aside Eternal Blaze cult, this flame has such a lovely colour, don't you think?"
  34. }
  35. }
  36.  
  37. branch eternal_flame_present {
  38. sceneset Norman to Helen
  39. > Helen (worried): "We might want to avoid putting random things in the eternal flame. It can even consume things that are usually considered not flammable."
  40. }
  41.  
  42. branch eternal_flame_present.candle_unlit {
  43. sceneset Norman to Helen
  44. give candle_unlit
  45. take candle
  46. set candle_lit 1
  47. > Norman (happy): "Alright, that's our first light source for the summoning circle! Now let's find [red]the other six[/]."
  48. > Norman (neutral): "We also need some kind of [red]dark red paint[/] and [red]a painting utensil[/red]."
  49. }
  50.  
  51. branch eternal_flame_present.candle {
  52. sceneset Norman to Helen
  53. > Norman (happy): "The flame is still going strong!"
  54. }
  55.  
  56. branch goback {
  57. sceneset Norman to Helen
  58. > Norman: "We are still not finished here."
  59. sceneclear
  60. special move_left
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement