Assignemnt: Project One

Code

    ///Name: Morgan Kaplan
    ///Period: 5
    ///Project Name: Project One
    ///File Name: Card.java
      
      
import java.util.Scanner;
public class P1
{
    public static void main( String[] args)
    {
       Scanner momo=new Scanner(System.in);
        
        String show, go, monster, toe, d, protest, ppl, intro, feel, last;
        
        System.out.println("You turn on the T.V. and there are 3 differnt shows on: Supernatural, The Kardashians, and La La Loopsy.  What show do you watch?  Answer options: Supernatural, Kardashians, Loopsie");
        show=momo.next();
        
if(show.equals("Supernatural")){
            System.out.println("All of a sudden an eerie fog enters the room.  It is so thick you can not see a single thing.  Then bam, you start falling for what seems like hours.  Until finally you hit land.  You pass out from confusion.");
            System.out.print("  You wake up to two extremely attractive boys patting your forehead with a wet cloth, they call themselves Sam and Dean Winchester.  They say you're in danger and are beiing hunted down by a monster.  They offer to take you home with them so they can make sure you're safe while they kill the beast.  Do you go home with them or stay? Answer options: home or stay.");
            go=momo.next();
            
            if(go.equals("stay")){
                System.out.println("You stay and the moster appears.  It opens its mouth as if it abou to eat you.  Do you run or stay.? Answer options: run or stay.");
                monster=momo.next();
                
                if(monster.equals("run")){
                    System.out.println("You run away as fast as you can.  As soon as you're about a mile away from the moster you slip and fall into a lake.  There you are stuck and forced to evolve into a fish.");
                }
                
                if(monster.equals("stay")){
                    System.out.println("The monster opens his mouth really wide so you can see his razor sharp teeth.  You are terrified when suddenly his open mouth turns into a nice smile.  He says hello and you become best friends!");}
            }
             if(go.equals("home")){
                 System.out.println("You follow the boys to their house.  There you find a nice cozy living room with a fire place and christmas tree.  You look up and you and Sam are under the missle toe. Do you kiss him or step away? Answer options: kiss or step.");
                 toe=momo.next();
                 
                 if(toe.equals("kiss")){
                     System.out.println("You close your eyes and lean into kiss him but theres no one there.  You open your eyes and you are back in your living room.  It was all just a dream.");}
                 if(toe.equals("step")){
                     System.out.println("You step away to avoid a kiss when suddenly a monster swoops through the window.  It eats Dean and then is killed by Sam.  You spend the rest of your life fighting monsters.");}}}
                
                        
 if (show.equals("Loopsie")){
  System.out.println("All of a sudden an eerie fog enters the room.  It is so thick you can not see a single thing.  Then bam, you start falling for what seems like hours.  Until finally you hit land.  You pass out from confusion.");
     System.out.print("  You wake up and are surrounded by dolls made with clamation with huge button eyes.  Do you introduce yourself kindly or rudely? Answer options: kind or rude.");
     intro=momo.next();
     
     if (intro.equals("kind")){
         System.out.println("They look at you and a huge smile takes over their faces.  The leader looks at you and says \"You're the chosen one\".  Does this make you happy or sad? Answer options: happy or sad.");
         feel=momo.next();
         
         if (feel.equals("happy")){
             System.out.println("You express how grateful you are to be the chosen one to the La La Loopsies.  The leader looks at you and says \"Our gods will be happy to see you.\" They then pick you up and take you to their sacred ritual place.  There are you thrown into the volcano as a sacrifice for the La La Loopsie gods.");}
         
         if (feel.equals("sad")){
             System.out.println("The La La Loopsies immediately notice your dissapointment and decide you are not the chosen one.  They then take you toa lab and disect you for scientific purposes.");}}
     
     if (intro.equals("rude")){
         System.out.println("Their smiles morph into teeth barring growls.  Red veins start pooping out all over their bodies and their eyes start leaking yellow foam.  Do you eat the foam or leave it be? Answer options: eat or be.");
         last=momo.next();
         
         if (last.equals("eat")){
             System.out.println("Your bones start breaking and you body is contracting.  You turn into a La La Loopsie doll.");}
         
         if (last.equals("be")){
             System.out.println("The La La Loopsies open their mouths and start feasting upon you.");}}}
                       
    if(show.equals("Kardashians")){
                    System.out.println("All of a sudden an eerie fog enters the room.  It is so thick you can not see a single thing.  Then bam, you start falling for what seems like hours.  Until finally you hit land.  You pass out from confusion.");
                    System.out.print("  You open your eyes to find yourself in a huge mansion surrounded by fancy furniture and a camera crew.  Do you go explore the mansion or ask the camera crew what is going on?  Answer options: explore or ask.");
                    d=momo.next();
                    
                    if(d.equals("explore")){
                        System.out.println(" You walk outside to the front yard to see people protesting outside your gate.  Do you approach them and ask why they are protesting or do you turn the sprinklers on them?  Answer options: ask or water.");
                        protest=momo.next();
                        
                    if(protest.equals("ask")){
                        System.out.println(" You walk to the protesters and ask them what this is all about.  One said \" We are sick of you Kardashians wasting all of your not-earned money on stupid expenses and not donationg that extra money to charity.\"  You then realize your a Kardashian and give away all your money.");}
                        
                    if (protest.equals("water")){
                        System.out.println("You turn the sprinklers on them and then walk inside and get a nice facial.");}}
                        
                    if (d.equals("ask")){
                        System.out.println("There are tow camera people which one do you ask? the scrawny looking guy, or the pregnant girl? Answer options: guy or girls.");
                        ppl=momo.next();
                        
                    if (ppl.equals("guy")){
                        System.out.println("You ask the guy what the heck is going on?  He gives you a look of irritation and rolls his eyes and then proceeds to say \" Mrs. Kardashian please stop goofing off and make some drama so we can produce this reality T.V. show.\"");}
                        
                    if (ppl.equals("girl")){
                        System.out.println("You approach the girl and congradulate her on her pregnancy.  She gives you a look filled with horror and disgust.  \" I am not pregnant for the 7th time!  You are the rudest person I have ever met, I quit!!!\"....oops.");}}}
    
    }
                        }  

Picture of Output

Project One