Skip to content

Commit

Permalink
V.0.0.0 || Gameplay || Additions, rewrites, ect...
Browse files Browse the repository at this point in the history
  • Loading branch information
DELUXEHUNTER authored Feb 15, 2024
1 parent 168fa63 commit 4218dc5
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 29 deletions.
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
## I copied this file from a template
# GH Files


## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

# I added
*.github/
# User-specific files
*.rsuser
Expand Down
7 changes: 4 additions & 3 deletions Docs/Lore/Lore.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Neoa, sometimes referred to as the Aedonian Kingdom, or greater Aedon in some ca
#### Aedon
Aedon is both the capital and the very first city that was founded in Neoa, built by the original Neoan king Avalon. To this day, it remains the largest and richest city within Neoa, filled with history from even before its creation, and it even remains home to the Royal Neoan Families that have ruled over Neoa. Aedon has some of the strictest laws due to it being the capital and home to the royal Neoan family. It also has more experienced guards that patrol its streets.



---------------------------------------------------------------
### Anaxia
<!-- I don't know what to write for anaxia and I think it'd be better if someone else writes something for it due to my inability to think of any ideas -->
Expand All @@ -44,9 +46,6 @@ Avalon is the patron of Neoa, He is the founder of Neoa, and the very first king
#### Iedelan,<br>Anaxian hero



#### Lexian

#### Tau-an,<br>The Undead.
<!-- Idea Entry -->
The Immortal undead ancestor of all things dead. Considered the creator and master of the first undead until having been overthrown by the very dead he raised, as the more he brought back the more they learned and became sentient giving themselves thoughts and minds to use. Not one of the first vampires, but after the vampiric rise he has taken dominion over vampires giving them blessings and everything.
Expand All @@ -71,3 +70,5 @@ The Dream realm is the realm that all dreams of almost every being, resides and
This mysterious voice guides you on your adventure, and rarely speaks to you. Its unknown if its malicious or intends to help you the best it can. Until its proven, its best you do what it says without questioning it too much. It goes by many names, typically all variants of The mystical voice.


#### Lexian,<br>The King of Neoa.

1 change: 1 addition & 0 deletions Docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Player creation.



### Early Access Prototype, V.0.0.1.<br>Part 1:
<!-- Marking the very first release and actual EXE/playable product, Whenever it is deemed ready for release we will release it. -->

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2 changes: 1 addition & 1 deletion Neo.sln
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ Global
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {AEA4BD74-EF88-4F97-88D7-F6F968B115D6}
EndGlobalSection
EndGlobal
EndGlobal
9 changes: 6 additions & 3 deletions Neoa/DLCS.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// This is a future CS File that will remain mostly unused until the entire game is complete or most of the game//the part that completes it. For now this has no use, not really DLC's because you don't have to download them
//Future CS file used for now.
/*
namespace Neoa
{
//YourHome is the dream DLC that triggers dreams sometimes when you sleep or are knocked out these dreams are sometimes eerie and creepy on purpose(as creepy as I can get)
public class YourHome
{
Expand Down Expand Up @@ -34,9 +36,10 @@ public class TKC
public static void TKCIntro()
{
Program.DisplayLine(ConsoleColor.Yellow,"King", "Hiiii");//Literally just temporary text

Program.DisplayLine(ConsoleColor.Yellow,"King", "Hiiii");
}
}
}
*/
1 change: 1 addition & 0 deletions Neoa/Encounters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,5 @@ public static void Combat(bool random, string enemyName, int enemyPower, int ene
Console.ReadKey();
}
}
*/
2 changes: 1 addition & 1 deletion Neoa/Neoa.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
</Project>
</Project>
9 changes: 5 additions & 4 deletions Neoa/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class Player
//Physical/Magical(Encounters)
public int Health = 100;
public int Mana = 100;
public int Blood = 0;
public int BloodMana = 0;
public int Damage = 10;
public int Blooddamage = 0;
public int Armor = 0;
Expand Down Expand Up @@ -70,7 +70,7 @@ public static void SetupStats()
if (Program.Player.Subspecies == "Vampire")
{
Program.Player.Health = 125;
Program.Player.Mana = 200;
Program.Player.Mana = 100;
Program.Player.Damage = 10;
if (Program.Player.Ancestor == "Tau-an")
Program.Player.AncestralFavor = 5;
Expand All @@ -82,7 +82,7 @@ public static void SetupStats()

//Vampiric
Program.Player.Blooddamage = 2;
Program.Player.Blood = 100;
Program.Player.BloodMana = 100;
Program.Player.Bloodthirst = 1;

}
Expand Down Expand Up @@ -123,7 +123,7 @@ public static void SetupStats()
if (Program.Player.Subspecies == "Demon")
{
Program.Player.Health = 175;
Program.Player.Mana = 400;
Program.Player.Mana = 300;
Program.Player.Damage = 15;
Program.Player.Armor = 2;
Program.Player.DivineFavor = -30;
Expand All @@ -133,6 +133,7 @@ public static void SetupStats()

//Demonic
Program.Player.Bloodthirst = 5;
Program.Player.BloodMana = 100;

}
}
Expand Down
3 changes: 3 additions & 0 deletions Neoa/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ public static void Prologue()
}



// YourHome.Intro();

}
Expand Down Expand Up @@ -350,6 +351,8 @@ public static void Part1()
Player.NeoanExchange += 1; Player.NeoanMark += 24;

Console.WriteLine();





Expand Down
11 changes: 3 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<!--- A note for anyone who contributes to this game in the future, as of now February 13th 2024 I will have to leave in a few months for three months and I will be unable to access any of my electronic devices except for my phone, which I will be unable to use github, discord, or anything that is not google docs or call and messaging service. I'm extremely sorry for this inconvincience and I hope it doesn't cause too many problems. -->

<h1 align="center"><img align="left" src="Docs/Images/Neoan-Crown-Icon.png">
Neo<br>Land of Neoa</h1>
Welcome to the land of Neoa. The first game I've ever made or worked on, it might not be the best game I'll ever make or the best game I've ever made, but I'm trying my hardest to do my best and make this game. This isn't going to be something that is worked on every single day, so it might take some time to develop. All we are trying to do is have fun making this game and giving people something to do when they are bored.
<br>
A future thank you to anyone who contributes. Thank you all for your hard work. I genuinely appreciate it, and I want you to know I couldn't have done it without you all. And here's a thank you to anyone who plays the game. That means a lot too, because we have put a lot of time into making this game, and it means a lot that you play and enjoy our game.
<br><br><br>

There are many plans for this game that will help keep the game interesting, like future DLCS (not really DLCS) that we will be making in the future. Alongside many other things, like unique modes, for now we will be working on the base game. For obvious reasons, a game shouldn't have addons until it is fully developed. Now here are a few of our future plans for this game. The main plan for this game is to have a long, playable text-based game with some fights and encounters and many different semi-unique systems, as well as eventually making this game playable online in a browser. Hopefully, we will have a comprehendable story and lore for all to enjoy.
Neo<br>Lands of Neoa</h1>
This is a text-based game made using C#/Csharp. It is also the first game I have ever developed and tried to make. It might not be the best game ever, but we are trying to make it as fun and as playable as we possibly can. There are many plans for this game in the very distant and near future that we hope will improve the game even more. A future thank you to anyone who contributes to the game in the distant future. It means a lot.
<br><br>

0 comments on commit 4218dc5

Please sign in to comment.