a munch adventure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

132 line
3.6 KiB

  1. stories.push({
  2. id: "fen-snack",
  3. name: "Fen's Food",
  4. sounds: [
  5. "sfx/digested-test.ogg",
  6. "loop/fen-stomach.ogg",
  7. "loop/fen-intestines.ogg",
  8. "loop/fen-bowels.ogg"
  9. ],
  10. intro: {
  11. start: "stomach"
  12. },
  13. world: {
  14. stomach: {
  15. id: "stomach",
  16. name: "Stomach",
  17. desc: "A hot, wet, steamy prison.",
  18. move: (room, state) => {
  19. print(["You slide into Fen's humid stomach."]);
  20. },
  21. enter: (room, state) => {
  22. playLoop("loop/fen-stomach.ogg");
  23. },
  24. exit: (room, state) => {
  25. stopLoop("loop/fen-stomach.ogg");
  26. },
  27. hooks: [
  28. ],
  29. actions: [
  30. {
  31. name: "Rub",
  32. desc: "Knead on the muscular folds that surround your tasty little body",
  33. execute: (room, state) => {
  34. print(["You rub all over your prison's walls. Fen's stomach doesn't respond."]);
  35. }
  36. },
  37. {
  38. name: "Submit",
  39. desc: "Let Fen digest you",
  40. execute: (room, state) => {
  41. print(["You slump down in the acidic pit, curling up as it begins to churn you down to chyme. Fen's stomach snarls and bubbles for the next few minutes...and then you're gone~",newline,"Nothing's left but a bit of padding on your predator's hips..."]);
  42. goToRoom("digested", state);
  43. }
  44. }
  45. ],
  46. exits: {
  47. "down": {
  48. "target": "intestines",
  49. "desc": "Push yourself deeper into the crux",
  50. move: (room, state) => {
  51. print(["You manage to push yourself down through the valve at the base of the crux's fetid stomach."]);
  52. },
  53. hooks: [
  54. (room, exit, state) => {
  55. if (Math.random() < 0.5) {
  56. print(["Fen's stomach clenches and ripples, smothering your face in wet flesh and keeping you nice and trapped."]);
  57. return false;
  58. } else {
  59. return true;
  60. }
  61. }
  62. ]
  63. }
  64. }
  65. },
  66. intestines: {
  67. id: "intestines",
  68. name: "Intestines",
  69. desc: "Labyrinthine guts, winding on and on...",
  70. move: (room, state) => {
  71. print(["Your squirming body glides into the crux's tight, snaking guts."]);
  72. },
  73. enter: (room, state) => {
  74. playLoop("loop/fen-intestines.ogg");
  75. },
  76. exit: (room, state) => {
  77. stopLoop("loop/fen-intestines.ogg");
  78. },
  79. exits: {
  80. "up": {
  81. target: "stomach",
  82. desc: "Writhe back into Fen's roiling stomach"
  83. },
  84. "down": {
  85. target: "bowels",
  86. desc: "Push yourself even deeper into your predator's body"
  87. }
  88. },
  89. hooks: [
  90. ]
  91. },
  92. bowels: {
  93. id: "bowels",
  94. name: "Bowels",
  95. desc: "Cavernous bowels, rippling and squeezing over your bare skin",
  96. move: (room, state) => {
  97. print(["You enter the beast's humid bowels, taking shallow, stifled breaths of the musky air."]);
  98. },
  99. enter: (room, state) => {
  100. playLoop("loop/fen-bowels.ogg");
  101. },
  102. exit: (room, state) => {
  103. stopLoop("loop/fen-bowels.ogg");
  104. },
  105. exits: {
  106. "up": {
  107. target: "intestines",
  108. desc: "Squirm up higher"
  109. }
  110. },
  111. hooks: [
  112. ]
  113. },
  114. digested: {
  115. id: "digested",
  116. name: "Fen's Hips",
  117. desc: "You look good on him, at least~",
  118. enter: (room, state) => {
  119. playLoop("loop/fen-intestines.ogg");
  120. playSfx("sfx/digested-test.ogg");
  121. },
  122. exit: (room, state) => {
  123. stopLoop("loop/fen-intestines.ogg");
  124. },
  125. }
  126. }
  127. });