-
Notifications
You must be signed in to change notification settings - Fork 0
/
potions.json
83 lines (83 loc) · 2.02 KB
/
potions.json
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
{
"potions": {
"1": {
"id": 1,
"name": "Aging Potion",
"image": "aging-potion.png",
"price": 29.99,
"effect": "Causes the drinker to advance in age",
"ingredients": [
"Red Wine",
"Prune Juice",
"Hairy Fungus",
"Tortoise Shell",
"Caterpillar",
"Bat Tongue"
]
},
"2": {
"id": 2,
"name": "Bulgeye Potion",
"image": "bulgeye-potion.png",
"price": 19.99,
"effect": "It affects one's eyes, causing them to swell",
"ingredients": [
"Beetle eyes",
"Eel eyes"
]
},
"3": {
"id": 3,
"name": "Dragon Tonic",
"image": "dragon-tonic.png",
"price": 64.99,
"effect": "A tonic used to cure sick dragons",
"ingredients": [
"Eagle Owl feathers",
"Peacock feathers",
"Giant Purple Toad warts"
]
},
"4": {
"id": 4,
"name": "Love Potion",
"image": "love-potion.png",
"price": 29.99,
"effect": "The one who drinks it falls deeply in love with the first person they see",
"ingredients": [
"Petals from a red rose",
"Essence of violet",
"Canary flight and down feathers",
"Newt eyes"
]
},
"5": {
"id": 5,
"name": "Polyjuice Potion",
"image": "polyjuice-potion.png",
"price": 99.99,
"effect": "Allows the drinker to assume the form of someone else",
"ingredients": [
"Lacewing flies",
"Leeches",
"Powdered bicorn horn",
"Knotgrass",
"Fluxweed",
"Shredded Boomslang skin"
]
},
"6": {
"id": 6,
"name": "Sleeping Draught",
"image": "sleeping-draught.png",
"price": 29.99,
"effect": "Causes the drinker to fall almost instantaneously into a deep but temporary sleep",
"ingredients": [
"Sprigs of Lavender",
"Measures of Standard Ingredient",
"Blobs of Flobberworm Mucus",
"Valerian sprigs"
]
}
}
}