From 17c79c7fde903d022adb15e7c731d9f829d6721c Mon Sep 17 00:00:00 2001 From: Deacon Hunter <100684231+DELUXEHUNTER@users.noreply.github.com> Date: Wed, 14 Feb 2024 08:32:30 -0500 Subject: [PATCH] V.0.0.0 || Prologue Finished The prologue will be considered finished and the rest of the game may be worked on but this isn't going to be the final version of it and there might be many other changes in the future as we get more ideas --- Neoa/Program.cs | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/Neoa/Program.cs b/Neoa/Program.cs index 0fd4ac1..4ed27ff 100644 --- a/Neoa/Program.cs +++ b/Neoa/Program.cs @@ -266,14 +266,30 @@ public static void Prologue() Console.WriteLine(); DisplayLine(ConsoleColor.White,"narrator","looking around the room you inspect it closer noticing a misplaced dresser with its drawer partially open"); - DisplayLine(ConsoleColor.White,"narrator","you have multiple options here.. you could sleep or you could inspect the dresser and fix it?"); + DisplayLine(ConsoleColor.White,"narrator","you have multiple options... you could sleep or you could inspect the dresser and fix it?"); + Console.WriteLine("{Possible Choices: (S)leep, (I)nspect}); - //First choice but I don't know what to do - //I don't know how to do the input here but a few options are sleeping or inspecting the dresser - DisplayLine(ConsoleColor.White,"You","",0); + Console.WriteLine(); - - + DisplayLine(ConsoleColor.Green,"You","",0); + input = Console.ReadLine(); + while(input.ToLower != "s" && input.ToLower != "i") + { + DisplayLine(ConsoleColor.White,"narrator",$"{Player.Name} just stands there doing nothing") + Console.WriteLine("{Possible Choicees: (S)leep, (I)nspect; + } + if(input.ToLower == "i") + { + //NeoanExchange Papers are used to give a certain amount of Marks when turned in at a bank or some stores that will appear in the future + //Int still needs to be added + Player.NeoanExchange += 1; + DisplayLine(ConsoleColor.White,"narrator","searching through the drawers you find a piece of paper with a royal signature, for now you decide to put the paper back not knowing what to do with it"); + + } + else if(input.ToLower == "s") + { + DisplayLine(ConsoleColor.White,"narrator","you decide its best you sleep now and worry about your room later on.. laying in the bed you find it hard to sleep until eventually you find a comfortable spot in your bed"); + } } //A section will be split into multiple parts unless theres a better Idea I don't really know why I want this but I do static void Section1() @@ -322,7 +338,9 @@ public static void Death() Console.WriteLine($"Species: {Player.Species}/{Player.Subspecies}"); Console.WriteLine($"Ethnicity: {Player.Ethnicity}"); Console.WriteLine($"Ancestor: {Player.Ancestor}"); - + + Console.WriteLine(); + Console.WriteLine("Stats"); Console.WriteLine($"Sanity: {Player.Sanity}"); Console.WriteLine($"Divine & Ancestral Favor: {Player.DivineFavor}, {Player.AncestralFavor}");