Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
Update character and main game window
Browse files Browse the repository at this point in the history
Changed character
- Lunar -> Euna

Added more character and plan
  • Loading branch information
NotRealSean committed Nov 7, 2023
1 parent d9ede40 commit dd56a80
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 34 deletions.
64 changes: 42 additions & 22 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -1,28 +1,48 @@
using System;
using tui_netcore;
using VNLib;
namespace Setup {
public class mainGame {
public static void Main() {
while (true) {
Tui window = new Tui();
window.Title = " Hello World ";
window.Body = "Try say hello world!";
string answer = window.DrawInput();
if (answer.ToLower() == "help") {
window.Body = "Welcome to help page\nCommand:\n\thello world!\n\texit";
window.DrawOk();
namespace Setup
{
public class mainGame
{
public static void Main()
{
Tui win = new Tui();
win.Title = " Test game ";
while (true)
{
win.Body = "Please select character story below.";
string charSelect = win.DrawList(new List<string>() {
"Euna",
"Exit"
});
if (charSelect == "Exit")
{
break;
}
switch (charSelect)
{
case "Euna":
Game.Story.Euna();

break;
}

}
Console.Clear();
}
if (answer.ToLower() == "hello world!") {
window.Body = "Hello world!";
window.DrawOk();
}
else if (answer.ToLower() == "exit") {
window.Body = "Goodbye!";
window.DrawOk();
break;
}
}
namespace Game
{
public class Story
{
public static void Euna()
{
Tui win = new Tui();
win.Body = "Test text";
win.DrawOk();

}
}
}
}
}
}
33 changes: 21 additions & 12 deletions gamePlanStuff/_character.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
Nai(14-15/F) //My oc
Description:
A cute little mage(?) girl with long white hair even longer than her height itself. She is a quiet shy little girl that carry her paint tool around. If you found her around,
Leave her alone. She is not good at comuticate with stranger or want to stand out but her small body with artist cloth grap attention for people around her.
Most of the time she just run away from people or sometimes she just use her magic to teleport away.
Main character
Iuna(15-16 | F)
Bad backstory
Paint
Slave(Former)
Blue hair
Introvert
Emotionless(?)
(Blue archive Mutsuki)(15 | F)
Gray ending
Good at keeping secret(may have a lot of secret)
Brat

There is strange thing about her. Because of she is stand out so much, Bandits is always try to get her but she always escape and bandits are just gone missing.
No one know how she escape or what happened to those bandits and the only person who know is "him" who is she call master.

Story 1:

Story 2:

Sub character
Nai(?? | F)
Barrier
Maid
Slave(Former)
(Blue archive Hoshino)(17 | M)
(Miku Nakano)(16 | F)
NO SUFFER
Dandere
41 changes: 41 additions & 0 deletions gamePlanStuff/char.Euna.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[Plan]
+ Start with 2 kids run throught the storm while few bandits after them
- Euna wake up from nightmare in the bed
- Euna slowly walk down stair and meet her partner
- Her partner greeting her(and introduct her here)
- Both of them enjoy breakfast
- Some "event" happened

[Prologue]
rumble rumble
thud thud thud thud
"Follow them! They can't get that far!"
A bandit yall for their group to chase after 2 little girls in the storm.
"Let's go Euna, We're almost country border now." Euna's friend said.
They continue to run, run, and run. Meanwhile group bandits still follow them.
"I can see it now, the border. We have to be faster" Euna's friend said.
"Yes, We finally escaped from this hell" Euna said.
They continue running.
"EUNA!, WATCH OU-"
Euna's friend pushed Euna.
An arrow from bandit hit her friend leg.
"*****!"
Euna panic from what she see.
"Just run Euna, You have to survive" Euna's friend said.
"NO, We have to go together."
Euna said that while trying to pull arrow out from her friend leg.
"Aaahh! That's hurt Euna."
Euna doesn't care and try to pull that arrow out of her friend leg.
"But we promise to escape together." Euna said.
"I think I can't keep that promise... I'm sorry" Euna's friend respond.
Group of bandit is closing up at any moment while Euna helping her friend.
"I'm truely truely sorry..." Euna's friend said
Euna's friend rise her hand to Euna.
"I hope we can meet again someday if I survive this."
"somehow..." Euna's friend said that with smile
"NOO-"
A barrier from Euna's friend push her really fash that her body just barely pass the border barrier.
Euna look up.
Her friend being pickup by bandits and drag her away in front of her eyes.

[1st color]
Binary file modified obj/Debug/net7.0/Cli-Novel.dll
Binary file not shown.
Binary file modified obj/Debug/net7.0/Cli-Novel.pdb
Binary file not shown.
Binary file modified obj/Debug/net7.0/ref/Cli-Novel.dll
Binary file not shown.
Binary file modified obj/Debug/net7.0/refint/Cli-Novel.dll
Binary file not shown.

0 comments on commit dd56a80

Please sign in to comment.