Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.IO;
- namespace ConsoleBarovia
- {
- class Intro
- {
- Hero hero = new Hero();
- Town town = new Town();
- Crossroads crossRoads = new Crossroads();
- string input;
- public void StartingIntro()
- {
- Console.WriteLine("Welcome to the lands of Barovia stranger!");
- Console.WriteLine("jadajada.intro.com (pft)...TEST..."); //TODO: Write Intro Here
- Console.WriteLine("Tell me... What if you name?");
- input = (Console.ReadLine());
- hero.setName(input);
- Console.WriteLine(" ");
- Console.WriteLine("ah well then, tell me " + input);
- Console.WriteLine("Do you belive in magic?");
- input = (Console.ReadLine());
- if (input == "yes")
- {
- hero.setbelivesInMagic(true);
- Console.WriteLine(" ");
- Console.WriteLine("That is wise of you, good luck young one.");
- }
- else if (input == "y")
- {
- hero.setbelivesInMagic(true);
- Console.WriteLine(" ");
- Console.WriteLine("That is wise of you, good luck young one.");
- Console.ReadLine();
- }
- else
- {
- hero.setbelivesInMagic(false);
- Console.WriteLine(" ");
- Console.WriteLine("You don't? Oh well, I'm sure that after visiting Barovia");
- Console.WriteLine("you will have changed your mind, good luck young one.");
- Console.ReadLine();
- }
- Console.WriteLine("Suddently even though it only felt like a second has passed");
- Console.WriteLine("It's getting dark, the evening fog is creeping over the land.");
- Console.WriteLine("The old man is nowhere to be seen, infront of you theres an crossroards.");
- Console.ReadLine();
- Console.Clear();
- crossRoads.setCrossCounter(+1);
- Console.WriteLine("The sign shows various direction you can travel, which way do you choose?");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment