public static void Main()
Console.WriteLine("Welcome back to reality.");
Console.WriteLine("You've been out of it for a little while. But you can't escape from responsibility that easily.");
Console.WriteLine("You can't avoid it. All four of them are impatiently waiting in the next room. But you can't tell them the truth about the food stocks being stolen. That would not be wise.");
Console.WriteLine("Remember that yesterday you saw a food truck outside. It could have some supplies. But the sicknesses out there are highly contagious, and it could be contaminated. Would you be willing to poison your group, just to feed them?");
Console.WriteLine("There is also a butcher's room out back with plenty of tools. We have a child with us who could easily go missing. We also have a new member who is a wild card. He could leave at any time. No one would be poisoned. But could you live with yourself? Besides, the guy is a veteran.");
static void MurderOrNah()
Console.WriteLine("Will you kill a resident?");
command = Console.ReadLine();
command = command.ToLower();
if (command.Equals("yes") || command.Equals("yee") || command.Equals("y"))
Console.WriteLine("How moral of you. Murder, what a great decision to make.");
Console.WriteLine("So it has been decided. We will eat tonight. Would you prefer to kill the child? No one would miss him.");
else if (command.Equals("no") || command.Equals("nah") || command.Equals("n"))
Console.WriteLine("So you have decided to search. Wonderful.");
Console.WriteLine("Don't dodge the question.");
Console.WriteLine("Yes or No");
static void WillYouKillJimmy()
Console.WriteLine("Will you sacrifice the child?");
command = Console.ReadLine();
command = command.ToLower();
if (command.Equals("yes") || command.Equals("yee") || command.Equals("y"))
Console.WriteLine("You have decided to kill a child for the sake of survival.");
Console.WriteLine("You walk into the room, and smile at him sweetly. 'Mind helping me with dinner?' You ask.");
Console.WriteLine("He smiled with a sparkle in his eyes. 'Of course! I'd love to!' He replies chirpily.");
else if (command.Equals("no") || command.Equals("nah") || command.Equals("n"))
Console.WriteLine("You've decided to attempt to kill the only man here trained in combat. Okay.");
Console.WriteLine("You walk into the room, and grab his attention by waving. 'Need some help out back.' You simply say.");
Console.WriteLine("Shrugging, he gets up.");
Console.WriteLine("You'll have to pick eventually.");
Console.WriteLine("Yes or no?");
static void NotifyOthersJimmy()
Console.WriteLine("Will you notify the others?");
static void NotifyOthersChris()
Console.WriteLine("Will you notify the others?");
static void TakeResident()
Console.WriteLine("Will you take a trusted resident with you?.");
command = Console.ReadLine();
command = command.ToLower();
if (command.Equals("yes") || command.Equals("yee") || command.Equals("y"))
Console.WriteLine("You decide that it wouldn't be safe enough to go by yourself. But who will you bring?");
Console.WriteLine("Your best friend could come, but he's quite weak, and could get infetcted rather easily.");
Console.WriteLine("Or you could bring the widowed woman, maybe she'll have more knowledge on foods.");
else if (command.Equals("no") || command.Equals("nah") || command.Equals("n"))
Console.WriteLine("You put on some protective gear to save yourself from the diseases outside.");
Console.WriteLine("Without saying anything to notify anyone, you slip out of the building seemingly undetected.");
static void WhoWillYouBring()
Console.WriteLine("Whe do you want to bring? Your best friend or the woman");
command = Console.ReadLine();
command = command.ToLower();
if (command.Equals("best friend") || command.Equals("friend") || command.Equals("bestie") || command.Equals("bf") || command.Equals("james") || command.Equals("b"))
Console.WriteLine("k cool you chose your bf his name is chris and now he's propably gon perish. also his kid will be awfully sad :/");
else if (command.Equals("woman") || command.Equals("brenda") || command.Equals("widowed woman") || command.Equals("widow") || command.Equals("waman") || command.Equals("w"))
Console.WriteLine("k cool you chose el wamen her name is brenda and now she's propably gon perish");
Console.WriteLine("nah thats not cool, put in a proper command ya dingus");