Skip to content

Commit

Permalink
Code Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 12, 2024
1 parent 50760ae commit 72e6690
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Neoa/Encounters.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
////The Encounter system will constantly need to be changed, there is no set way
/* The Encounter system will constantly need to be changed, there is no set way

Check failure on line 1 in Neoa/Encounters.cs

View workflow job for this annotation

GitHub Actions / build

End-of-file found, '*/' expected

Check failure on line 1 in Neoa/Encounters.cs

View workflow job for this annotation

GitHub Actions / build

End-of-file found, '*/' expected
namespace Neoa
{
public class Encounters
Expand Down
6 changes: 3 additions & 3 deletions Neoa/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static void SetupStats()
Program.Player.Health = 125;
Program.Player.Mana = 200;
Program.Player.Damage = 10;
Program.Player.BloodDamage = 2;
Program.Player.Blooddamage = 2;
if (Program.Player.Ancestor == "Tau-an")
Program.Player.AncestralFavor = 5;
else if (Program.Player.Ancestor != "Tau-an")
Expand Down Expand Up @@ -92,7 +92,7 @@ public static void SetupStats()
Program.Player.Mana = 76;
Program.Player.Damage = 17;
Program.Player.Armor = 5;
Program.Player.DivieFavor = -35;
Program.Player.DivineFavor = -35;
Program.PLayer.AncestralFavor = -50;
Program.Player.Sanity = -300;
Program.Player.Reputation = -60;
Expand All @@ -110,7 +110,7 @@ public static void SetupStats()
Program.Player.DivineFavor = -30;
Program.Player.AncestralFavor = -200;
Program.Player.Sanity = 450;
Program.Player.Reputation - 100;
Program.Player.Reputation -100;

}
}
Expand Down
2 changes: 1 addition & 1 deletion Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static void TitleScreen()
Console.WriteLine();

// Ask player's gender
DisplayLine(Console.Color.Read, "The Mystical Voice", $"What is your gender, {Player.Name}?:");
DisplayLine(ConsoleColor.Red, "The Mystical Voice", $"What is your gender, {Player.Name}?:");
Console.WriteLine("{Possible answers: Male, Female}");

Console.WriteLine();
Expand Down

0 comments on commit 72e6690

Please sign in to comment.