diff --git a/Nana_NutHouse.java b/Nana_NutHouse.java new file mode 100644 index 00000000..e4059dd5 --- /dev/null +++ b/Nana_NutHouse.java @@ -0,0 +1,47 @@ +import java.util.Scanner; +import java.util.Random; + +public class Nana_NutHouse { + private int selectNumber; + private boolean discoverIngredients; + private int nSugarCubes; + private int nCandyFlowers; + private int nGlutenFreeFlourPower; + + public Nana_NutHouse() { +//add method for nanahouse where if you get the number right you get a gluten-free cake for Kandy Kastle --> + } + + public int chocoBridgeNumber() { + if (//number is odd, bridge breaks, and lose one life) { + //if statement is true + } else { + //false + } + return this.selectNumber; + //how do I make it so the chocolate bridge breaks if an odd number is typed ? + //advance to nana nut house if even number is typed? if, else + } + +//peppermint forest change position to #20 + public boolean scavengerHunt() { + return this.discoverIngredients; + //hide sugar, candy, and gluten-free flour for Nana's home. if found advance straight to Nana's house + } + + public int findSugarCubes() { + //if land on certain color, sugar cube found + //how do I create a baseline sugar cube amount + } + + + //scanner class needed + //or use random number generator within a range + //hide a peppermint candy on trail and if found, advance to peppermint forest + // how many gingerbreads in the bag, then you advance + + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + Random random = new Random(); + } +} diff --git a/PathPlaces.java b/PathPlaces.java new file mode 100644 index 00000000..b1e13e10 --- /dev/null +++ b/PathPlaces.java @@ -0,0 +1,20 @@ + +public class PathPlaces { + + protected String name; + protected int colorBlocks; + protected int selectNumber; + protected int secretObjects; + +public PathPlaces() { + this.name = name; + this.colorBlocks = colorBlocks; + this.selectNumber = selectNumber; + this.secretObjects = secretObjects; +} +//all need trivea question +// attributes +// constructor +//random number +//random objects +} \ No newline at end of file