-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitems.py
64 lines (63 loc) · 3.2 KB
/
items.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
banners = {
"common": [
{"name": "Confetti Explosion", "url": "https://i.ibb.co/SJpwVNL/banner.jpg"},
{"name": "Low Poly Sunset", "url": "https://i.ibb.co/9Ztcbss/banner2.png"},
{"name": "Daylight Cafe", "url": "https://i.ibb.co/V2G67TL/banner4.jpg"},
{"name": "Soft Eatery", "url": "https://i.ibb.co/gvXrdWq/banner6.jpg"},
{"name": "Moonlit Table", "url": "https://i.ibb.co/fSWVkzj/banner7.jpg"},
{"name": "Food Cycle", "url": "https://i.ibb.co/j4Gmqq6/banner9.jpg"},
{"name": "Sushi Heaven", "url": "https://i.ibb.co/HVL7ct3/banner11.jpg"},
{"name": "Yellow Buffet", "url": "https://bistrobot.co/a/yellow-buffet.png"},
{"name": "Red Symphony", "url": "https://bistrobot.co/a/red-symphony.png"},
{"name": "Foodtopia", "url": "https://bistrobot.co/a/foodtopia.png"},
{"name": "All You Can Eat", "url": "https://bistrobot.co/a/all-you-can-eat.png"}
],
"uncommon": [
{"name": "Midnight Meal", "url": "https://i.ibb.co/rx0kRNB/banner3.jpg"},
{"name": "Candlelight Dinner", "url": "https://i.ibb.co/G5JKDZ3/banner5.jpg"},
{"name": "Beautiful Wedding", "url": "https://i.ibb.co/qCVHXr2/banner8.jpg"},
{"name": "Oriental Bliss", "url": "https://i.ibb.co/QC8mxdD/banner10.jpg"},
{"name": "Condimenti su Condimenti", "url": "https://i.ibb.co/ryVM1pM/banner12.jpg"},
{"name": "Fruit Galaxy", "url": "https://i.ibb.co/gbGHTYvY/4-BE5887-D-C2-A7-4-E57-8001-8-A60-D4610931.jpg"},
{"name": "Bright Skyline", "url": "https://i.ibb.co/qLyKxvtr/29-B880-FC-3-AD8-44-D4-B08-A-A617569-F4407.jpg"},
{"name": "Starlit Mountain", "url": "https://i.ibb.co/VYGpYHY5/2232339-A-818-B-4-E73-82-B2-143035-E0-C3-C9.jpg"},
{"name": "Orange Moon", "url": "https://i.ibb.co/VWHGWc6s/0177-ABE1-589-C-4-C01-A2-CC-0-C4137619267.jpg"},
{"name": "Pixelated Bonanza", "url": "https://bistrobot.co/a/PixelatedBonanza.jpeg"}
],
"rare": [
{"name": "Bistaria", "url": "https://bistrobot.co/a/Bistaria.jpeg"},
{"name": "Over The Rainbow", "url": "https://bistrobot.co/a/OverTheRainbow.jpeg"},
]}
colours = {
"common": [
{"colour": "Red", "hex": 0xff0000},
{"colour": "Green", "hex": 0x00ff00},
{"colour": "Blue", "hex": 0x0000ff},
{"colour": "White", "hex": 0xd6d6d6},
{"colour": "Orange", "hex": 0xffa500},
{"colour": "Yellow", "hex": 0xffff00},
{"colour": "Violet", "hex": 0x6a0dad},
{"colour": "Grey", "hex": 0x8f8f8f},
{"colour": "Black", "hex": 0x0a0a0a}
],
"uncommon": [
{"colour": "Teal", "hex": 0x007070},
{"colour": "Light Blue", "hex": 0x8a8aff},
{"colour": "Maroon", "hex": 0x800000},
{"colour": "Pink", "hex": 0xff75f1},
{"colour": "Copper", "hex": 0xb87333},
{"colour": "Bubblegum", "hex": 0xe33b8f},
{"colour": "Dust Brown", "hex": 0xa67f53},
{"colour": "Sapphire", "hex": 0x0f52ba},
{"colour": "Lime", "hex": 0xbfff00},
{"colour": "Mustard", "hex": 0xffcd58},
{"colour": "Seafoam", "hex": 0x93e9be},
{"colour": "Magenta", "hex": 0xe4004f},
{"colour": "Amethyst", "hex": 0x9966cc},
{"colour": "Navy Blue", "hex": 0x800020},
{"colour": "Beige", "hex": 0xf7d8aa},
{"colour": "Peach", "hex": 0xfac4a0},
{"colour": "Forest Green", "hex": 0x2e5931},
{"colour": "Lavender", "hex": 0xf5abf5}
]
}