-
Notifications
You must be signed in to change notification settings - Fork 0
/
phrases_data.py
46 lines (46 loc) · 1.03 KB
/
phrases_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
phrases = {
'Common': [
('Beta', 5),
('Gen Alpha', 10),
('Griddy', 20)
],
'Uncommon': [
('Sprite Cranberry', 25),
('Blue Smurf Cat', 35),
('Big Chungus', 50),
('Super Idol', 75)
],
'Rare': [
('Lebron Sunshine', 100),
('Hood Irony', 150),
('Airpod Shotty', 200),
('Livvy Dunne', 250)
],
'Ultra Rare': [
('Grimace Shake', 1000),
('Adin Ross', 2500),
('Mogwarts', 5000),
('IShowSpeed', 10000)
],
'Legendary': [
('TikTok Rizz party', 10000),
('Giga Chad', 25000),
('Mewing', 50000),
('Rizz', 100000)
],
'Exotic': [
('Ohio', 250000),
('Fanum Tax', 500000),
('Among Us', 1000000),
('Ice Spice', 1500000)
],
'Mythical': [
('Sigma', 2000000),
('Quandale Dingle', 5000000),
('Duke Dennis', 10000000),
('Kai Cenat', 20000000)
],
'Interstellar': [
('Skibidi Toilet', 50000000)
]
}