Skip to content

Commit b247af4

Browse files
cclauss0xInfection
authored andcommitted
Make the penguin a multiline string (0xInfection#42)
A bit of perk I guess.
1 parent 19f74be commit b247af4

File tree

1 file changed

+21
-29
lines changed

1 file changed

+21
-29
lines changed

setup/install.py

Lines changed: 21 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,23 @@
1616
from sys import stdout
1717
from colors import *
1818

19+
TIDOS_RULES = """
20+
_nnnn_
21+
dGGGGMMb
22+
@p~qp~~qMb {}TIDoS Rules!!!
23+
M(\033[37m@\033[96m)(\033[37m@\033[96m) M| {}_;
24+
@\033[33m,----.\033[96mJM| {}-'
25+
JS^\033[33m\__/ \033[96mqKL
26+
dZP qKRb
27+
dZP qKKb
28+
fZP SMMb
29+
HZM MMMM
30+
FqM MMMM
31+
\033[33m_| '. |\033[96mdS'qML'
32+
\033[33m| `. | `' \_\033[96mZq'
33+
\033[33m_) \.___.,| .'
34+
\033[33m\________)\033[96mMMMMM\033[33m| .'""".format(O, GR, GR)
35+
1936
def install():
2037

2138
os.system("clear")
@@ -45,35 +62,10 @@ def install():
4562
< TIDoS \033[1;36mInstaller!!\033[1;36m >
4663
---------------------------------"""
4764
print(header)
48-
print(C+" _nnnn_")
49-
time.sleep(0.1)
50-
print(C+" dGGGGMMb")
51-
time.sleep(0.1)
52-
print(C+" @p~qp~~qMb "+O+"TIDoS Rules!!!")
53-
time.sleep(0.1)
54-
print(C+" M(\033[37m@\033[96m)(\033[37m@\033[96m) M| "+GR+"_;")
55-
time.sleep(0.1)
56-
print(C+" @\033[33m,----.\033[96mJM| "+GR+"-'")
57-
time.sleep(0.1)
58-
print(C+" JS^\033[33m\__/ \033[96mqKL")
59-
time.sleep(0.1)
60-
print(C+" dZP qKRb")
61-
time.sleep(0.1)
62-
print(C+" dZP qKKb")
63-
time.sleep(0.1)
64-
print(C+" fZP SMMb")
65-
time.sleep(0.1)
66-
print(C+" HZM MMMM")
67-
time.sleep(0.1)
68-
print(C+" FqM MMMM")
69-
time.sleep(0.1)
70-
print(C+" \033[33m_| '. |\033[96mdS'qML'")
71-
time.sleep(0.1)
72-
print(C+" \033[33m| `. | `' \_\033[96mZq'")
73-
time.sleep(0.1)
74-
print(C+" \033[33m_) \.___.,| .'")
75-
time.sleep(0.1)
76-
print(C+" \033[33m\________)\033[96mMMMMM\033[33m| .' ")
65+
for line in TIDOS_RULES.splitlines():
66+
if line:
67+
time.sleep(0.1)
68+
print(C + line)
7769
time.sleep(0.1)
7870
print(color.BOLD+" \033[33m`--' "+color.END)
7971
time.sleep(0.7)

0 commit comments

Comments
 (0)