-
Notifications
You must be signed in to change notification settings - Fork 1
/
tiPraise.py
70 lines (65 loc) · 2.19 KB
/
tiPraise.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
import math
import random
import time
print("")
print(" Welcome to praise and")
print(" Self Compassion!")
print(" Created by Spencer Boggs")
print("")
input(" Press [Enter] to Start")
while True:
print("")
name = input("Your name: ")
print("")
insults = [
"You are an intelligent\n individual.",
name + ", you are a pitiful \n excuse for a human being",
"Gek",
"Protozoan",
"More of your conversation\n would infect my brain.",
"You, minion, are too saucy.",
"I do wish thou were a dog,\n that I might love thee\n something.",
"Why am I wasting my battery\n talking to you...",
"Theres a reason you don't\n love yourself",
"You are missing a chromosome",
"I swear to God, I'm going to\n boil your teeth",
"I'm going to rip your vocal\n chords out and use them\n as shoelaces.",
"Your existance is completely\n meaningless. All you do is\n contribute to the heat death\n of the universe.",
"No bitches.",
"I will use your tendons as\n chew toys for my dog",
"You have not so much brain\n as ear-wax"]
if (name == "no"):
print("Liar. Thats not your name")
elif (name):
print(" Hello, " + name)
while (len(insults) > 0):
rand = random.randint(0,len(insults)-1)
print("")
if (rand == 0) and (insults[0] == "You are an intelligent individual."):
print(" " + insults[rand])
time.sleep(1)
print(" Just kidding. I lied")
insults.pop(rand)
else:
print(" " + insults[rand])
insults.pop(rand)
print("")
input(" Press [Enter] for more")
print("")
print(" You aren't even worth\n any more words.")
input("")
print("")
print(" You can leave now")
input("")
print("")
print(" Bye")
input("")
print("")
print(" Get the fuck out")
input("")
input("")
input("")
input("")
else:
print("Fuck you. You little bitch.")
print("Enter your name now!")