public static void Main()
Console.WriteLine("Choose a weapon");
Console.WriteLine("1. sword");
Console.WriteLine("2. spear");
Console.WriteLine("3. axe");
string choice = Console.ReadLine();
int wpnChoice = Int32.Parse(choice);
weapon = weapon + wpnChoice;
Console.WriteLine("A sword? You a noble or something?");
Console.WriteLine("A spear? We've got a professional on our hands.");
Console.WriteLine("An axe? Alright Gimli, good luck.");
Console.WriteLine("So you have chosen...fists");
Console.WriteLine("You arrive at the house, go in?");
Console.WriteLine("1. yes");
Console.WriteLine("2. no");
choice = Console.ReadLine();
int entr = Int32.Parse(choice);
if (entr == 1 && weapon == 2)
Console.WriteLine("Sorry this door has an anti-spear barrier, it refuses to enter, you are reduced to fist fighting");
Console.WriteLine("A giant rat waits for you, what do you do?");
Console.WriteLine("1. attack it");
Console.WriteLine("2. pet it");
choice = Console.ReadLine();
int ch1 = Int32.Parse(choice);
if (ch1 == 1 && weapon == 1)
Console.WriteLine("You stab the rat with your sword, it is dead.");
else if (ch1 == 1 && weapon == 3)
Console.WriteLine("You chop the rat in half, it is dead");
else if (ch1 == 1 && weapon == 0)
Console.WriteLine("You try to punch the rat but it bites your fingers, you have caught rabies and will perish shortly");
else if (ch1 == 2 && weapon == 0)
Console.WriteLine("You crouch to pet the rat with your bare hands. It looks at you with its beady eyes and exclaims in a booming voice");
Console.WriteLine("Rat: i never doubted you.");
if (ch1 == 2 && weapon != 0)
Console.WriteLine("The rat is your friend now :)");
Console.WriteLine("ok bye");