-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbbad_all.py
136 lines (87 loc) · 2.14 KB
/
bbad_all.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
def valentine_tellings():
import random
valentine = [
"\033[1;36m"
"All of Breaking Bad"
"\nFlirts in One thread"
"\033[0m"
"\n\n"
"I am the one who knocks"
"\n\n\n"
"You are the Lily to my Valley."
"\n\n\n"
"Your eyes are bluer than Heisenberg's crystal"
"\n\n\n"
"Screw Meth."
"\nLove is my drug."
"\nYou are my drug"
"\n\n\n"
"My love for you is 99.1% pure."
"\n\n\n"
"I'm attracted to you so strongly"
"\nScientists will have to develop"
"\na fifth fundamental force."
"\n\n\n"
"Feelin' lonely"
"\ndon't call Saul!"
"\nBetter call koky!"
"\n\n\n"
"If I am being forced to choose"
"\nbetween you and crystal meth"
"\nI would always choose you."
"\n\n\n"
"Crystal meth is nothing compared"
"\non your beauty and effect."
"\n\n\n"
"Your effect lasts more than"
"\na large dose of crystal meth."
"\n\n\n"
"If you are a crystal meth"
"\nI am sure I would consume you"
"\nlittle by little to make you last"
"\n\n\n"
"It is official."
"\nI am addicted to you"
"\nand I do not want to"
"\nbe cured of this addiction."
"\n\n\n"
"You are my kind of crystal meth"
"\nand I do not want to be cured"
"\nof my addiction to you."
"\n\n\n"
"Meth?"
"\nI do not need those"
"\nbecause I already have you."
"\n\n\n"
"You are more addicting and intoxicating"
"\nthan this meth I have on my hands."
"\n\n\n"
"If you are a drug"
"\nI would sell everything"
"\nI have just to have you."
"\n\n\n"
"You will always be"
"\nmy favorite kind of drug darling."
"\n\n\n"
"Chemistry?"
"\nAre you blind?"
"\nWe already have that."
"\n\n\n"
"My favorite crystal?"
"\nHeisenberg’s crystal"
"\nbecause it look a lot like your eyes."
"\n\n\n"
"I love you more than I love a bag of blue meth."
"\n\n\n"
"If you want me to pick between"
"\na bag of blue meth and you."
"\nOf course I’d choose you always."
"\n\n\n"
"There is no way"
"\nI will break your heart"
"\nnow or in the future."
"\n\n\n"
"I can feel the chemistry between us"
]
result = random.choice(valentine)
return result