Пример #1
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);
 }
Пример #2
0
 public void Earth(Player player, Challenges challenges)
 {
     TypeWriter("\nEarth is dying!!! Hurry up and get ready to leave quickly. We need to find a new planet!\n");
     TypeWriter($"\nyou have ${player.BankAccount} and you need to buy a ship and suit.\n\nPRESS ENTER");
     ReadLine();
     Clear();
     player.BuyShipAndSuit();
     player.BuyFuel(-100);
 }