Compare commits

...

3 Commits

Author SHA1 Message Date
Justin 5e8a530dba Changed the color 2025-05-11 14:59:55 -05:00
Justin 53d83a16fb Added all of the intro 2025-05-11 14:59:08 -05:00
Justin d0fad7966a Change the type time to 250 2025-05-11 12:55:52 -05:00
3 changed files with 13 additions and 3 deletions

View File

@ -2,5 +2,14 @@
void Intro::mainIntro(){ void Intro::mainIntro(){
Print::blank_line(); Print::blank_line();
Print::type("The world didn't end with a bang. It ended with a groan.. and the scratching of death fingers against steel shutters."); Print::type("The world didn't end with a bang. It ended with a groan.. and the scratching of death fingers against ");
Print::type("steel shutters.");
Print::type("Pete used to sell shotguns, slugs, and survival tips to deer hunters and doomsday preppers out of his");
Print::type("rundown gun store on the edge of town. Folks called him Shotgun Pete. They laughed at his bunker in the");
Print::type("basement and his endless stockpile of beans and buckshot.");
Print::type("Theyre not laughing now.");
Print::type("Its been 47 days since the dead started walking. The citys overrun. The powers gone. The roads are broken");
Print::type("and the rules are worse.");
Print::type("But Pete? Petes still here. Armed to the teeth. Ready to take back whats his, one shell at a time.");
Print::type("Welcome to Shotgun Pete. Lock and load.");
} }

View File

@ -13,7 +13,7 @@ void Print::type(string text){
char* charArray = new char[a+1]; char* charArray = new char[a+1];
strcpy(charArray, text.c_str()); strcpy(charArray, text.c_str());
int i = 0; int i = 0;
int time = 300; int time = 250;
while(i < a+1){ while(i < a+1){
std::this_thread::sleep_for(std::chrono::milliseconds(time)); std::this_thread::sleep_for(std::chrono::milliseconds(time));

View File

@ -4,7 +4,8 @@
void Title::mainTitle(){ void Title::mainTitle(){
int s = 900; int s = 900;
Print::println("███████╗██╗ ██╗ ██████╗ ████████╗ ██████╗ ██╗ ██╗███╗ ██╗ ██████╗ ███████╗████████╗███████╗"); Print::println("");
Print::println("\033[31m███████╗██╗ ██╗ ██████╗ ████████╗ ██████╗ ██╗ ██╗███╗ ██╗ ██████╗ ███████╗████████╗███████╗");
Sleep::delay(s); Sleep::delay(s);
Print::println("██╔════╝██║ ██║██╔═══██╗╚══██╔══╝██╔════╝ ██║ ██║████╗ ██║ ██╔══██╗██╔════╝╚══██╔══╝██╔════╝"); Print::println("██╔════╝██║ ██║██╔═══██╗╚══██╔══╝██╔════╝ ██║ ██║████╗ ██║ ██╔══██╗██╔════╝╚══██╔══╝██╔════╝");
Sleep::delay(s); Sleep::delay(s);