teyvatdb 0.1.17 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +4 -1
- data/lib/genshin_data/artifact_sets/artifact_data.rb +946 -295
- data/lib/genshin_data/artifact_sets.rb +3 -3
- data/lib/genshin_data/characters/character_data.rb +1143 -1126
- data/lib/genshin_data/characters.rb +4 -2
- data/lib/genshin_data/materials/development/elite_monster_drops_data.rb +605 -598
- data/lib/genshin_data/materials/development/gems_data.rb +331 -324
- data/lib/genshin_data/materials/development/general_data.rb +103 -96
- data/lib/genshin_data/materials/development/local_specialty_data.rb +506 -499
- data/lib/genshin_data/materials/development/monster_loot_drops_data.rb +441 -434
- data/lib/genshin_data/materials/development/talent_books_data.rb +506 -500
- data/lib/genshin_data/materials/development/weapon_material_data.rb +672 -665
- data/lib/genshin_data/materials/development/weapon_refinement_material_data.rb +129 -122
- data/lib/genshin_data/materials/development/weekly_boss_drops_data.rb +283 -276
- data/lib/genshin_data/materials/development/world_boss_drops_data.rb +330 -327
- data/lib/genshin_data/materials/development.rb +61 -56
- data/lib/genshin_data/materials/standard/cooking_material_data.rb +561 -554
- data/lib/genshin_data/materials/standard/crafting_material_data.rb +130 -123
- data/lib/genshin_data/materials/standard/fishing_material_data.rb +452 -445
- data/lib/genshin_data/materials/standard/forging_material_data.rb +191 -184
- data/lib/genshin_data/materials/standard/furniture_material_data.rb +251 -244
- data/lib/genshin_data/materials/standard.rb +37 -32
- data/lib/genshin_data/materials.rb +13 -7
- data/lib/genshin_data/nations/nation_data.rb +55 -52
- data/lib/genshin_data/talent_books/talent_book_data.rb +147 -0
- data/lib/genshin_data/talent_books.rb +14 -0
- data/lib/genshin_data/weapons/weapon_data/bows.rb +369 -364
- data/lib/genshin_data/weapons/weapon_data/catalysts.rb +359 -354
- data/lib/genshin_data/weapons/weapon_data/claymores.rb +359 -354
- data/lib/genshin_data/weapons/weapon_data/polearms.rb +262 -257
- data/lib/genshin_data/weapons/weapon_data/swords.rb +399 -395
- data/lib/genshin_data/weapons/weapon_data.rb +10 -7
- data/lib/genshin_data/weapons.rb +2 -1
- data/lib/genshin_data.rb +16 -5
- data/lib/genshin_object/artifact_set.rb +2 -2
- data/lib/genshin_object/material_family.rb +15 -0
- data/lib/genshin_object/schedule.rb +42 -0
- data/lib/genshin_object/talent_book.rb +6 -0
- data/lib/genshin_object/weapon_material_family.rb +6 -0
- data/lib/genshin_object.rb +8 -5
- data/lib/teyvatdb/version.rb +1 -1
- data/lib/teyvatdb.rb +3 -3
- metadata +8 -2
@@ -1,557 +1,564 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module GenshinData
|
4
|
+
module Materials
|
5
|
+
module Standard
|
6
|
+
# Definitons for all cooking related Materials
|
7
|
+
module CookingMaterialsData
|
8
|
+
def self.all
|
9
|
+
constants.map { |x| GenshinData::Materials::Standard::CookingMaterialsData.const_get(x) }
|
10
|
+
end
|
11
|
+
|
12
|
+
AJILENAKH_NUT = GenshinObject::Material.new(
|
13
|
+
kamera_key: "AjilenakhNut",
|
14
|
+
name: "Ajilenakh Nut",
|
15
|
+
rarity: 1,
|
16
|
+
family: nil,
|
17
|
+
inventory_type: :standard_material,
|
18
|
+
source_category: :gathering,
|
19
|
+
source_sub_category: :cooking
|
20
|
+
).freeze
|
21
|
+
|
22
|
+
ALMOND = GenshinObject::Material.new(
|
23
|
+
kamera_key: "Almond",
|
24
|
+
name: "Almond",
|
25
|
+
rarity: 1,
|
26
|
+
family: nil,
|
27
|
+
inventory_type: :standard_material,
|
28
|
+
source_category: :gathering,
|
29
|
+
source_sub_category: :cooking
|
30
|
+
).freeze
|
31
|
+
|
32
|
+
BACON = GenshinObject::Material.new(
|
33
|
+
kamera_key: "Bacon",
|
34
|
+
name: "Bacon",
|
35
|
+
rarity: 1,
|
36
|
+
family: nil,
|
37
|
+
inventory_type: :standard_material,
|
38
|
+
source_category: :cooking,
|
39
|
+
source_sub_category: :cooking
|
40
|
+
).freeze
|
41
|
+
|
42
|
+
BAMBOO_SHOOT = GenshinObject::Material.new(
|
43
|
+
kamera_key: "BambooShoot",
|
44
|
+
name: "Bamboo Shoot",
|
45
|
+
rarity: 1,
|
46
|
+
family: nil,
|
47
|
+
inventory_type: :standard_material,
|
48
|
+
source_category: :gathering,
|
49
|
+
source_sub_category: :cooking
|
50
|
+
).freeze
|
51
|
+
|
52
|
+
BERRY = GenshinObject::Material.new(
|
53
|
+
kamera_key: "Berry",
|
54
|
+
name: "Berry",
|
55
|
+
rarity: 1,
|
56
|
+
family: nil,
|
57
|
+
inventory_type: :standard_material,
|
58
|
+
source_category: :gathering,
|
59
|
+
source_sub_category: :cooking
|
60
|
+
).freeze
|
61
|
+
|
62
|
+
BIRD_EGG = GenshinObject::Material.new(
|
63
|
+
kamera_key: "BirdEgg",
|
64
|
+
name: "Bird Egg",
|
65
|
+
rarity: 1,
|
66
|
+
family: nil,
|
67
|
+
inventory_type: :standard_material,
|
68
|
+
source_category: :gathering,
|
69
|
+
source_sub_category: :cooking
|
70
|
+
).freeze
|
71
|
+
|
72
|
+
BULLE_FRUIT = GenshinObject::Material.new(
|
73
|
+
kamera_key: "BulleFruit",
|
74
|
+
name: "Bulle Fruit",
|
75
|
+
rarity: 1,
|
76
|
+
family: nil,
|
77
|
+
inventory_type: :standard_material,
|
78
|
+
source_category: :cooking,
|
79
|
+
source_sub_category: :cooking
|
80
|
+
).freeze
|
81
|
+
|
82
|
+
BUTTER = GenshinObject::Material.new(
|
83
|
+
kamera_key: "Butter",
|
84
|
+
name: "Butter",
|
85
|
+
rarity: 1,
|
86
|
+
family: nil,
|
87
|
+
inventory_type: :standard_material,
|
88
|
+
source_category: :cooking,
|
89
|
+
source_sub_category: :cooking
|
90
|
+
).freeze
|
91
|
+
|
92
|
+
CABBAGE = GenshinObject::Material.new(
|
93
|
+
kamera_key: "Cabbage",
|
94
|
+
name: "Cabbage",
|
95
|
+
rarity: 1,
|
96
|
+
family: nil,
|
97
|
+
inventory_type: :standard_material,
|
98
|
+
source_category: :gathering,
|
99
|
+
source_sub_category: :cooking
|
100
|
+
).freeze
|
101
|
+
|
102
|
+
CARROT = GenshinObject::Material.new(
|
103
|
+
kamera_key: "Carrot",
|
104
|
+
name: "Carrot",
|
105
|
+
rarity: 1,
|
106
|
+
family: nil,
|
107
|
+
inventory_type: :standard_material,
|
108
|
+
source_category: :gathering,
|
109
|
+
source_sub_category: :cooking
|
110
|
+
).freeze
|
111
|
+
|
112
|
+
CHEESE = GenshinObject::Material.new(
|
113
|
+
kamera_key: "Cheese",
|
114
|
+
name: "Cheese",
|
115
|
+
rarity: 1,
|
116
|
+
family: nil,
|
117
|
+
inventory_type: :standard_material,
|
118
|
+
source_category: :cooking,
|
119
|
+
source_sub_category: :cooking
|
120
|
+
).freeze
|
121
|
+
|
122
|
+
CHILLED_MEAT = GenshinObject::Material.new(
|
123
|
+
kamera_key: "ChilledMeat",
|
124
|
+
name: "Chilled Meat",
|
125
|
+
rarity: 1,
|
126
|
+
family: nil,
|
127
|
+
inventory_type: :standard_material,
|
128
|
+
source_category: :gathering,
|
129
|
+
source_sub_category: :cooking
|
130
|
+
).freeze
|
131
|
+
|
132
|
+
CRAB = GenshinObject::Material.new(
|
133
|
+
kamera_key: "Crab",
|
134
|
+
name: "Crab",
|
135
|
+
rarity: 1,
|
136
|
+
family: nil,
|
137
|
+
inventory_type: :standard_material,
|
138
|
+
source_category: :gathering,
|
139
|
+
source_sub_category: :cooking
|
140
|
+
).freeze
|
141
|
+
|
142
|
+
COFFEE_BEANS = GenshinObject::Material.new(
|
143
|
+
kamera_key: "CoffeeBeans",
|
144
|
+
name: "CoffeeBeans",
|
145
|
+
rarity: 1,
|
146
|
+
family: nil,
|
147
|
+
inventory_type: :standard_material,
|
148
|
+
source_category: :gathering,
|
149
|
+
source_sub_category: :cooking
|
150
|
+
).freeze
|
151
|
+
|
152
|
+
CRAB_ROE = GenshinObject::Material.new(
|
153
|
+
kamera_key: "CrabRoe",
|
154
|
+
name: "Crab Roe",
|
155
|
+
rarity: 1,
|
156
|
+
family: nil,
|
157
|
+
inventory_type: :standard_material,
|
158
|
+
source_category: :cooking,
|
159
|
+
source_sub_category: :cooking
|
160
|
+
).freeze
|
161
|
+
|
162
|
+
CREAM = GenshinObject::Material.new(
|
163
|
+
kamera_key: "Cream",
|
164
|
+
name: "Cream",
|
165
|
+
rarity: 1,
|
166
|
+
family: nil,
|
167
|
+
inventory_type: :standard_material,
|
168
|
+
source_category: :cooking,
|
169
|
+
source_sub_category: :cooking
|
170
|
+
).freeze
|
171
|
+
|
172
|
+
EEL_MEAT = GenshinObject::Material.new(
|
173
|
+
kamera_key: "EelMeat",
|
174
|
+
name: "Eel Meat",
|
175
|
+
rarity: 1,
|
176
|
+
family: nil,
|
177
|
+
inventory_type: :standard_material,
|
178
|
+
source_category: :gathering,
|
179
|
+
source_sub_category: :cooking
|
180
|
+
).freeze
|
181
|
+
|
182
|
+
FERMENTED_JUICE = GenshinObject::Material.new(
|
183
|
+
kamera_key: "FermentedJuice",
|
184
|
+
name: "Fermented Juice",
|
185
|
+
rarity: 1,
|
186
|
+
family: nil,
|
187
|
+
inventory_type: :standard_material,
|
188
|
+
source_category: :gathering,
|
189
|
+
source_sub_category: :cooking
|
190
|
+
).freeze
|
191
|
+
|
192
|
+
FISH = GenshinObject::Material.new(
|
193
|
+
kamera_key: "Fish",
|
194
|
+
name: "Fish",
|
195
|
+
rarity: 1,
|
196
|
+
family: nil,
|
197
|
+
inventory_type: :standard_material,
|
198
|
+
source_category: :gathering,
|
199
|
+
source_sub_category: :cooking
|
200
|
+
).freeze
|
201
|
+
|
202
|
+
FLOUR = GenshinObject::Material.new(
|
203
|
+
kamera_key: "Flour",
|
204
|
+
name: "Flour",
|
205
|
+
rarity: 1,
|
206
|
+
family: nil,
|
207
|
+
inventory_type: :standard_material,
|
208
|
+
source_category: :cooking,
|
209
|
+
source_sub_category: :cooking
|
210
|
+
).freeze
|
211
|
+
|
212
|
+
FOWL = GenshinObject::Material.new(
|
213
|
+
kamera_key: "Fowl",
|
214
|
+
name: "Fowl",
|
215
|
+
rarity: 1,
|
216
|
+
family: nil,
|
217
|
+
inventory_type: :standard_material,
|
218
|
+
source_category: :gathering,
|
219
|
+
source_sub_category: :cooking
|
220
|
+
).freeze
|
221
|
+
|
222
|
+
GLABROUS_BEANS = GenshinObject::Material.new(
|
223
|
+
kamera_key: "GlabrousBeans",
|
224
|
+
name: "Glabrous Beans",
|
225
|
+
rarity: 1,
|
226
|
+
family: nil,
|
227
|
+
inventory_type: :standard_material,
|
228
|
+
source_category: :gathering,
|
229
|
+
source_sub_category: :cooking
|
230
|
+
).freeze
|
231
|
+
|
232
|
+
HAM = GenshinObject::Material.new(
|
233
|
+
kamera_key: "Ham",
|
234
|
+
name: "Ham",
|
235
|
+
rarity: 1,
|
236
|
+
family: nil,
|
237
|
+
inventory_type: :standard_material,
|
238
|
+
source_category: :cooking,
|
239
|
+
source_sub_category: :cooking
|
240
|
+
).freeze
|
241
|
+
|
242
|
+
HARRA_FRUIT = GenshinObject::Material.new(
|
243
|
+
kamera_key: "HarraFruit",
|
244
|
+
name: "Harra Fruit",
|
245
|
+
rarity: 1,
|
246
|
+
family: nil,
|
247
|
+
inventory_type: :standard_material,
|
248
|
+
source_category: :gathering,
|
249
|
+
source_sub_category: :cooking
|
250
|
+
).freeze
|
251
|
+
|
252
|
+
HORSETAIL = GenshinObject::Material.new(
|
253
|
+
kamera_key: "Horsetail",
|
254
|
+
name: "Horsetail",
|
255
|
+
rarity: 1,
|
256
|
+
family: nil,
|
257
|
+
inventory_type: :standard_material,
|
258
|
+
source_category: :gathering,
|
259
|
+
source_sub_category: :cooking
|
260
|
+
).freeze
|
261
|
+
|
262
|
+
LAVENDER_MELON = GenshinObject::Material.new(
|
263
|
+
kamera_key: "LavenderMelon",
|
264
|
+
name: "Lavender Melon",
|
265
|
+
rarity: 1,
|
266
|
+
family: nil,
|
267
|
+
inventory_type: :standard_material,
|
268
|
+
source_category: :gathering,
|
269
|
+
source_sub_category: :cooking
|
270
|
+
).freeze
|
271
|
+
|
272
|
+
LOTUS_HEAD = GenshinObject::Material.new(
|
273
|
+
kamera_key: "LotusHead",
|
274
|
+
name: "Lotus Head",
|
275
|
+
rarity: 1,
|
276
|
+
family: nil,
|
277
|
+
inventory_type: :standard_material,
|
278
|
+
source_category: :gathering,
|
279
|
+
source_sub_category: :local_specialty
|
280
|
+
).freeze
|
281
|
+
|
282
|
+
MATSUTAKE = GenshinObject::Material.new(
|
283
|
+
kamera_key: "Matsutake",
|
284
|
+
name: "Matsutake",
|
285
|
+
rarity: 1,
|
286
|
+
family: nil,
|
287
|
+
inventory_type: :standard_material,
|
288
|
+
source_category: :gathering,
|
289
|
+
source_sub_category: :cooking
|
290
|
+
).freeze
|
291
|
+
|
292
|
+
MILK = GenshinObject::Material.new(
|
293
|
+
kamera_key: "Milk",
|
294
|
+
name: "Milk",
|
295
|
+
rarity: 1,
|
296
|
+
family: nil,
|
297
|
+
inventory_type: :standard_material,
|
298
|
+
source_category: :gathering,
|
299
|
+
source_sub_category: :cooking
|
300
|
+
).freeze
|
301
|
+
|
302
|
+
MINT = GenshinObject::Material.new(
|
303
|
+
kamera_key: "Mint",
|
304
|
+
name: "Mint",
|
305
|
+
rarity: 1,
|
306
|
+
family: nil,
|
307
|
+
inventory_type: :standard_material,
|
308
|
+
source_category: :gathering,
|
309
|
+
source_sub_category: :cooking
|
310
|
+
).freeze
|
311
|
+
|
312
|
+
MUSHROOM = GenshinObject::Material.new(
|
313
|
+
kamera_key: "Mushroom",
|
314
|
+
name: "Mushroom",
|
315
|
+
rarity: 1,
|
316
|
+
family: nil,
|
317
|
+
inventory_type: :standard_material,
|
318
|
+
source_category: :gathering,
|
319
|
+
source_sub_category: :cooking
|
320
|
+
).freeze
|
321
|
+
|
322
|
+
MYSTERIOUS_MEAT = GenshinObject::Material.new(
|
323
|
+
kamera_key: "MysteriousMeat",
|
324
|
+
name: "Mysterious Meat",
|
325
|
+
rarity: 1,
|
326
|
+
family: nil,
|
327
|
+
inventory_type: :standard_material,
|
328
|
+
source_category: :gathering,
|
329
|
+
source_sub_category: :cooking
|
330
|
+
).freeze
|
331
|
+
|
332
|
+
ONION = GenshinObject::Material.new(
|
333
|
+
kamera_key: "Onion",
|
334
|
+
name: "Onion",
|
335
|
+
rarity: 1,
|
336
|
+
family: nil,
|
337
|
+
inventory_type: :standard_material,
|
338
|
+
source_category: :gathering,
|
339
|
+
source_sub_category: :cooking
|
340
|
+
).freeze
|
341
|
+
|
342
|
+
PEPPER = GenshinObject::Material.new(
|
343
|
+
kamera_key: "Pepper",
|
344
|
+
name: "Pepper",
|
345
|
+
rarity: 1,
|
346
|
+
family: nil,
|
347
|
+
inventory_type: :standard_material,
|
348
|
+
source_category: :gathering,
|
349
|
+
source_sub_category: :cooking
|
350
|
+
).freeze
|
351
|
+
|
352
|
+
PINECONE = GenshinObject::Material.new(
|
353
|
+
kamera_key: "Pinecone",
|
354
|
+
name: "Pinecone",
|
355
|
+
rarity: 1,
|
356
|
+
family: nil,
|
357
|
+
inventory_type: :standard_material,
|
358
|
+
source_category: :gathering,
|
359
|
+
source_sub_category: :cooking
|
360
|
+
).freeze
|
361
|
+
|
362
|
+
POTATO = GenshinObject::Material.new(
|
363
|
+
kamera_key: "Potato",
|
364
|
+
name: "Potato",
|
365
|
+
rarity: 1,
|
366
|
+
family: nil,
|
367
|
+
inventory_type: :standard_material,
|
368
|
+
source_category: :gathering,
|
369
|
+
source_sub_category: :cooking
|
370
|
+
).freeze
|
371
|
+
|
372
|
+
RADISH = GenshinObject::Material.new(
|
373
|
+
kamera_key: "Radish",
|
374
|
+
name: "Radish",
|
375
|
+
rarity: 1,
|
376
|
+
family: nil,
|
377
|
+
inventory_type: :standard_material,
|
378
|
+
source_category: :gathering,
|
379
|
+
source_sub_category: :cooking
|
380
|
+
).freeze
|
381
|
+
|
382
|
+
RAW_MEAT = GenshinObject::Material.new(
|
383
|
+
kamera_key: "RawMeat",
|
384
|
+
name: "Raw Meat",
|
385
|
+
rarity: 1,
|
386
|
+
family: nil,
|
387
|
+
inventory_type: :standard_material,
|
388
|
+
source_category: :gathering,
|
389
|
+
source_sub_category: :cooking
|
390
|
+
).freeze
|
391
|
+
|
392
|
+
RICE = GenshinObject::Material.new(
|
393
|
+
kamera_key: "Rice",
|
394
|
+
name: "Rice",
|
395
|
+
rarity: 1,
|
396
|
+
family: nil,
|
397
|
+
inventory_type: :standard_material,
|
398
|
+
source_category: :gathering,
|
399
|
+
source_sub_category: :cooking
|
400
|
+
).freeze
|
401
|
+
|
402
|
+
SALT = GenshinObject::Material.new(
|
403
|
+
kamera_key: "Salt",
|
404
|
+
name: "Salt",
|
405
|
+
rarity: 1,
|
406
|
+
family: nil,
|
407
|
+
inventory_type: :standard_material,
|
408
|
+
source_category: :gathering,
|
409
|
+
source_sub_category: :cooking
|
410
|
+
).freeze
|
411
|
+
|
412
|
+
SAUSAGE = GenshinObject::Material.new(
|
413
|
+
kamera_key: "Sausage",
|
414
|
+
name: "Sausage",
|
415
|
+
rarity: 1,
|
416
|
+
family: nil,
|
417
|
+
inventory_type: :standard_material,
|
418
|
+
source_category: :cooking,
|
419
|
+
source_sub_category: :cooking
|
420
|
+
).freeze
|
421
|
+
|
422
|
+
SEAGRASS = GenshinObject::Material.new(
|
423
|
+
kamera_key: "Seagrass",
|
424
|
+
name: "Seagrass",
|
425
|
+
rarity: 1,
|
426
|
+
family: nil,
|
427
|
+
inventory_type: :standard_material,
|
428
|
+
source_category: :gathering,
|
429
|
+
source_sub_category: :cooking
|
430
|
+
).freeze
|
431
|
+
|
432
|
+
SMOKED_FOWL = GenshinObject::Material.new(
|
433
|
+
kamera_key: "SmokedFowl",
|
434
|
+
name: "Smoked Fowl",
|
435
|
+
rarity: 1,
|
436
|
+
family: nil,
|
437
|
+
inventory_type: :standard_material,
|
438
|
+
source_category: :cooking,
|
439
|
+
source_sub_category: :cooking
|
440
|
+
).freeze
|
441
|
+
|
442
|
+
SNAPDRAGON = GenshinObject::Material.new(
|
443
|
+
kamera_key: "Snapdragon",
|
444
|
+
name: "Snapdragon",
|
445
|
+
rarity: 1,
|
446
|
+
family: nil,
|
447
|
+
inventory_type: :standard_material,
|
448
|
+
source_category: :gathering,
|
449
|
+
source_sub_category: :cooking
|
450
|
+
).freeze
|
451
|
+
|
452
|
+
SPICE = GenshinObject::Material.new(
|
453
|
+
kamera_key: "Spice",
|
454
|
+
name: "Spice",
|
455
|
+
rarity: 1,
|
456
|
+
family: nil,
|
457
|
+
inventory_type: :standard_material,
|
458
|
+
source_category: :cooking,
|
459
|
+
source_sub_category: :cooking
|
460
|
+
).freeze
|
461
|
+
|
462
|
+
SHRIMP_MEAT = GenshinObject::Material.new(
|
463
|
+
kamera_key: "ShrimpMeat",
|
464
|
+
name: "Shrimp Meat",
|
465
|
+
rarity: 1,
|
466
|
+
family: nil,
|
467
|
+
inventory_type: :standard_material,
|
468
|
+
source_category: :gathering,
|
469
|
+
source_sub_category: :cooking
|
470
|
+
).freeze
|
471
|
+
|
472
|
+
SUGAR = GenshinObject::Material.new(
|
473
|
+
kamera_key: "Sugar",
|
474
|
+
name: "Sugar",
|
475
|
+
rarity: 1,
|
476
|
+
family: nil,
|
477
|
+
inventory_type: :standard_material,
|
478
|
+
source_category: :cooking,
|
479
|
+
source_sub_category: :cooking
|
480
|
+
).freeze
|
481
|
+
|
482
|
+
SUMERU_ROSE = GenshinObject::Material.new(
|
483
|
+
kamera_key: "SumeruRose",
|
484
|
+
name: "Sumeru Rose",
|
485
|
+
rarity: 1,
|
486
|
+
family: nil,
|
487
|
+
inventory_type: :standard_material,
|
488
|
+
source_category: :gathering,
|
489
|
+
source_sub_category: :cooking
|
490
|
+
).freeze
|
491
|
+
|
492
|
+
SWEET_FLOWER = GenshinObject::Material.new(
|
493
|
+
kamera_key: "SweetFlower",
|
494
|
+
name: "Sweet Flower",
|
495
|
+
rarity: 1,
|
496
|
+
family: nil,
|
497
|
+
inventory_type: :standard_material,
|
498
|
+
source_category: :gathering,
|
499
|
+
source_sub_category: :cooking
|
500
|
+
).freeze
|
501
|
+
|
502
|
+
TIDALGA = GenshinObject::Material.new(
|
503
|
+
kamera_key: "Tidalga",
|
504
|
+
name: "Tidalga",
|
505
|
+
rarity: 1,
|
506
|
+
family: nil,
|
507
|
+
inventory_type: :standard_material,
|
508
|
+
source_category: :gathering,
|
509
|
+
source_sub_category: :cooking
|
510
|
+
).freeze
|
511
|
+
|
512
|
+
TOFU = GenshinObject::Material.new(
|
513
|
+
kamera_key: "Tofu",
|
514
|
+
name: "Tofu",
|
515
|
+
rarity: 1,
|
516
|
+
family: nil,
|
517
|
+
inventory_type: :standard_material,
|
518
|
+
source_category: :gathering,
|
519
|
+
source_sub_category: :cooking
|
520
|
+
).freeze
|
521
|
+
|
522
|
+
TOMATO = GenshinObject::Material.new(
|
523
|
+
kamera_key: "Tomato",
|
524
|
+
name: "Tomato",
|
525
|
+
rarity: 1,
|
526
|
+
family: nil,
|
527
|
+
inventory_type: :standard_material,
|
528
|
+
source_category: :gathering,
|
529
|
+
source_sub_category: :cooking
|
530
|
+
).freeze
|
531
|
+
|
532
|
+
UNAGI_MEAT = GenshinObject::Material.new(
|
533
|
+
kamera_key: "UnagiMeat",
|
534
|
+
name: "Unagi Meat",
|
535
|
+
rarity: 1,
|
536
|
+
family: nil,
|
537
|
+
inventory_type: :standard_material,
|
538
|
+
source_category: :gathering,
|
539
|
+
source_sub_category: :cooking
|
540
|
+
).freeze
|
541
|
+
|
542
|
+
WHEAT = GenshinObject::Material.new(
|
543
|
+
kamera_key: "Wheat",
|
544
|
+
name: "Wheat",
|
545
|
+
rarity: 1,
|
546
|
+
family: nil,
|
547
|
+
inventory_type: :standard_material,
|
548
|
+
source_category: :vendor,
|
549
|
+
source_sub_category: :cooking
|
550
|
+
).freeze
|
551
|
+
|
552
|
+
ZAYTUN_PEACH = GenshinObject::Material.new(
|
553
|
+
kamera_key: "ZaytunPeach",
|
554
|
+
name: "Zaytun Peach",
|
555
|
+
rarity: 1,
|
556
|
+
family: nil,
|
557
|
+
inventory_type: :standard_material,
|
558
|
+
source_category: :gathering,
|
559
|
+
source_sub_category: :cooking
|
560
|
+
).freeze
|
561
|
+
end
|
5
562
|
end
|
6
|
-
|
7
|
-
AJILENAKH_NUT = GenshinObject::Material.new(
|
8
|
-
kamera_key: "AjilenakhNut",
|
9
|
-
name: "Ajilenakh Nut",
|
10
|
-
rarity: 1,
|
11
|
-
family: nil,
|
12
|
-
inventory_type: :standard_material,
|
13
|
-
source_category: :gathering,
|
14
|
-
source_sub_category: :cooking,
|
15
|
-
).freeze
|
16
|
-
|
17
|
-
ALMOND = GenshinObject::Material.new(
|
18
|
-
kamera_key: "Almond",
|
19
|
-
name: "Almond",
|
20
|
-
rarity: 1,
|
21
|
-
family: nil,
|
22
|
-
inventory_type: :standard_material,
|
23
|
-
source_category: :gathering,
|
24
|
-
source_sub_category: :cooking,
|
25
|
-
).freeze
|
26
|
-
|
27
|
-
BACON = GenshinObject::Material.new(
|
28
|
-
kamera_key: "Bacon",
|
29
|
-
name: "Bacon",
|
30
|
-
rarity: 1,
|
31
|
-
family: nil,
|
32
|
-
inventory_type: :standard_material,
|
33
|
-
source_category: :cooking,
|
34
|
-
source_sub_category: :cooking,
|
35
|
-
).freeze
|
36
|
-
|
37
|
-
BAMBOO_SHOOT = GenshinObject::Material.new(
|
38
|
-
kamera_key: "BambooShoot",
|
39
|
-
name: "Bamboo Shoot",
|
40
|
-
rarity: 1,
|
41
|
-
family: nil,
|
42
|
-
inventory_type: :standard_material,
|
43
|
-
source_category: :gathering,
|
44
|
-
source_sub_category: :cooking,
|
45
|
-
).freeze
|
46
|
-
|
47
|
-
BERRY = GenshinObject::Material.new(
|
48
|
-
kamera_key: "Berry",
|
49
|
-
name: "Berry",
|
50
|
-
rarity: 1,
|
51
|
-
family: nil,
|
52
|
-
inventory_type: :standard_material,
|
53
|
-
source_category: :gathering,
|
54
|
-
source_sub_category: :cooking,
|
55
|
-
).freeze
|
56
|
-
|
57
|
-
BIRD_EGG = GenshinObject::Material.new(
|
58
|
-
kamera_key: "BirdEgg",
|
59
|
-
name: "Bird Egg",
|
60
|
-
rarity: 1,
|
61
|
-
family: nil,
|
62
|
-
inventory_type: :standard_material,
|
63
|
-
source_category: :gathering,
|
64
|
-
source_sub_category: :cooking,
|
65
|
-
).freeze
|
66
|
-
|
67
|
-
BULLE_FRUIT = GenshinObject::Material.new(
|
68
|
-
kamera_key: "BulleFruit",
|
69
|
-
name: "Bulle Fruit",
|
70
|
-
rarity: 1,
|
71
|
-
family: nil,
|
72
|
-
inventory_type: :standard_material,
|
73
|
-
source_category: :cooking,
|
74
|
-
source_sub_category: :cooking,
|
75
|
-
).freeze
|
76
|
-
|
77
|
-
BUTTER = GenshinObject::Material.new(
|
78
|
-
kamera_key: "Butter",
|
79
|
-
name: "Butter",
|
80
|
-
rarity: 1,
|
81
|
-
family: nil,
|
82
|
-
inventory_type: :standard_material,
|
83
|
-
source_category: :cooking,
|
84
|
-
source_sub_category: :cooking,
|
85
|
-
).freeze
|
86
|
-
|
87
|
-
CABBAGE = GenshinObject::Material.new(
|
88
|
-
kamera_key: "Cabbage",
|
89
|
-
name: "Cabbage",
|
90
|
-
rarity: 1,
|
91
|
-
family: nil,
|
92
|
-
inventory_type: :standard_material,
|
93
|
-
source_category: :gathering,
|
94
|
-
source_sub_category: :cooking,
|
95
|
-
).freeze
|
96
|
-
|
97
|
-
CARROT = GenshinObject::Material.new(
|
98
|
-
kamera_key: "Carrot",
|
99
|
-
name: "Carrot",
|
100
|
-
rarity: 1,
|
101
|
-
family: nil,
|
102
|
-
inventory_type: :standard_material,
|
103
|
-
source_category: :gathering,
|
104
|
-
source_sub_category: :cooking,
|
105
|
-
).freeze
|
106
|
-
|
107
|
-
CHEESE = GenshinObject::Material.new(
|
108
|
-
kamera_key: "Cheese",
|
109
|
-
name: "Cheese",
|
110
|
-
rarity: 1,
|
111
|
-
family: nil,
|
112
|
-
inventory_type: :standard_material,
|
113
|
-
source_category: :cooking,
|
114
|
-
source_sub_category: :cooking,
|
115
|
-
).freeze
|
116
|
-
|
117
|
-
CHILLED_MEAT = GenshinObject::Material.new(
|
118
|
-
kamera_key: "ChilledMeat",
|
119
|
-
name: "Chilled Meat",
|
120
|
-
rarity: 1,
|
121
|
-
family: nil,
|
122
|
-
inventory_type: :standard_material,
|
123
|
-
source_category: :gathering,
|
124
|
-
source_sub_category: :cooking,
|
125
|
-
).freeze
|
126
|
-
|
127
|
-
CRAB = GenshinObject::Material.new(
|
128
|
-
kamera_key: "Crab",
|
129
|
-
name: "Crab",
|
130
|
-
rarity: 1,
|
131
|
-
family: nil,
|
132
|
-
inventory_type: :standard_material,
|
133
|
-
source_category: :gathering,
|
134
|
-
source_sub_category: :cooking,
|
135
|
-
).freeze
|
136
|
-
|
137
|
-
COFFEE_BEANS = GenshinObject::Material.new(
|
138
|
-
kamera_key: "CoffeeBeans",
|
139
|
-
name: "CoffeeBeans",
|
140
|
-
rarity: 1,
|
141
|
-
family: nil,
|
142
|
-
inventory_type: :standard_material,
|
143
|
-
source_category: :gathering,
|
144
|
-
source_sub_category: :cooking,
|
145
|
-
).freeze
|
146
|
-
|
147
|
-
CRAB_ROE = GenshinObject::Material.new(
|
148
|
-
kamera_key: "CrabRoe",
|
149
|
-
name: "Crab Roe",
|
150
|
-
rarity: 1,
|
151
|
-
family: nil,
|
152
|
-
inventory_type: :standard_material,
|
153
|
-
source_category: :cooking,
|
154
|
-
source_sub_category: :cooking,
|
155
|
-
).freeze
|
156
|
-
|
157
|
-
CREAM = GenshinObject::Material.new(
|
158
|
-
kamera_key: "Cream",
|
159
|
-
name: "Cream",
|
160
|
-
rarity: 1,
|
161
|
-
family: nil,
|
162
|
-
inventory_type: :standard_material,
|
163
|
-
source_category: :cooking,
|
164
|
-
source_sub_category: :cooking,
|
165
|
-
).freeze
|
166
|
-
|
167
|
-
EEL_MEAT = GenshinObject::Material.new(
|
168
|
-
kamera_key: "EelMeat",
|
169
|
-
name: "Eel Meat",
|
170
|
-
rarity: 1,
|
171
|
-
family: nil,
|
172
|
-
inventory_type: :standard_material,
|
173
|
-
source_category: :gathering,
|
174
|
-
source_sub_category: :cooking,
|
175
|
-
).freeze
|
176
|
-
|
177
|
-
FERMENTED_JUICE = GenshinObject::Material.new(
|
178
|
-
kamera_key: "FermentedJuice",
|
179
|
-
name: "Fermented Juice",
|
180
|
-
rarity: 1,
|
181
|
-
family: nil,
|
182
|
-
inventory_type: :standard_material,
|
183
|
-
source_category: :gathering,
|
184
|
-
source_sub_category: :cooking,
|
185
|
-
).freeze
|
186
|
-
|
187
|
-
FISH = GenshinObject::Material.new(
|
188
|
-
kamera_key: "Fish",
|
189
|
-
name: "Fish",
|
190
|
-
rarity: 1,
|
191
|
-
family: nil,
|
192
|
-
inventory_type: :standard_material,
|
193
|
-
source_category: :gathering,
|
194
|
-
source_sub_category: :cooking,
|
195
|
-
).freeze
|
196
|
-
|
197
|
-
FLOUR = GenshinObject::Material.new(
|
198
|
-
kamera_key: "Flour",
|
199
|
-
name: "Flour",
|
200
|
-
rarity: 1,
|
201
|
-
family: nil,
|
202
|
-
inventory_type: :standard_material,
|
203
|
-
source_category: :cooking,
|
204
|
-
source_sub_category: :cooking,
|
205
|
-
).freeze
|
206
|
-
|
207
|
-
FOWL = GenshinObject::Material.new(
|
208
|
-
kamera_key: "Fowl",
|
209
|
-
name: "Fowl",
|
210
|
-
rarity: 1,
|
211
|
-
family: nil,
|
212
|
-
inventory_type: :standard_material,
|
213
|
-
source_category: :gathering,
|
214
|
-
source_sub_category: :cooking,
|
215
|
-
).freeze
|
216
|
-
|
217
|
-
GLABROUS_BEANS = GenshinObject::Material.new(
|
218
|
-
kamera_key: "GlabrousBeans",
|
219
|
-
name: "Glabrous Beans",
|
220
|
-
rarity: 1,
|
221
|
-
family: nil,
|
222
|
-
inventory_type: :standard_material,
|
223
|
-
source_category: :gathering,
|
224
|
-
source_sub_category: :cooking,
|
225
|
-
).freeze
|
226
|
-
|
227
|
-
HAM = GenshinObject::Material.new(
|
228
|
-
kamera_key: "Ham",
|
229
|
-
name: "Ham",
|
230
|
-
rarity: 1,
|
231
|
-
family: nil,
|
232
|
-
inventory_type: :standard_material,
|
233
|
-
source_category: :cooking,
|
234
|
-
source_sub_category: :cooking,
|
235
|
-
).freeze
|
236
|
-
|
237
|
-
HARRA_FRUIT = GenshinObject::Material.new(
|
238
|
-
kamera_key: "HarraFruit",
|
239
|
-
name: "Harra Fruit",
|
240
|
-
rarity: 1,
|
241
|
-
family: nil,
|
242
|
-
inventory_type: :standard_material,
|
243
|
-
source_category: :gathering,
|
244
|
-
source_sub_category: :cooking,
|
245
|
-
).freeze
|
246
|
-
|
247
|
-
HORSETAIL = GenshinObject::Material.new(
|
248
|
-
kamera_key: "Horsetail",
|
249
|
-
name: "Horsetail",
|
250
|
-
rarity: 1,
|
251
|
-
family: nil,
|
252
|
-
inventory_type: :standard_material,
|
253
|
-
source_category: :gathering,
|
254
|
-
source_sub_category: :cooking,
|
255
|
-
).freeze
|
256
|
-
|
257
|
-
LAVENDER_MELON = GenshinObject::Material.new(
|
258
|
-
kamera_key: "LavenderMelon",
|
259
|
-
name: "Lavender Melon",
|
260
|
-
rarity: 1,
|
261
|
-
family: nil,
|
262
|
-
inventory_type: :standard_material,
|
263
|
-
source_category: :gathering,
|
264
|
-
source_sub_category: :cooking,
|
265
|
-
).freeze
|
266
|
-
|
267
|
-
LOTUS_HEAD = GenshinObject::Material.new(
|
268
|
-
kamera_key: "LotusHead",
|
269
|
-
name: "Lotus Head",
|
270
|
-
rarity: 1,
|
271
|
-
family: nil,
|
272
|
-
inventory_type: :standard_material,
|
273
|
-
source_category: :gathering,
|
274
|
-
source_sub_category: :local_specialty,
|
275
|
-
).freeze
|
276
|
-
|
277
|
-
MATSUTAKE = GenshinObject::Material.new(
|
278
|
-
kamera_key: "Matsutake",
|
279
|
-
name: "Matsutake",
|
280
|
-
rarity: 1,
|
281
|
-
family: nil,
|
282
|
-
inventory_type: :standard_material,
|
283
|
-
source_category: :gathering,
|
284
|
-
source_sub_category: :cooking,
|
285
|
-
).freeze
|
286
|
-
|
287
|
-
MILK = GenshinObject::Material.new(
|
288
|
-
kamera_key: "Milk",
|
289
|
-
name: "Milk",
|
290
|
-
rarity: 1,
|
291
|
-
family: nil,
|
292
|
-
inventory_type: :standard_material,
|
293
|
-
source_category: :gathering,
|
294
|
-
source_sub_category: :cooking,
|
295
|
-
).freeze
|
296
|
-
|
297
|
-
MINT = GenshinObject::Material.new(
|
298
|
-
kamera_key: "Mint",
|
299
|
-
name: "Mint",
|
300
|
-
rarity: 1,
|
301
|
-
family: nil,
|
302
|
-
inventory_type: :standard_material,
|
303
|
-
source_category: :gathering,
|
304
|
-
source_sub_category: :cooking,
|
305
|
-
).freeze
|
306
|
-
|
307
|
-
MUSHROOM = GenshinObject::Material.new(
|
308
|
-
kamera_key: "Mushroom",
|
309
|
-
name: "Mushroom",
|
310
|
-
rarity: 1,
|
311
|
-
family: nil,
|
312
|
-
inventory_type: :standard_material,
|
313
|
-
source_category: :gathering,
|
314
|
-
source_sub_category: :cooking,
|
315
|
-
).freeze
|
316
|
-
|
317
|
-
MYSTERIOUS_MEAT = GenshinObject::Material.new(
|
318
|
-
kamera_key: "MysteriousMeat",
|
319
|
-
name: "Mysterious Meat",
|
320
|
-
rarity: 1,
|
321
|
-
family: nil,
|
322
|
-
inventory_type: :standard_material,
|
323
|
-
source_category: :gathering,
|
324
|
-
source_sub_category: :cooking,
|
325
|
-
).freeze
|
326
|
-
|
327
|
-
ONION = GenshinObject::Material.new(
|
328
|
-
kamera_key: "Onion",
|
329
|
-
name: "Onion",
|
330
|
-
rarity: 1,
|
331
|
-
family: nil,
|
332
|
-
inventory_type: :standard_material,
|
333
|
-
source_category: :gathering,
|
334
|
-
source_sub_category: :cooking,
|
335
|
-
).freeze
|
336
|
-
|
337
|
-
PEPPER = GenshinObject::Material.new(
|
338
|
-
kamera_key: "Pepper",
|
339
|
-
name: "Pepper",
|
340
|
-
rarity: 1,
|
341
|
-
family: nil,
|
342
|
-
inventory_type: :standard_material,
|
343
|
-
source_category: :gathering,
|
344
|
-
source_sub_category: :cooking,
|
345
|
-
).freeze
|
346
|
-
|
347
|
-
PINECONE = GenshinObject::Material.new(
|
348
|
-
kamera_key: "Pinecone",
|
349
|
-
name: "Pinecone",
|
350
|
-
rarity: 1,
|
351
|
-
family: nil,
|
352
|
-
inventory_type: :standard_material,
|
353
|
-
source_category: :gathering,
|
354
|
-
source_sub_category: :cooking,
|
355
|
-
).freeze
|
356
|
-
|
357
|
-
POTATO = GenshinObject::Material.new(
|
358
|
-
kamera_key: "Potato",
|
359
|
-
name: "Potato",
|
360
|
-
rarity: 1,
|
361
|
-
family: nil,
|
362
|
-
inventory_type: :standard_material,
|
363
|
-
source_category: :gathering,
|
364
|
-
source_sub_category: :cooking,
|
365
|
-
).freeze
|
366
|
-
|
367
|
-
RADISH = GenshinObject::Material.new(
|
368
|
-
kamera_key: "Radish",
|
369
|
-
name: "Radish",
|
370
|
-
rarity: 1,
|
371
|
-
family: nil,
|
372
|
-
inventory_type: :standard_material,
|
373
|
-
source_category: :gathering,
|
374
|
-
source_sub_category: :cooking,
|
375
|
-
).freeze
|
376
|
-
|
377
|
-
RAW_MEAT = GenshinObject::Material.new(
|
378
|
-
kamera_key: "RawMeat",
|
379
|
-
name: "Raw Meat",
|
380
|
-
rarity: 1,
|
381
|
-
family: nil,
|
382
|
-
inventory_type: :standard_material,
|
383
|
-
source_category: :gathering,
|
384
|
-
source_sub_category: :cooking,
|
385
|
-
).freeze
|
386
|
-
|
387
|
-
RICE = GenshinObject::Material.new(
|
388
|
-
kamera_key: "Rice",
|
389
|
-
name: "Rice",
|
390
|
-
rarity: 1,
|
391
|
-
family: nil,
|
392
|
-
inventory_type: :standard_material,
|
393
|
-
source_category: :gathering,
|
394
|
-
source_sub_category: :cooking,
|
395
|
-
).freeze
|
396
|
-
|
397
|
-
SALT = GenshinObject::Material.new(
|
398
|
-
kamera_key: "Salt",
|
399
|
-
name: "Salt",
|
400
|
-
rarity: 1,
|
401
|
-
family: nil,
|
402
|
-
inventory_type: :standard_material,
|
403
|
-
source_category: :gathering,
|
404
|
-
source_sub_category: :cooking,
|
405
|
-
).freeze
|
406
|
-
|
407
|
-
SAUSAGE = GenshinObject::Material.new(
|
408
|
-
kamera_key: "Sausage",
|
409
|
-
name: "Sausage",
|
410
|
-
rarity: 1,
|
411
|
-
family: nil,
|
412
|
-
inventory_type: :standard_material,
|
413
|
-
source_category: :cooking,
|
414
|
-
source_sub_category: :cooking,
|
415
|
-
).freeze
|
416
|
-
|
417
|
-
SEAGRASS = GenshinObject::Material.new(
|
418
|
-
kamera_key: "Seagrass",
|
419
|
-
name: "Seagrass",
|
420
|
-
rarity: 1,
|
421
|
-
family: nil,
|
422
|
-
inventory_type: :standard_material,
|
423
|
-
source_category: :gathering,
|
424
|
-
source_sub_category: :cooking,
|
425
|
-
).freeze
|
426
|
-
|
427
|
-
SMOKED_FOWL = GenshinObject::Material.new(
|
428
|
-
kamera_key: "SmokedFowl",
|
429
|
-
name: "Smoked Fowl",
|
430
|
-
rarity: 1,
|
431
|
-
family: nil,
|
432
|
-
inventory_type: :standard_material,
|
433
|
-
source_category: :cooking,
|
434
|
-
source_sub_category: :cooking,
|
435
|
-
).freeze
|
436
|
-
|
437
|
-
SNAPDRAGON = GenshinObject::Material.new(
|
438
|
-
kamera_key: "Snapdragon",
|
439
|
-
name: "Snapdragon",
|
440
|
-
rarity: 1,
|
441
|
-
family: nil,
|
442
|
-
inventory_type: :standard_material,
|
443
|
-
source_category: :gathering,
|
444
|
-
source_sub_category: :cooking,
|
445
|
-
).freeze
|
446
|
-
|
447
|
-
SPICE = GenshinObject::Material.new(
|
448
|
-
kamera_key: "Spice",
|
449
|
-
name: "Spice",
|
450
|
-
rarity: 1,
|
451
|
-
family: nil,
|
452
|
-
inventory_type: :standard_material,
|
453
|
-
source_category: :cooking,
|
454
|
-
source_sub_category: :cooking,
|
455
|
-
).freeze
|
456
|
-
|
457
|
-
SHRIMP_MEAT = GenshinObject::Material.new(
|
458
|
-
kamera_key: "ShrimpMeat",
|
459
|
-
name: "Shrimp Meat",
|
460
|
-
rarity: 1,
|
461
|
-
family: nil,
|
462
|
-
inventory_type: :standard_material,
|
463
|
-
source_category: :gathering,
|
464
|
-
source_sub_category: :cooking,
|
465
|
-
).freeze
|
466
|
-
|
467
|
-
SUGAR = GenshinObject::Material.new(
|
468
|
-
kamera_key: "Sugar",
|
469
|
-
name: "Sugar",
|
470
|
-
rarity: 1,
|
471
|
-
family: nil,
|
472
|
-
inventory_type: :standard_material,
|
473
|
-
source_category: :cooking,
|
474
|
-
source_sub_category: :cooking,
|
475
|
-
).freeze
|
476
|
-
|
477
|
-
SUMERU_ROSE = GenshinObject::Material.new(
|
478
|
-
kamera_key: "SumeruRose",
|
479
|
-
name: "Sumeru Rose",
|
480
|
-
rarity: 1,
|
481
|
-
family: nil,
|
482
|
-
inventory_type: :standard_material,
|
483
|
-
source_category: :gathering,
|
484
|
-
source_sub_category: :cooking,
|
485
|
-
).freeze
|
486
|
-
|
487
|
-
SWEET_FLOWER = GenshinObject::Material.new(
|
488
|
-
kamera_key: "SweetFlower",
|
489
|
-
name: "Sweet Flower",
|
490
|
-
rarity: 1,
|
491
|
-
family: nil,
|
492
|
-
inventory_type: :standard_material,
|
493
|
-
source_category: :gathering,
|
494
|
-
source_sub_category: :cooking,
|
495
|
-
).freeze
|
496
|
-
|
497
|
-
TIDALGA = GenshinObject::Material.new(
|
498
|
-
kamera_key: "Tidalga",
|
499
|
-
name: "Tidalga",
|
500
|
-
rarity: 1,
|
501
|
-
family: nil,
|
502
|
-
inventory_type: :standard_material,
|
503
|
-
source_category: :gathering,
|
504
|
-
source_sub_category: :cooking,
|
505
|
-
).freeze
|
506
|
-
|
507
|
-
TOFU = GenshinObject::Material.new(
|
508
|
-
kamera_key: "Tofu",
|
509
|
-
name: "Tofu",
|
510
|
-
rarity: 1,
|
511
|
-
family: nil,
|
512
|
-
inventory_type: :standard_material,
|
513
|
-
source_category: :gathering,
|
514
|
-
source_sub_category: :cooking,
|
515
|
-
).freeze
|
516
|
-
|
517
|
-
TOMATO = GenshinObject::Material.new(
|
518
|
-
kamera_key: "Tomato",
|
519
|
-
name: "Tomato",
|
520
|
-
rarity: 1,
|
521
|
-
family: nil,
|
522
|
-
inventory_type: :standard_material,
|
523
|
-
source_category: :gathering,
|
524
|
-
source_sub_category: :cooking,
|
525
|
-
).freeze
|
526
|
-
|
527
|
-
UNAGI_MEAT = GenshinObject::Material.new(
|
528
|
-
kamera_key: "UnagiMeat",
|
529
|
-
name: "Unagi Meat",
|
530
|
-
rarity: 1,
|
531
|
-
family: nil,
|
532
|
-
inventory_type: :standard_material,
|
533
|
-
source_category: :gathering,
|
534
|
-
source_sub_category: :cooking,
|
535
|
-
).freeze
|
536
|
-
|
537
|
-
WHEAT = GenshinObject::Material.new(
|
538
|
-
kamera_key: "Wheat",
|
539
|
-
name: "Wheat",
|
540
|
-
rarity: 1,
|
541
|
-
family: nil,
|
542
|
-
inventory_type: :standard_material,
|
543
|
-
source_category: :vendor,
|
544
|
-
source_sub_category: :cooking,
|
545
|
-
).freeze
|
546
|
-
|
547
|
-
ZAYTUN_PEACH = GenshinObject::Material.new(
|
548
|
-
kamera_key: "ZaytunPeach",
|
549
|
-
name: "Zaytun Peach",
|
550
|
-
rarity: 1,
|
551
|
-
family: nil,
|
552
|
-
inventory_type: :standard_material,
|
553
|
-
source_category: :gathering,
|
554
|
-
source_sub_category: :cooking,
|
555
|
-
).freeze
|
556
563
|
end
|
557
564
|
end
|