Ejemplo n.º 1
0
 public void PlanetFour(Player player, Challenges challenges)
 {
     TypeWriter("\nWelcome to the final planet! you must complete this challenge to move on\n.");
     challenges.PlanetFourChallenge(player);
     player.Market(-100);
     TypeWriter("Congrats you made it!\nBuy a house with all of the money you saved\n");
     player.BuyHouse();
 }
Ejemplo n.º 2
0
 public void PlanetThree(Player player, Challenges challenges)
 {
     TypeWriter("\nWelcome to Planet 3! you must complete this challenge to move on\n.");
     challenges.PlanetThreeChallenge(player);
     player.Market(-150);
     TypeWriter("Thats the last thing so lets get some fuel for the next planet!\n");
     player.BuyFuel(-100);
 }