From 14d74274bc9899514ec2eaf150e37a80d060c27d Mon Sep 17 00:00:00 2001 From: Deacon Hunter <100684231+DELUXEHUNTER@users.noreply.github.com> Date: Mon, 12 Feb 2024 07:50:54 -0500 Subject: [PATCH] commit --- Neoa/DLCS.CS | 8 ++++++-- Neoa/Player.cs | 11 +++++------ 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Neoa/DLCS.CS b/Neoa/DLCS.CS index 211a332..33b9b28 100644 --- a/Neoa/DLCS.CS +++ b/Neoa/DLCS.CS @@ -5,7 +5,7 @@ namespace Neoa { public class YourHome { - public bool YourHome = false; + public bool Dreams = false; public bool DreamEnd = false; //name string Dreamer; @@ -19,6 +19,10 @@ namespace Neoa { Program.DisplayLine(""); } + else + { + + } } @@ -29,7 +33,7 @@ The kings court is a DLC that is completely seperate from the base game. */ public class TKC { - public bool TKC = false; + public bool KCourt = false; public static void TKCIntro() { diff --git a/Neoa/Player.cs b/Neoa/Player.cs index 913e776..b00873d 100644 --- a/Neoa/Player.cs +++ b/Neoa/Player.cs @@ -40,7 +40,8 @@ public class Player public static Stats() { - if (Program.Player.Species == "Human") + + if (Program.Player.Species == "Human") { Program.Player.Health = 105; Program.Player.Mana = 125; @@ -52,8 +53,7 @@ public static Stats() } - - if (Program.Player.Species == "Undead") + else if(Program.Player.Species == "Undead") { if(Program.Player.Subspecies == "Vampire") { @@ -97,7 +97,7 @@ public static Stats() } - if (Program.Player.Species == "Demonic") + else if(Program.Player.Species == "Demonic") { if(Program.Player.Subspecies == "Demon") { @@ -112,8 +112,7 @@ public static Stats() } } + } } - - }