Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 12, 2024
1 parent a31b2a3 commit 14d7427
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
8 changes: 6 additions & 2 deletions Neoa/DLCS.CS
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Neoa
{
public class YourHome
{
public bool YourHome = false;
public bool Dreams = false;
public bool DreamEnd = false;
//name
string Dreamer;
Expand All @@ -19,6 +19,10 @@ namespace Neoa
{
Program.DisplayLine("");
}
else
{

}

}

Expand All @@ -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()
{
Expand Down
11 changes: 5 additions & 6 deletions Neoa/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public class Player

public static Stats()

Check failure on line 41 in Neoa/Player.cs

View workflow job for this annotation

GitHub Actions / build

Method must have a return type

Check failure on line 41 in Neoa/Player.cs

View workflow job for this annotation

GitHub Actions / build

More than one protection modifier

Check failure on line 41 in Neoa/Player.cs

View workflow job for this annotation

GitHub Actions / build

Method must have a return type

Check failure on line 41 in Neoa/Player.cs

View workflow job for this annotation

GitHub Actions / build

More than one protection modifier
{
if (Program.Player.Species == "Human")

if (Program.Player.Species == "Human")
{
Program.Player.Health = 105;
Program.Player.Mana = 125;
Expand All @@ -52,8 +53,7 @@ public static Stats()

}


if (Program.Player.Species == "Undead")
else if(Program.Player.Species == "Undead")
{
if(Program.Player.Subspecies == "Vampire")
{
Expand Down Expand Up @@ -97,7 +97,7 @@ public static Stats()

}

if (Program.Player.Species == "Demonic")
else if(Program.Player.Species == "Demonic")
{
if(Program.Player.Subspecies == "Demon")
{
Expand All @@ -112,8 +112,7 @@ public static Stats()

}
}

}
}


}

0 comments on commit 14d7427

Please sign in to comment.