-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDesign.java
More file actions
32 lines (27 loc) · 2.44 KB
/
Design.java
File metadata and controls
32 lines (27 loc) · 2.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
public class Design {
public static final String RESET = "\033[0m"; // Reset to default color
public static final String RED = "\033[31m"; // Red color code
public static final String GREEN = "\033[32m";
public static final String BLUE = "\033[34m";
public static final String mysticMayhem =
"\033[34m" +
" __ __ __ __ _____ _______ _____ _____ __ __ __ __ _ _ ______ __ __ \n" +
" | \\/ | \\ \\ / / / ____| |__ __| |_ _| / ____| | \\/ | /\\ \\ \\ / / | | | | | ____| | \\/ |\n" +
" | \\ / | \\ \\_/ / | (___ | | | | | | | \\ / | / \\ \\ \\_/ / | |__| | | |__ | \\ / |\n" +
" | |\\/| | \\ / \\___ \\ | | | | | | | |\\/| | / /\\ \\ \\ / | __ | | __| | |\\/| |\n" +
" | | | | | | ____) | | | _| |_ | |____ | | | | / ____ \\ | | | | | | | |____ | | | |\n" +
" |_| |_| |_| |_____/ |_| |_____| \\_____| |_| |_| /_/ \\_\\ |_| |_| |_| |______| |_| |_|\n" +
" \u001B[0m \n" ;
public static final String battleBegins =
"\u001B[38;5;208m" +
" ___ _ _____ _____ _ ___ ___ ___ ___ ___ _ _ ___ _ _ _ \n" +
" | _ ) /_\\ |_ _| |_ _| | | | __| | _ ) | __| / __| |_ _| | \\| | / __| | | | | | |\n" +
" | _ \\ / _ \\ | | | | | |__ | _| | _ \\ | _| | (_ | | | | .` | \\__ \\ |_| |_| |_|\n" +
" |___/ /_/ \\_\\ |_| |_| |____| |___| |___/ |___| \\___| |___| |_|\\_| |___/ (_) (_) (_)\n"+ "\u001B[0m"; ;
public static final String inventory =
"\u001B[38;5;208m" +
" ___ _ _ __ __ ___ _ _ _____ ___ ___ __ __\n" +
" |_ _| | \\| | \\ \\ / / | __| | \\| | |_ _| / _ \\ | _ \\ \\ \\ / / \n" +
" | | | .` | \\ V / | _| | .` | | | | (_) | | / \\ V / \n" +
" |___| |_|\\_| \\_/ |___| |_|\\_| |_| \\___/ |_|_\\ |_| \n"+ "\u001B[0m"; ;
}