best when viewed in low light

4.20.2013

I think in code now

animate:
    actions:
        - { action: character.show, name: phoebe, position: center, speed: slow }
    after:
        dialog:
              speaker: phoebe
              style: all_caps
              text: "ZOMG! MY BRAIN ONLY WORKS IN CODE NOW!"
              after: phoebe_reacts
phoebe_reacts:
    dialog:
         speaker: phoebe
         style: normal
         text: "I guess the only solution is..."
         after:
             choice:
                 options:
                     - text: "...turn off my computer and cry myself to sleep!"
                       selected:
                           increment:
                                         cry_baby: 1
                           action: oh_nevermind
                      - text: "...become an itinerant laborer and organic farm hand!"
                        selected:
                            increment:
                                         okay_hippie: 1
                            action: oh_nevermind
                       - text: "...munch and munch til I'm done with the crunch!"
                         selected:
                             increment:
                                          keep_on: 1
                             action: oh_nevermind

oh_nevermind:
    if:
        test: { cry_baby: 1 }
        then:
            dialog:
                speaker: phoebe
                style: whiny_baby
                text: "whaaaaaaah!"
                after: fin
    else:
         if:
             test: { okay_hippie: 1 }
             then:
                 dialog:
                     speaker: phoebe
                     style: sarcastic
                     text: "Everyone has an escape plan..."
                     after: fin
        else:
            dialog:
                speaker: phoebe
                style: peppy
                text: "Go girl! You got this!"
                after: fin
fin:
    animate:
        actions:
            - { action: character.remove, name: phoebe, speed: fast }
        after:

No comments:

Post a Comment

In the past...