-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathingredientDB.js
More file actions
77 lines (77 loc) · 1.98 KB
/
Copy pathingredientDB.js
File metadata and controls
77 lines (77 loc) · 1.98 KB
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
const ingredientDB = [
{
Ingredient: "Leek",
FullName: "Large Leek",
Image: "https://www.serebii.net/pokemonsleep/ingredients/largeleek.png"
},
{
Ingredient: "Mushroom",
FullName: "Tasty Mushroom",
Image: "https://www.serebii.net/pokemonsleep/ingredients/tastymushroom.png"
},
{
Ingredient: "Egg",
FullName: "Fancy Egg",
Image: "https://www.serebii.net/pokemonsleep/ingredients/fancyegg.png"
},
{
Ingredient: "Potato",
FullName: "Soft Potato",
Image: "https://www.serebii.net/pokemonsleep/ingredients/softpotato.png"
},
{
Ingredient: "Apple",
FullName: "Fancy Apple",
Image: "https://www.serebii.net/pokemonsleep/ingredients/fancyapple.png"
},
{
Ingredient: "Herb",
FullName: "Fiery Herb",
Image: "https://www.serebii.net/pokemonsleep/ingredients/fieryherb.png"
},
{
Ingredient: "Sausage",
FullName: "Bean Sausage",
Image: "https://www.serebii.net/pokemonsleep/ingredients/beansausage.png"
},
{
Ingredient: "Milk",
FullName: "Moomoo Milk",
Image: "https://www.serebii.net/pokemonsleep/ingredients/moomoomilk.png"
},
{
Ingredient: "Honey",
FullName: "Honey",
Image: "https://www.serebii.net/pokemonsleep/ingredients/honey.png"
},
{
Ingredient: "Oil",
FullName: "Pure Oil",
Image: "https://www.serebii.net/pokemonsleep/ingredients/pureoil.png"
},
{
Ingredient: "Ginger",
FullName: "Warming Ginger",
Image: "https://www.serebii.net/pokemonsleep/ingredients/warmingginger.png"
},
{
Ingredient: "Tomato",
FullName: "Snoozy Tomato",
Image: "https://www.serebii.net/pokemonsleep/ingredients/snoozytomato.png"
},
{
Ingredient: "Cacao",
FullName: "Soothing Cacao",
Image: "https://www.serebii.net/pokemonsleep/ingredients/soothingcacao.png"
},
{
Ingredient: "Tail",
FullName: "Slowpoke Tail",
Image: "https://www.serebii.net/pokemonsleep/ingredients/slowpoketail.png"
},
{
Ingredient: "Soybeans",
FullName: "Greengrass Soybeans",
Image: "https://www.serebii.net/pokemonsleep/ingredients/greengrasssoybeans.png"
}
];