-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
64 lines (46 loc) · 2.64 KB
/
data.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
#INTRO MESSAGES
intro_list = ['''The goal of this mini-game is to test your money trivia knowledge.
Use the white bar to type your response, the pink button to submit your answer, and the blue button to request a hint. You have a total of 3 hints for the game. ''',
'''The questions are timed so be ready. You must send an answer before time runs out.''',
'''You will receive 1 point for each correct answer. here is no penalty for putting a wrong answer, so feel free to estimate. ''',
'''Rules: Type answers using numbers and scale when writing numeric values, i.e - 2 million or 2,000,000''',
'''Remember to have fun!
Are you ready?
Lets Go!!!!'''
]
#QUESTIONS DICTIONARY LIST
money_items = [
{ 'id' : 0,
'question' : 'What is the net worth of the richest man in the world?',
'answer' : '113 billion',
'hint' : 'The answer is in the order of billions to the triple digits',
'correct_num' : [100,200],
'correct_scale': ['billion', ',000,000,000']},
{ 'id' : 1,
'question' : 'What is Warren Buffet\'s net worth?',
'answer' : '67 billion ',
'hint' : 'Its half...the greater half of the richest man\'s income',
'correct_num': [30,80],
'correct_scale': ['billion', ',000,000,000']},
{ 'id' : 2,
'question' : 'How much was Bloomberg\'s salary while working as mayor of NYC in 2009?',
'answer' : '1 dollar',
'hint' : 'It\'s a very small number',
'correct_num' : [1,10],
'correct_scale': ['dollar', '.00']},
{ 'id' : 3,
'question' : 'What is the average NFL player salary per season?',
'answer' : '2.7 million',
'hint' : 'Well ... they are definitely millionaires',
'correct_num' : [1,5],
'correct_scale': ['million', ',000,000']},
{ 'id' : 4,
'question' : 'How much does an average software engineer in Silicon Valley earn in a year?',
'answer' : '101,876 dollars',
'hint' : 'It\'s six figures, but maybe not as high as you think',
'correct_num': [80, 200],
'correct_scale': ['hundred-thousand', '00,000']}
]
#USER SUCCESS
win_message = {" You are a money mogul and you have won this mini-game! \n\ Your prize is... a lifetime of financial success!!! Check out this article for more info https://www.forbes.com/billionaires/"}
lose_message = {"However you are a winner in real life and that is all that matters!\n\ May you enjoy a lifetime of financial success!! Check out this article for more info https://www.forbes.com/billionaires/"}