Compare commits
3 Commits
8659174a14
...
5e8a530dba
Author | SHA1 | Date |
---|---|---|
|
5e8a530dba | |
|
53d83a16fb | |
|
d0fad7966a |
|
@ -2,5 +2,14 @@
|
|||
|
||||
void Intro::mainIntro(){
|
||||
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("They’re not laughing now.");
|
||||
Print::type("It’s been 47 days since the dead started walking. The city’s overrun. The power’s gone. The roads are broken");
|
||||
Print::type("and the rules are worse.");
|
||||
Print::type("But Pete? Pete’s still here. Armed to the teeth. Ready to take back what’s his, one shell at a time.");
|
||||
Print::type("Welcome to Shotgun Pete. Lock and load.");
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@ void Print::type(string text){
|
|||
char* charArray = new char[a+1];
|
||||
strcpy(charArray, text.c_str());
|
||||
int i = 0;
|
||||
int time = 300;
|
||||
int time = 250;
|
||||
|
||||
while(i < a+1){
|
||||
std::this_thread::sleep_for(std::chrono::milliseconds(time));
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
|
||||
void Title::mainTitle(){
|
||||
int s = 900;
|
||||
Print::println("███████╗██╗ ██╗ ██████╗ ████████╗ ██████╗ ██╗ ██╗███╗ ██╗ ██████╗ ███████╗████████╗███████╗");
|
||||
Print::println("");
|
||||
Print::println("\033[31m███████╗██╗ ██╗ ██████╗ ████████╗ ██████╗ ██╗ ██╗███╗ ██╗ ██████╗ ███████╗████████╗███████╗");
|
||||
Sleep::delay(s);
|
||||
Print::println("██╔════╝██║ ██║██╔═══██╗╚══██╔══╝██╔════╝ ██║ ██║████╗ ██║ ██╔══██╗██╔════╝╚══██╔══╝██╔════╝");
|
||||
Sleep::delay(s);
|
||||
|
|
Loading…
Reference in New Issue