Skip to content

feliciazhang/CatusQuest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

✨ CATU'S QUEST ✨

👻 HAPPY 24TH BIRTHDAY CATU! do u accept this quest...?

✂️ instructions for glennjamin

  • add photos to static/img
  • add audio files to static/audio
  • add data to src/data/scenes.js (example below)
const catusRoom = {
  descriptions: [
    {
      text:
        "> You are asleep in bed until a faint sks sks sks sound wakes you up. Wait a damn minute…",
      img: "img/example.png",
    },
    {
      text:
        "> Eek! You open your eyes to see Ymer on your curtain. He’s scratching at something…\n> A milky white light starts to fill the room.", // use \n character for new lines
      img: "",
    },
  ],
  question: "What do you do?",
  options: [
    {
      text: "Go back to bed",
      leadsTo: null, // use null if no way forward
      message:
        "Uh oh! The white light burns through you and the rest of the known universe. Try again.",
      audio: "audio/example.mp3",
    },
    {
      text: "Investigate",
      leadsTo: "zachsCave", // name of next scene object
      message: "Brave choice! #girlboss",
      audio: "",
    },
  ],
  audio: "audio/example.mp3",
  img: "img/example.png",
};