teyvatdb 0.6.7 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/genshin_data/characters/character_data.rb +34 -0
- data/lib/genshin_data/characters.rb +2 -0
- data/lib/genshin_data/materials/development/elite_monster_drops_data.rb +66 -0
- data/lib/genshin_data/materials/development/local_specialty_data.rb +44 -0
- data/lib/genshin_data/materials/development/monster_loot_drops_data.rb +66 -0
- data/lib/genshin_data/materials/development/talent_books_data.rb +104 -5
- data/lib/genshin_data/materials/development/weapon_material_data.rb +132 -0
- data/lib/genshin_data/materials/development/world_boss_drops_data.rb +22 -0
- data/lib/genshin_data/materials/standard/cooking_material_data.rb +10 -0
- data/lib/genshin_data/talent_books/talent_book_data.rb +27 -0
- data/lib/genshin_data/weapon_materials/weapon_material_data.rb +26 -0
- data/lib/genshin_data/weapons/weapon_data/bows.rb +10 -0
- data/lib/genshin_data/weapons/weapon_data/catalysts.rb +10 -0
- data/lib/genshin_data/weapons/weapon_data/claymores.rb +10 -0
- data/lib/genshin_data/weapons/weapon_data/polearms.rb +10 -0
- data/lib/genshin_data/weapons/weapon_data/swords.rb +30 -0
- data/lib/genshin_data/world_bosses/world_boss_data.rb +12 -0
- data/lib/teyvatdb/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e91c042d27fae47fd83c183ef33de9fa1714210f51030a34bd7d105fb39e139
|
|
4
|
+
data.tar.gz: 07f49d7e102b37bd9f9a8fb30aea200c508b6c2368786bf9a5cba21b1939c701
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8284329b1438493c0ba3ba8b160447353901642fdd5038792e0cbb8690bbfb860c03d60bc0d565f206e56d64ac5e9121c793908642e394bd6ce3d0d038de2147
|
|
7
|
+
data.tar.gz: '0935f2eeba63fc19517a77d86c295f01c25c6ffa4d7c1dc45153ee4ecb58485109819073c2f95ced0bb77167a90c84f55d2c2ae947d01f9792acc7d75a1c5bc1'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [0.7.0] - 2026-08-21
|
|
2
|
+
- Add new Character(s)
|
|
3
|
+
- Odette (5)
|
|
4
|
+
- Alyosha (4)
|
|
5
|
+
- Add New Weapon(s)
|
|
6
|
+
- Whitelake Frostfeather (5)
|
|
7
|
+
- Exaiphanes Blade (4)
|
|
8
|
+
- Emberwell (4)
|
|
9
|
+
- Covenant of Frost and Snow (4)
|
|
10
|
+
- Blade of Atonement (4)
|
|
11
|
+
- Echoes of the Heart (4)
|
|
12
|
+
- Song of the Vigil (4)
|
|
13
|
+
- Add new artifact set(s)
|
|
14
|
+
- Scarlet Proof
|
|
15
|
+
- Heart of the Furnace
|
|
16
|
+
|
|
1
17
|
## [0.6.7] - 2026-08-08
|
|
2
18
|
- Luna VIII
|
|
3
19
|
- Add new Character(s)
|
|
@@ -54,6 +54,23 @@ module GenshinData
|
|
|
54
54
|
ascension_enemy_material_name: :spectral
|
|
55
55
|
).freeze
|
|
56
56
|
|
|
57
|
+
ALYOSHA = GenshinObject::Character.new(
|
|
58
|
+
kamera_key: "Alyosha",
|
|
59
|
+
name: "Alyosha",
|
|
60
|
+
nation_name: :snezhnaya,
|
|
61
|
+
rarity: 4,
|
|
62
|
+
constellation_three_bonus: :skill,
|
|
63
|
+
constellation_five_bonus: :burst,
|
|
64
|
+
element: :electro,
|
|
65
|
+
weapon_type: :polearm,
|
|
66
|
+
ascension_boss_material_name: "SeveredTailOfTheSkyRoamer",
|
|
67
|
+
ascension_gathering_material_name: "Flockingweed",
|
|
68
|
+
ascension_enemy_material_name: :chimeric,
|
|
69
|
+
talent_book_name: :fortitude,
|
|
70
|
+
talent_rare_material_name: :chimeric,
|
|
71
|
+
talent_boss_material_name: "MoltenMoment"
|
|
72
|
+
).freeze
|
|
73
|
+
|
|
57
74
|
AINO = GenshinObject::Character.new(
|
|
58
75
|
kamera_key: "Aino",
|
|
59
76
|
name: "Aino",
|
|
@@ -1329,6 +1346,23 @@ module GenshinData
|
|
|
1329
1346
|
ascension_enemy_material_name: :hilichurl_mask
|
|
1330
1347
|
).freeze
|
|
1331
1348
|
|
|
1349
|
+
ODETTE = GenshinObject::Character.new(
|
|
1350
|
+
kamera_key: "Odette",
|
|
1351
|
+
name: "Odette",
|
|
1352
|
+
nation_name: :snezhnaya,
|
|
1353
|
+
rarity: 5,
|
|
1354
|
+
constellation_three_bonus: :skill,
|
|
1355
|
+
constellation_five_bonus: :burst,
|
|
1356
|
+
element: :cryo,
|
|
1357
|
+
weapon_type: :sword,
|
|
1358
|
+
ascension_boss_material_name: "UnscorchedBlossomBranch",
|
|
1359
|
+
ascension_gathering_material_name: "FrostfairyFlower",
|
|
1360
|
+
ascension_enemy_material_name: :ethereal,
|
|
1361
|
+
talent_book_name: :charity,
|
|
1362
|
+
talent_rare_material_name: :ethereal,
|
|
1363
|
+
talent_boss_material_name: "TwistedWitheredBranch"
|
|
1364
|
+
).freeze
|
|
1365
|
+
|
|
1332
1366
|
ORORON = GenshinObject::Character.new(
|
|
1333
1367
|
kamera_key: "Ororon",
|
|
1334
1368
|
name: "Ororon",
|
|
@@ -31,6 +31,39 @@ module GenshinData
|
|
|
31
31
|
nation_name: nil
|
|
32
32
|
).freeze
|
|
33
33
|
|
|
34
|
+
ACCRETED_FRAGMENT = GenshinObject::Material.new(
|
|
35
|
+
kamera_key: "AccretedFragment",
|
|
36
|
+
name: "Accreted Fragment",
|
|
37
|
+
rarity: 2,
|
|
38
|
+
family: :accreted,
|
|
39
|
+
inventory_type: :development_material,
|
|
40
|
+
source_category: :monster_loot,
|
|
41
|
+
source_sub_category: :elite_drop,
|
|
42
|
+
nation_name: nil
|
|
43
|
+
).freeze
|
|
44
|
+
|
|
45
|
+
ACCRETED_GROWTH= GenshinObject::Material.new(
|
|
46
|
+
kamera_key: "AccretedGrowth",
|
|
47
|
+
name: "Accreted Growth",
|
|
48
|
+
rarity: 4,
|
|
49
|
+
family: :accreted,
|
|
50
|
+
inventory_type: :development_material,
|
|
51
|
+
source_category: :monster_loot,
|
|
52
|
+
source_sub_category: :elite_drop,
|
|
53
|
+
nation_name: nil
|
|
54
|
+
).freeze
|
|
55
|
+
|
|
56
|
+
ACCRETED_MASS = GenshinObject::Material.new(
|
|
57
|
+
kamera_key: "AccretedMass",
|
|
58
|
+
name: "Accreted Mass",
|
|
59
|
+
rarity: 3,
|
|
60
|
+
family: :accreted,
|
|
61
|
+
inventory_type: :development_material,
|
|
62
|
+
source_category: :monster_loot,
|
|
63
|
+
source_sub_category: :elite_drop,
|
|
64
|
+
nation_name: nil
|
|
65
|
+
).freeze
|
|
66
|
+
|
|
34
67
|
AGENTS_SACRIFICIAL_KNIFE = GenshinObject::Material.new(
|
|
35
68
|
kamera_key: "AgentsSacrificialKnife",
|
|
36
69
|
name: "Agents Sacrificial Knife",
|
|
@@ -218,6 +251,17 @@ module GenshinData
|
|
|
218
251
|
nation_name: nil
|
|
219
252
|
).freeze
|
|
220
253
|
|
|
254
|
+
COILED_CORE_OF_LIFE = GenshinObject::Material.new(
|
|
255
|
+
kamera_key: "CoiledCoreOfLife",
|
|
256
|
+
name: "Coiled Core of Life",
|
|
257
|
+
rarity: 4,
|
|
258
|
+
family: :life_node,
|
|
259
|
+
inventory_type: :development_material,
|
|
260
|
+
source_category: :monster_loot,
|
|
261
|
+
source_sub_category: :elite_drop,
|
|
262
|
+
nation_name: nil
|
|
263
|
+
).freeze
|
|
264
|
+
|
|
221
265
|
COLD_CRACKED_SHELLSHARD = GenshinObject::Material.new(
|
|
222
266
|
kamera_key: "ColdCrackedShellshard",
|
|
223
267
|
name: "Cold-Cracked Shellshard",
|
|
@@ -559,6 +603,17 @@ module GenshinData
|
|
|
559
603
|
nation_name: nil
|
|
560
604
|
).freeze
|
|
561
605
|
|
|
606
|
+
HOLLOW_ROOT_OF_LIFE = GenshinObject::Material.new(
|
|
607
|
+
kamera_key: "HollowRootOfLife",
|
|
608
|
+
name: "Hollow Root of Life",
|
|
609
|
+
rarity: 2,
|
|
610
|
+
family: :life_node,
|
|
611
|
+
inventory_type: :development_material,
|
|
612
|
+
source_category: :monster_loot,
|
|
613
|
+
source_sub_category: :elite_drop,
|
|
614
|
+
nation_name: nil
|
|
615
|
+
).freeze
|
|
616
|
+
|
|
562
617
|
HUNTERS_SACRIFICIAL_KNIFE = GenshinObject::Material.new(
|
|
563
618
|
kamera_key: "HuntersSacrificialKnife",
|
|
564
619
|
name: "Hunters Sacrificial Knife",
|
|
@@ -944,6 +999,17 @@ module GenshinData
|
|
|
944
999
|
nation_name: nil
|
|
945
1000
|
).freeze
|
|
946
1001
|
|
|
1002
|
+
SPROUT_NODE_OF_LIFE = GenshinObject::Material.new(
|
|
1003
|
+
kamera_key: "SproutNodeOfLife",
|
|
1004
|
+
name: "Sprout Node of Life",
|
|
1005
|
+
rarity: 3,
|
|
1006
|
+
family: :life_node,
|
|
1007
|
+
inventory_type: :development_material,
|
|
1008
|
+
source_category: :monster_loot,
|
|
1009
|
+
source_sub_category: :elite_drop,
|
|
1010
|
+
nation_name: nil
|
|
1011
|
+
).freeze
|
|
1012
|
+
|
|
947
1013
|
STILL_SMOLDERING_HILT = GenshinObject::Material.new(
|
|
948
1014
|
kamera_key: "StillSmolderingHilt",
|
|
949
1015
|
name: "Still-Smoldering Hilt",
|
|
@@ -141,6 +141,17 @@ module GenshinData
|
|
|
141
141
|
nation_name: :mondstadt
|
|
142
142
|
).freeze
|
|
143
143
|
|
|
144
|
+
FLOCKINGWEED = GenshinObject::Material.new(
|
|
145
|
+
kamera_key: "Flockingweed",
|
|
146
|
+
name: "Flockingweed",
|
|
147
|
+
rarity: 1,
|
|
148
|
+
family: nil,
|
|
149
|
+
inventory_type: :standard_material,
|
|
150
|
+
source_category: :gathering,
|
|
151
|
+
source_sub_category: :local_specialty,
|
|
152
|
+
nation_name: :snezhnaya
|
|
153
|
+
).freeze
|
|
154
|
+
|
|
144
155
|
FLUORESCENT_FUNGUS = GenshinObject::Material.new(
|
|
145
156
|
kamera_key: "FluorescentFungus",
|
|
146
157
|
name: "Fluorescent Fungus",
|
|
@@ -152,6 +163,17 @@ module GenshinData
|
|
|
152
163
|
nation_name: :sumeru
|
|
153
164
|
).freeze
|
|
154
165
|
|
|
166
|
+
FROSTFAIRY_FLOWER = GenshinObject::Material.new(
|
|
167
|
+
kamera_key: "FrostfairyFlower",
|
|
168
|
+
name: "Frostfairy Flower",
|
|
169
|
+
rarity: 1,
|
|
170
|
+
family: nil,
|
|
171
|
+
inventory_type: :standard_material,
|
|
172
|
+
source_category: :gathering,
|
|
173
|
+
source_sub_category: :local_specialty,
|
|
174
|
+
nation_name: :snezhnaya
|
|
175
|
+
).freeze
|
|
176
|
+
|
|
155
177
|
FROSTLAMP_FLOWER = GenshinObject::Material.new(
|
|
156
178
|
kamera_key: "FrostlampFlower",
|
|
157
179
|
name: "Frostlamp Flower",
|
|
@@ -185,6 +207,17 @@ module GenshinData
|
|
|
185
207
|
nation_name: :natlan
|
|
186
208
|
).freeze
|
|
187
209
|
|
|
210
|
+
GOLDEN_FERN = GenshinObject::Material.new(
|
|
211
|
+
kamera_key: "GoldenFern",
|
|
212
|
+
name: "Golden Fern",
|
|
213
|
+
rarity: 1,
|
|
214
|
+
family: nil,
|
|
215
|
+
inventory_type: :standard_material,
|
|
216
|
+
source_category: :gathering,
|
|
217
|
+
source_sub_category: :local_specialty,
|
|
218
|
+
nation_name: :snezhnaya
|
|
219
|
+
).freeze
|
|
220
|
+
|
|
188
221
|
HENNA_BERRY = GenshinObject::Material.new(
|
|
189
222
|
kamera_key: "HennaBerry",
|
|
190
223
|
name: "Henna Berry",
|
|
@@ -581,6 +614,17 @@ module GenshinData
|
|
|
581
614
|
nation_name: :fontaine
|
|
582
615
|
).freeze
|
|
583
616
|
|
|
617
|
+
TEARDROP_OF_THE_MOON = GenshinObject::Material.new(
|
|
618
|
+
kamera_key: "TeardropOfTheMoon",
|
|
619
|
+
name: "Teardrop of the Moon",
|
|
620
|
+
rarity: 1,
|
|
621
|
+
family: nil,
|
|
622
|
+
inventory_type: :standard_material,
|
|
623
|
+
source_category: :gathering,
|
|
624
|
+
source_sub_category: :local_specialty,
|
|
625
|
+
nation_name: :nodkrai
|
|
626
|
+
).freeze
|
|
627
|
+
|
|
584
628
|
TRISHIRAITE = GenshinObject::Material.new(
|
|
585
629
|
kamera_key: "Trishiraite",
|
|
586
630
|
name: "Trishiraite",
|
|
@@ -31,6 +31,17 @@ module GenshinData
|
|
|
31
31
|
nation_name: nil
|
|
32
32
|
).freeze
|
|
33
33
|
|
|
34
|
+
CHIMERIC_CORE = GenshinObject::Material.new(
|
|
35
|
+
kamera_key: "ChimericCore",
|
|
36
|
+
name: "Chimeric Core",
|
|
37
|
+
rarity: 1,
|
|
38
|
+
family: :chimeric,
|
|
39
|
+
inventory_type: :development_material,
|
|
40
|
+
source_category: :monster_loot,
|
|
41
|
+
source_sub_category: :general_drop,
|
|
42
|
+
nation_name: nil
|
|
43
|
+
).freeze
|
|
44
|
+
|
|
34
45
|
CRYSTALLINE_CYST_DUST = GenshinObject::Material.new(
|
|
35
46
|
kamera_key: "CrystallineCystDust",
|
|
36
47
|
name: "Crystalline Cyst Dust",
|
|
@@ -75,6 +86,39 @@ module GenshinData
|
|
|
75
86
|
nation_name: nil
|
|
76
87
|
).freeze
|
|
77
88
|
|
|
89
|
+
ETHEREAL_CRYSTAL = GenshinObject::Material.new(
|
|
90
|
+
kamera_key: "EtherealCrystal",
|
|
91
|
+
name: "Ethereal Crystal",
|
|
92
|
+
rarity: 2,
|
|
93
|
+
family: :ethereal,
|
|
94
|
+
inventory_type: :development_material,
|
|
95
|
+
source_category: :monster_loot,
|
|
96
|
+
source_sub_category: :general_drop,
|
|
97
|
+
nation_name: nil
|
|
98
|
+
).freeze
|
|
99
|
+
|
|
100
|
+
ETHEREAL_CRYSTALSCALE_STONE = GenshinObject::Material.new(
|
|
101
|
+
kamera_key: "EtherealCrystalscaleStone",
|
|
102
|
+
name: "Ethereal Crystalscale Stone",
|
|
103
|
+
rarity: 3,
|
|
104
|
+
family: :ethereal,
|
|
105
|
+
inventory_type: :development_material,
|
|
106
|
+
source_category: :monster_loot,
|
|
107
|
+
source_sub_category: :general_drop,
|
|
108
|
+
nation_name: nil
|
|
109
|
+
).freeze
|
|
110
|
+
|
|
111
|
+
ETHEREAL_GLIMMERSHARD = GenshinObject::Material.new(
|
|
112
|
+
kamera_key: "EtherealGlimmershard",
|
|
113
|
+
name: "Ethereal Glimmershard",
|
|
114
|
+
rarity: 1,
|
|
115
|
+
family: :ethereal,
|
|
116
|
+
inventory_type: :development_material,
|
|
117
|
+
source_category: :monster_loot,
|
|
118
|
+
source_sub_category: :general_drop,
|
|
119
|
+
nation_name: nil
|
|
120
|
+
).freeze
|
|
121
|
+
|
|
78
122
|
FADED_RED_SATIN = GenshinObject::Material.new(
|
|
79
123
|
kamera_key: "FadedRedSatin",
|
|
80
124
|
name: "Faded Red Satin",
|
|
@@ -262,6 +306,17 @@ module GenshinData
|
|
|
262
306
|
nation_name: nil
|
|
263
307
|
).freeze
|
|
264
308
|
|
|
309
|
+
PRIME_CHIMERIC_NEXUS = GenshinObject::Material.new(
|
|
310
|
+
kamera_key: "PrimeChimericNexus",
|
|
311
|
+
name: "Prime Chimeric Nexus",
|
|
312
|
+
rarity: 3,
|
|
313
|
+
family: :chimeric,
|
|
314
|
+
inventory_type: :development_material,
|
|
315
|
+
source_category: :monster_loot,
|
|
316
|
+
source_sub_category: :general_drop,
|
|
317
|
+
nation_name: nil
|
|
318
|
+
).freeze
|
|
319
|
+
|
|
265
320
|
RECRUITS_INSIGNIA = GenshinObject::Material.new(
|
|
266
321
|
kamera_key: "RecruitsInsignia",
|
|
267
322
|
name: "Recruits Insignia",
|
|
@@ -460,6 +515,17 @@ module GenshinData
|
|
|
460
515
|
nation_name: nil
|
|
461
516
|
).freeze
|
|
462
517
|
|
|
518
|
+
SYMBIOTIC_CHIMERIC_NUCLEUS = GenshinObject::Material.new(
|
|
519
|
+
kamera_key: "SymbioticChimericNucleus",
|
|
520
|
+
name: "Symbiotic Chimeric Nucleus",
|
|
521
|
+
rarity: 2,
|
|
522
|
+
family: :chimeric,
|
|
523
|
+
inventory_type: :development_material,
|
|
524
|
+
source_category: :monster_loot,
|
|
525
|
+
source_sub_category: :general_drop,
|
|
526
|
+
nation_name: nil
|
|
527
|
+
).freeze
|
|
528
|
+
|
|
463
529
|
TATTERED_WARRANT = GenshinObject::Material.new(
|
|
464
530
|
kamera_key: "TatteredWarrant",
|
|
465
531
|
name: "Tattered Warrant",
|
|
@@ -31,15 +31,15 @@ module GenshinData
|
|
|
31
31
|
nation_name: :mondstadt
|
|
32
32
|
).freeze
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
kamera_key: "
|
|
36
|
-
name: "Guide to
|
|
34
|
+
GUIDE_TO_CHARITY = GenshinObject::Material.new(
|
|
35
|
+
kamera_key: "GuideToCharity",
|
|
36
|
+
name: "Guide to Charity",
|
|
37
37
|
rarity: 3,
|
|
38
|
-
family: :
|
|
38
|
+
family: :charity,
|
|
39
39
|
inventory_type: :development_material,
|
|
40
40
|
source_category: :talent_book,
|
|
41
41
|
source_sub_category: nil,
|
|
42
|
-
nation_name: :
|
|
42
|
+
nation_name: :snezhnaya
|
|
43
43
|
).freeze
|
|
44
44
|
|
|
45
45
|
GUIDE_TO_CONFLICT = GenshinObject::Material.new(
|
|
@@ -64,6 +64,17 @@ module GenshinData
|
|
|
64
64
|
nation_name: :natlan
|
|
65
65
|
).freeze
|
|
66
66
|
|
|
67
|
+
GUIDE_TO_DILIGENCE = GenshinObject::Material.new(
|
|
68
|
+
kamera_key: "GuideToDiligence",
|
|
69
|
+
name: "Guide to Diligence",
|
|
70
|
+
rarity: 3,
|
|
71
|
+
family: :diligence,
|
|
72
|
+
inventory_type: :development_material,
|
|
73
|
+
source_category: :talent_book,
|
|
74
|
+
source_sub_category: nil,
|
|
75
|
+
nation_name: :liyue
|
|
76
|
+
).freeze
|
|
77
|
+
|
|
67
78
|
GUIDE_TO_ELEGANCE = GenshinObject::Material.new(
|
|
68
79
|
kamera_key: "GuideToElegance",
|
|
69
80
|
name: "Guide to Elegance",
|
|
@@ -97,6 +108,17 @@ module GenshinData
|
|
|
97
108
|
nation_name: :fontaine
|
|
98
109
|
).freeze
|
|
99
110
|
|
|
111
|
+
GUIDE_TO_FORTITUDE = GenshinObject::Material.new(
|
|
112
|
+
kamera_key: "GuideToFortitude",
|
|
113
|
+
name: "Guide to Fortitude",
|
|
114
|
+
rarity: 3,
|
|
115
|
+
family: :fortitude,
|
|
116
|
+
inventory_type: :development_material,
|
|
117
|
+
source_category: :talent_book,
|
|
118
|
+
source_sub_category: nil,
|
|
119
|
+
nation_name: :snezhnaya
|
|
120
|
+
).freeze
|
|
121
|
+
|
|
100
122
|
GUIDE_TO_FREEDOM = GenshinObject::Material.new(
|
|
101
123
|
kamera_key: "GuideToFreedom",
|
|
102
124
|
name: "Guide to Freedom",
|
|
@@ -108,6 +130,17 @@ module GenshinData
|
|
|
108
130
|
nation_name: :mondstadt
|
|
109
131
|
).freeze
|
|
110
132
|
|
|
133
|
+
GUIDE_TO_GLORY = GenshinObject::Material.new(
|
|
134
|
+
kamera_key: "GuideToGlory",
|
|
135
|
+
name: "Guide to Glory",
|
|
136
|
+
rarity: 3,
|
|
137
|
+
family: :glory,
|
|
138
|
+
inventory_type: :development_material,
|
|
139
|
+
source_category: :talent_book,
|
|
140
|
+
source_sub_category: nil,
|
|
141
|
+
nation_name: :snezhnaya
|
|
142
|
+
).freeze
|
|
143
|
+
|
|
111
144
|
GUIDE_TO_GOLD = GenshinObject::Material.new(
|
|
112
145
|
kamera_key: "GuideToGold",
|
|
113
146
|
name: "Guide to Gold",
|
|
@@ -262,6 +295,17 @@ module GenshinData
|
|
|
262
295
|
nation_name: :mondstadt
|
|
263
296
|
).freeze
|
|
264
297
|
|
|
298
|
+
PHILOSOPHIES_OF_CHARITY = GenshinObject::Material.new(
|
|
299
|
+
kamera_key: "PhilosophiesOfCharity",
|
|
300
|
+
name: "Philosophies of Charity",
|
|
301
|
+
rarity: 4,
|
|
302
|
+
family: :charity,
|
|
303
|
+
inventory_type: :development_material,
|
|
304
|
+
source_category: :talent_book,
|
|
305
|
+
source_sub_category: nil,
|
|
306
|
+
nation_name: :snezhnaya
|
|
307
|
+
).freeze
|
|
308
|
+
|
|
265
309
|
PHILOSOPHIES_OF_CONFLICT = GenshinObject::Material.new(
|
|
266
310
|
kamera_key: "PhilosophiesOfConflict",
|
|
267
311
|
name: "Philosophies of Conflict",
|
|
@@ -328,6 +372,17 @@ module GenshinData
|
|
|
328
372
|
nation_name: :fontaine
|
|
329
373
|
).freeze
|
|
330
374
|
|
|
375
|
+
PHILOSOPHIES_OF_FORTITUDE = GenshinObject::Material.new(
|
|
376
|
+
kamera_key: "PhilosophiesOfFortitude",
|
|
377
|
+
name: "Philosophies of Fortitude",
|
|
378
|
+
rarity: 4,
|
|
379
|
+
family: :fortitude,
|
|
380
|
+
inventory_type: :development_material,
|
|
381
|
+
source_category: :talent_book,
|
|
382
|
+
source_sub_category: nil,
|
|
383
|
+
nation_name: :snezhnaya
|
|
384
|
+
).freeze
|
|
385
|
+
|
|
331
386
|
PHILOSOPHIES_OF_FREEDOM = GenshinObject::Material.new(
|
|
332
387
|
kamera_key: "PhilosophiesOfFreedom",
|
|
333
388
|
name: "Philosophies of Freedom",
|
|
@@ -339,6 +394,17 @@ module GenshinData
|
|
|
339
394
|
nation_name: :mondstadt
|
|
340
395
|
).freeze
|
|
341
396
|
|
|
397
|
+
PHILOSOPHIES_OF_GLORY = GenshinObject::Material.new(
|
|
398
|
+
kamera_key: "PhilosophiesOfGlory",
|
|
399
|
+
name: "Philosophies of Glory",
|
|
400
|
+
rarity: 4,
|
|
401
|
+
family: :glory,
|
|
402
|
+
inventory_type: :development_material,
|
|
403
|
+
source_category: :talent_book,
|
|
404
|
+
source_sub_category: nil,
|
|
405
|
+
nation_name: :snezhnaya
|
|
406
|
+
).freeze
|
|
407
|
+
|
|
342
408
|
PHILOSOPHIES_OF_GOLD = GenshinObject::Material.new(
|
|
343
409
|
kamera_key: "PhilosophiesOfGold",
|
|
344
410
|
name: "Philosophies of Gold",
|
|
@@ -493,6 +559,17 @@ module GenshinData
|
|
|
493
559
|
nation_name: :mondstadt
|
|
494
560
|
).freeze
|
|
495
561
|
|
|
562
|
+
TEACHINGS_OF_CHARITY = GenshinObject::Material.new(
|
|
563
|
+
kamera_key: "TeachingsOfCharity",
|
|
564
|
+
name: "Teachings of Charity",
|
|
565
|
+
rarity: 2,
|
|
566
|
+
family: :charity,
|
|
567
|
+
inventory_type: :development_material,
|
|
568
|
+
source_category: :talent_book,
|
|
569
|
+
source_sub_category: nil,
|
|
570
|
+
nation_name: :snezhnaya
|
|
571
|
+
).freeze
|
|
572
|
+
|
|
496
573
|
TEACHINGS_OF_CONFLICT = GenshinObject::Material.new(
|
|
497
574
|
kamera_key: "TeachingsOfConflict",
|
|
498
575
|
name: "Teachings of Conflict",
|
|
@@ -559,6 +636,17 @@ module GenshinData
|
|
|
559
636
|
nation_name: :fontaine
|
|
560
637
|
).freeze
|
|
561
638
|
|
|
639
|
+
TEACHINGS_OF_FORTITUDE = GenshinObject::Material.new(
|
|
640
|
+
kamera_key: "TeachingsOfFortitude",
|
|
641
|
+
name: "Teachings of Fortitude",
|
|
642
|
+
rarity: 2,
|
|
643
|
+
family: :fortitude,
|
|
644
|
+
inventory_type: :development_material,
|
|
645
|
+
source_category: :talent_book,
|
|
646
|
+
source_sub_category: nil,
|
|
647
|
+
nation_name: :snezhnaya
|
|
648
|
+
).freeze
|
|
649
|
+
|
|
562
650
|
TEACHINGS_OF_FREEDOM = GenshinObject::Material.new(
|
|
563
651
|
kamera_key: "TeachingsOfFreedom",
|
|
564
652
|
name: "Teachings of Freedom",
|
|
@@ -570,6 +658,17 @@ module GenshinData
|
|
|
570
658
|
nation_name: :mondstadt
|
|
571
659
|
).freeze
|
|
572
660
|
|
|
661
|
+
TEACHINGS_OF_GLORY = GenshinObject::Material.new(
|
|
662
|
+
kamera_key: "TeachingsOfGlory",
|
|
663
|
+
name: "Teachings of Glory",
|
|
664
|
+
rarity: 2,
|
|
665
|
+
family: :glory,
|
|
666
|
+
inventory_type: :development_material,
|
|
667
|
+
source_category: :talent_book,
|
|
668
|
+
source_sub_category: nil,
|
|
669
|
+
nation_name: :snezhnaya
|
|
670
|
+
).freeze
|
|
671
|
+
|
|
573
672
|
TEACHINGS_OF_GOLD = GenshinObject::Material.new(
|
|
574
673
|
kamera_key: "TeachingsOfGold",
|
|
575
674
|
name: "Teachings of Gold",
|
|
@@ -229,6 +229,17 @@ module GenshinData
|
|
|
229
229
|
nation_name: :liyue
|
|
230
230
|
).freeze
|
|
231
231
|
|
|
232
|
+
CLARION_OF_THE_PALE_STAR_ARMY = GenshinObject::Material.new(
|
|
233
|
+
kamera_key: "ClarionOfThePaleStarArmy",
|
|
234
|
+
name: "Clarion of the Pale Star Army",
|
|
235
|
+
rarity: 4,
|
|
236
|
+
family: :pale_star,
|
|
237
|
+
inventory_type: :development_material,
|
|
238
|
+
source_category: :domain_material,
|
|
239
|
+
source_sub_category: nil,
|
|
240
|
+
nation_name: :snezhnaya
|
|
241
|
+
).freeze
|
|
242
|
+
|
|
232
243
|
COPPER_TALISMAN_OF_THE_FOREST_DEW = GenshinObject::Material.new(
|
|
233
244
|
kamera_key: "CopperTalismanOfTheForestDew",
|
|
234
245
|
name: "Copper Talisman of the Forest Dew",
|
|
@@ -394,6 +405,17 @@ module GenshinData
|
|
|
394
405
|
nation_name: :fontaine
|
|
395
406
|
).freeze
|
|
396
407
|
|
|
408
|
+
EXHILARATION_OF_THE_CELLARED_SPIRITUAL_NECTAR = GenshinObject::Material.new(
|
|
409
|
+
kamera_key: "ExhilarationOfTheCellaredSpiritualNectar",
|
|
410
|
+
name: "Exhilaration of the Cellared Spiritual Nectar",
|
|
411
|
+
rarity: 4,
|
|
412
|
+
family: :spiritual_nectar,
|
|
413
|
+
inventory_type: :development_material,
|
|
414
|
+
source_category: :domain_material,
|
|
415
|
+
source_sub_category: nil,
|
|
416
|
+
nation_name: :snezhnaya
|
|
417
|
+
).freeze
|
|
418
|
+
|
|
397
419
|
FETTERS_OF_THE_DANDELION_GLADIATOR = GenshinObject::Material.new(
|
|
398
420
|
kamera_key: "FettersOfTheDandelionGladiator",
|
|
399
421
|
name: "Fetters of the Dandelion Gladiator",
|
|
@@ -482,6 +504,17 @@ module GenshinData
|
|
|
482
504
|
nation_name: :liyue
|
|
483
505
|
).freeze
|
|
484
506
|
|
|
507
|
+
INTOXICATION_OF_THE_CELLARED_SPIRITUAL_NECTAR = GenshinObject::Material.new(
|
|
508
|
+
kamera_key: "IntoxicationOfTheCellaredSpiritualNectar",
|
|
509
|
+
name: "Intoxication of the Cellared Spiritual Nectar",
|
|
510
|
+
rarity: 3,
|
|
511
|
+
family: :spiritual_nectar,
|
|
512
|
+
inventory_type: :development_material,
|
|
513
|
+
source_category: :domain_material,
|
|
514
|
+
source_sub_category: nil,
|
|
515
|
+
nation_name: :snezhnaya
|
|
516
|
+
).freeze
|
|
517
|
+
|
|
485
518
|
IRON_TALISMAN_OF_THE_FOREST_DEW = GenshinObject::Material.new(
|
|
486
519
|
kamera_key: "IronTalismanOfTheForestDew",
|
|
487
520
|
name: "Iron Talisman of the Forest Dew",
|
|
@@ -581,6 +614,17 @@ module GenshinData
|
|
|
581
614
|
nation_name: :inazuma
|
|
582
615
|
).freeze
|
|
583
616
|
|
|
617
|
+
MEASURED_POUR_OF_THE_CELLARED_SPIRITUAL_NECTAR = GenshinObject::Material.new(
|
|
618
|
+
kamera_key: "MeasuredPourOfTheCellaredSpiritualNectar",
|
|
619
|
+
name: "Measured Pour of the Cellared Spiritual Nectar",
|
|
620
|
+
rarity: 2,
|
|
621
|
+
family: :spiritual_nectar,
|
|
622
|
+
inventory_type: :development_material,
|
|
623
|
+
source_category: :domain_material,
|
|
624
|
+
source_sub_category: nil,
|
|
625
|
+
nation_name: :snezhnaya
|
|
626
|
+
).freeze
|
|
627
|
+
|
|
584
628
|
MIST_VEILED_GOLD_ELIXIR = GenshinObject::Material.new(
|
|
585
629
|
kamera_key: "MistVeiledGoldElixir",
|
|
586
630
|
name: "Mist Veiled Gold Elixir",
|
|
@@ -636,6 +680,17 @@ module GenshinData
|
|
|
636
680
|
nation_name: :fontaine
|
|
637
681
|
).freeze
|
|
638
682
|
|
|
683
|
+
MUSTER_OF_THE_PALE_STAR_ARMY = GenshinObject::Material.new(
|
|
684
|
+
kamera_key: "MusterOfThePaleStarArmy",
|
|
685
|
+
name: "Muster of the Pale Star Army",
|
|
686
|
+
rarity: 3,
|
|
687
|
+
family: :pale_star,
|
|
688
|
+
inventory_type: :development_material,
|
|
689
|
+
source_category: :domain_material,
|
|
690
|
+
source_sub_category: nil,
|
|
691
|
+
nation_name: :snezhnaya
|
|
692
|
+
).freeze
|
|
693
|
+
|
|
639
694
|
NARUKAMIS_AFFECTION = GenshinObject::Material.new(
|
|
640
695
|
kamera_key: "NarukamisAffection",
|
|
641
696
|
name: "Narukami's Affection",
|
|
@@ -823,6 +878,28 @@ module GenshinData
|
|
|
823
878
|
nation_name: :sumeru
|
|
824
879
|
).freeze
|
|
825
880
|
|
|
881
|
+
REVELRY_OF_THE_CELLARED_SPIRITUAL_NECTAR = GenshinObject::Material.new(
|
|
882
|
+
kamera_key: "RevelryOfTheCellaredSpiritualNectar",
|
|
883
|
+
name: "Revelry of the Cellared Spiritual Nectar",
|
|
884
|
+
rarity: 5,
|
|
885
|
+
family: :spiritual_nectar,
|
|
886
|
+
inventory_type: :development_material,
|
|
887
|
+
source_category: :domain_material,
|
|
888
|
+
source_sub_category: nil,
|
|
889
|
+
nation_name: :snezhnaya
|
|
890
|
+
).freeze
|
|
891
|
+
|
|
892
|
+
RISE_OF_THE_PALE_STAR_ARMY = GenshinObject::Material.new(
|
|
893
|
+
kamera_key: "RiseOfThePaleStarArmy",
|
|
894
|
+
name: "Rise of the Pale Star Army",
|
|
895
|
+
rarity: 2,
|
|
896
|
+
family: :pale_star,
|
|
897
|
+
inventory_type: :development_material,
|
|
898
|
+
source_category: :domain_material,
|
|
899
|
+
source_sub_category: nil,
|
|
900
|
+
nation_name: :snezhnaya
|
|
901
|
+
).freeze
|
|
902
|
+
|
|
826
903
|
SCATTERED_PIECE_OF_DECARABIANS_DREAM = GenshinObject::Material.new(
|
|
827
904
|
kamera_key: "ScatteredPieceOfDecarabiansDream",
|
|
828
905
|
name: "Scattered Piece of Decarabian's Dream",
|
|
@@ -900,6 +977,50 @@ module GenshinData
|
|
|
900
977
|
nation_name: :nodkrai
|
|
901
978
|
).freeze
|
|
902
979
|
|
|
980
|
+
THE_FROST_EMPERORS_CEREMONY = GenshinObject::Material.new(
|
|
981
|
+
kamera_key: "TheFrostEmperorsCeremony",
|
|
982
|
+
name: "The Frost Emperor's Ceremony",
|
|
983
|
+
rarity: 3,
|
|
984
|
+
family: :frost_emperor,
|
|
985
|
+
inventory_type: :development_material,
|
|
986
|
+
source_category: :domain_material,
|
|
987
|
+
source_sub_category: nil,
|
|
988
|
+
nation_name: :snezhnaya
|
|
989
|
+
).freeze
|
|
990
|
+
|
|
991
|
+
THE_FROST_EMPERORS_FAREWELL = GenshinObject::Material.new(
|
|
992
|
+
kamera_key: "TheFrostEmperorsFarewell",
|
|
993
|
+
name: "The Frost Emperor's Farewell",
|
|
994
|
+
rarity: 5,
|
|
995
|
+
family: :frost_emperor,
|
|
996
|
+
inventory_type: :development_material,
|
|
997
|
+
source_category: :domain_material,
|
|
998
|
+
source_sub_category: nil,
|
|
999
|
+
nation_name: :snezhnaya
|
|
1000
|
+
).freeze
|
|
1001
|
+
|
|
1002
|
+
THE_FROST_EMPERORS_LAMENT = GenshinObject::Material.new(
|
|
1003
|
+
kamera_key: "TheFrostEmperorsLament",
|
|
1004
|
+
name: "The Frost Emperor's Lament",
|
|
1005
|
+
rarity: 4,
|
|
1006
|
+
family: :frost_emperor,
|
|
1007
|
+
inventory_type: :development_material,
|
|
1008
|
+
source_category: :domain_material,
|
|
1009
|
+
source_sub_category: nil,
|
|
1010
|
+
nation_name: :snezhnaya
|
|
1011
|
+
).freeze
|
|
1012
|
+
|
|
1013
|
+
THE_FROST_EMPERORS_REVIVAL = GenshinObject::Material.new(
|
|
1014
|
+
kamera_key: "TheFrostEmperorsRevival",
|
|
1015
|
+
name: "The Frost Emperor's Revival",
|
|
1016
|
+
rarity: 2,
|
|
1017
|
+
family: :frost_emperor,
|
|
1018
|
+
inventory_type: :development_material,
|
|
1019
|
+
source_category: :domain_material,
|
|
1020
|
+
source_sub_category: nil,
|
|
1021
|
+
nation_name: :snezhnaya
|
|
1022
|
+
).freeze
|
|
1023
|
+
|
|
903
1024
|
TILE_OF_DECARABIANS_TOWER = GenshinObject::Material.new(
|
|
904
1025
|
kamera_key: "TileOfDecarabiansTower",
|
|
905
1026
|
name: "Tile of Decarabian's Tower",
|
|
@@ -911,6 +1032,17 @@ module GenshinData
|
|
|
911
1032
|
nation_name: :mondstadt
|
|
912
1033
|
).freeze
|
|
913
1034
|
|
|
1035
|
+
TRIUMPH_OF_THE_PALE_STAR_ARMY = GenshinObject::Material.new(
|
|
1036
|
+
kamera_key: "TriumphOfThePaleStarArmy",
|
|
1037
|
+
name: "Triumph of the Pale Star Army",
|
|
1038
|
+
rarity: 5,
|
|
1039
|
+
family: :pale_star,
|
|
1040
|
+
inventory_type: :development_material,
|
|
1041
|
+
source_category: :domain_material,
|
|
1042
|
+
source_sub_category: nil,
|
|
1043
|
+
nation_name: :snezhnaya
|
|
1044
|
+
).freeze
|
|
1045
|
+
|
|
914
1046
|
UNYIELDING_DELUSION_OF_THE_FAR_NORTH_SCIONS = GenshinObject::Material.new(
|
|
915
1047
|
kamera_key: "UnyieldingDelusionOfTheFarNorthScions",
|
|
916
1048
|
name: "Unyielding Delusion of the Far-North Scions",
|
|
@@ -427,6 +427,17 @@ module GenshinData
|
|
|
427
427
|
nation_name: :natlan
|
|
428
428
|
).freeze
|
|
429
429
|
|
|
430
|
+
SEVERED_TAIL_OF_THE_SKY_ROAMER = GenshinObject::Material.new(
|
|
431
|
+
kamera_key: "SeveredTailOfTheSkyRoamer",
|
|
432
|
+
name: "Severed Tail of the Sky-Roamer",
|
|
433
|
+
rarity: 4,
|
|
434
|
+
family: nil,
|
|
435
|
+
inventory_type: :development_material,
|
|
436
|
+
source_category: :boss_loot,
|
|
437
|
+
source_sub_category: :world_boss_drop,
|
|
438
|
+
nation_name: :snezhnaya
|
|
439
|
+
).freeze
|
|
440
|
+
|
|
430
441
|
SMOLDERING_PEARL = GenshinObject::Material.new(
|
|
431
442
|
kamera_key: "SmolderingPearl",
|
|
432
443
|
name: "Smoldering Pearl",
|
|
@@ -493,6 +504,17 @@ module GenshinData
|
|
|
493
504
|
nation_name: :fontaine
|
|
494
505
|
).freeze
|
|
495
506
|
|
|
507
|
+
UNSCORCHED_BLOSSOM_BRANCH = GenshinObject::Material.new(
|
|
508
|
+
kamera_key: "UnscorchedBlossomBranch",
|
|
509
|
+
name: "Unscorched Blossom Branch",
|
|
510
|
+
rarity: 4,
|
|
511
|
+
family: nil,
|
|
512
|
+
inventory_type: :development_material,
|
|
513
|
+
source_category: :boss_loot,
|
|
514
|
+
source_sub_category: :world_boss_drop,
|
|
515
|
+
nation_name: :snezhnaya
|
|
516
|
+
).freeze
|
|
517
|
+
|
|
496
518
|
WATER_THAT_FAILED_TO_TRANSCEND = GenshinObject::Material.new(
|
|
497
519
|
kamera_key: "WaterThatFailedToTranscend",
|
|
498
520
|
name: "Water That Failed To Transcend",
|
|
@@ -489,6 +489,16 @@ module GenshinData
|
|
|
489
489
|
source_sub_category: :cooking
|
|
490
490
|
).freeze
|
|
491
491
|
|
|
492
|
+
RIMECURRANT = GenshinObject::Material.new(
|
|
493
|
+
kamera_key: "Rimecurrant",
|
|
494
|
+
name: "Rimecurrant",
|
|
495
|
+
rarity: 1,
|
|
496
|
+
family: nil,
|
|
497
|
+
inventory_type: :standard_material,
|
|
498
|
+
source_category: :gathering,
|
|
499
|
+
source_sub_category: :cooking
|
|
500
|
+
).freeze
|
|
501
|
+
|
|
492
502
|
RYE = GenshinObject::Material.new(
|
|
493
503
|
kamera_key: "Rye",
|
|
494
504
|
name: "Rye",
|
|
@@ -26,6 +26,15 @@ module GenshinData
|
|
|
26
26
|
)
|
|
27
27
|
)
|
|
28
28
|
|
|
29
|
+
CHARITY = GenshinObject::TalentBook.new(
|
|
30
|
+
family: :charity,
|
|
31
|
+
name: "Charity",
|
|
32
|
+
nation_name: :snezhnaya,
|
|
33
|
+
schedule: GenshinObject::Schedule.new(
|
|
34
|
+
mon_thurs: true
|
|
35
|
+
)
|
|
36
|
+
)
|
|
37
|
+
|
|
29
38
|
CONFLICT = GenshinObject::TalentBook.new(
|
|
30
39
|
family: :conflict,
|
|
31
40
|
name: "Conflict",
|
|
@@ -80,6 +89,15 @@ module GenshinData
|
|
|
80
89
|
)
|
|
81
90
|
)
|
|
82
91
|
|
|
92
|
+
FORTITUDE = GenshinObject::TalentBook.new(
|
|
93
|
+
family: :fortitude,
|
|
94
|
+
name: "Fortitude",
|
|
95
|
+
nation_name: :snezhnaya,
|
|
96
|
+
schedule: GenshinObject::Schedule.new(
|
|
97
|
+
tues_fri: true
|
|
98
|
+
)
|
|
99
|
+
)
|
|
100
|
+
|
|
83
101
|
FREEDOM = GenshinObject::TalentBook.new(
|
|
84
102
|
family: :freedom,
|
|
85
103
|
name: "Freedom",
|
|
@@ -89,6 +107,15 @@ module GenshinData
|
|
|
89
107
|
)
|
|
90
108
|
)
|
|
91
109
|
|
|
110
|
+
GLORY = GenshinObject::TalentBook.new(
|
|
111
|
+
family: :glory,
|
|
112
|
+
name: "Glory",
|
|
113
|
+
nation_name: :snezhnaya,
|
|
114
|
+
schedule: GenshinObject::Schedule.new(
|
|
115
|
+
wed_sat: true
|
|
116
|
+
)
|
|
117
|
+
)
|
|
118
|
+
|
|
92
119
|
GOLD = GenshinObject::TalentBook.new(
|
|
93
120
|
family: :gold,
|
|
94
121
|
name: "Gold",
|
|
@@ -189,6 +189,32 @@ module GenshinData
|
|
|
189
189
|
wed_sat: true
|
|
190
190
|
)
|
|
191
191
|
)
|
|
192
|
+
|
|
193
|
+
# Snezhnaya
|
|
194
|
+
PALE_STAR = GenshinObject::WeaponMaterialFamily.new(
|
|
195
|
+
family: :pale_star,
|
|
196
|
+
name: "Pale Star Army",
|
|
197
|
+
nation_name: :snezhnaya,
|
|
198
|
+
schedule: GenshinObject::Schedule.new(
|
|
199
|
+
mon_thurs: true
|
|
200
|
+
)
|
|
201
|
+
)
|
|
202
|
+
SPIRITUAL_NECTAR = GenshinObject::WeaponMaterialFamily.new(
|
|
203
|
+
family: :spiritual_nectar,
|
|
204
|
+
name: "Cellared Spiritual Nectar",
|
|
205
|
+
nation_name: :snezhnaya,
|
|
206
|
+
schedule: GenshinObject::Schedule.new(
|
|
207
|
+
tues_fri: true
|
|
208
|
+
)
|
|
209
|
+
)
|
|
210
|
+
FROST_EMPEROR = GenshinObject::WeaponMaterialFamily.new(
|
|
211
|
+
family: :frost_emperor,
|
|
212
|
+
name: "Frost Emperor's",
|
|
213
|
+
nation_name: :snezhnaya,
|
|
214
|
+
schedule: GenshinObject::Schedule.new(
|
|
215
|
+
wed_sat: true
|
|
216
|
+
)
|
|
217
|
+
)
|
|
192
218
|
end
|
|
193
219
|
end
|
|
194
220
|
end
|
|
@@ -89,6 +89,16 @@ module GenshinData
|
|
|
89
89
|
weapon_material_type: :aerosiderite
|
|
90
90
|
).freeze
|
|
91
91
|
|
|
92
|
+
COVENANT_OF_FROST_AND_SNOW = GenshinObject::Weapon.new(
|
|
93
|
+
kamera_key: "CovenantOfFrostAndSnow",
|
|
94
|
+
name: "Covenant of Frost and Snow",
|
|
95
|
+
rarity: 4,
|
|
96
|
+
weapon_type: :bow,
|
|
97
|
+
elite_material_type: :life_node,
|
|
98
|
+
standard_material_type: :chimeric,
|
|
99
|
+
weapon_material_type: :pale_star
|
|
100
|
+
).freeze
|
|
101
|
+
|
|
92
102
|
ELEGY_FOR_THE_END = GenshinObject::Weapon.new(
|
|
93
103
|
kamera_key: "ElegyForTheEnd",
|
|
94
104
|
name: "Elegy for the End",
|
|
@@ -109,6 +109,16 @@ module GenshinData
|
|
|
109
109
|
weapon_material_type: :wolf_tooth
|
|
110
110
|
).freeze
|
|
111
111
|
|
|
112
|
+
ECHOES_OF_THE_HEART = GenshinObject::Weapon.new(
|
|
113
|
+
kamera_key: "EchoesOfTheHeart",
|
|
114
|
+
name: "Echoes of the Heart",
|
|
115
|
+
rarity: 4,
|
|
116
|
+
weapon_type: :catalyst,
|
|
117
|
+
elite_material_type: :accreted,
|
|
118
|
+
standard_material_type: :ethereal,
|
|
119
|
+
weapon_material_type: :pale_star
|
|
120
|
+
).freeze
|
|
121
|
+
|
|
112
122
|
EMERALD_ORB = GenshinObject::Weapon.new(
|
|
113
123
|
kamera_key: "EmeraldOrb",
|
|
114
124
|
name: "Emerald Orb",
|
|
@@ -59,6 +59,16 @@ module GenshinData
|
|
|
59
59
|
weapon_material_type: :elixir
|
|
60
60
|
).freeze
|
|
61
61
|
|
|
62
|
+
BLADE_OF_ATONEMENT = GenshinObject::Weapon.new(
|
|
63
|
+
kamera_key: "BladeOfAtonement",
|
|
64
|
+
name: "Blade of Atonement",
|
|
65
|
+
rarity: 4,
|
|
66
|
+
weapon_type: :claymore,
|
|
67
|
+
elite_material_type: :life_node,
|
|
68
|
+
standard_material_type: :chimeric,
|
|
69
|
+
weapon_material_type: :pale_star
|
|
70
|
+
).freeze
|
|
71
|
+
|
|
62
72
|
BLOODTAINTED_GREATSWORD = GenshinObject::Weapon.new(
|
|
63
73
|
kamera_key: "BloodtaintedGreatsword",
|
|
64
74
|
name: "Bloodtainted Greatsword",
|
|
@@ -309,6 +309,16 @@ module GenshinData
|
|
|
309
309
|
weapon_material_type: :chains
|
|
310
310
|
).freeze
|
|
311
311
|
|
|
312
|
+
SONG_OF_THE_VIGIL = GenshinObject::Weapon.new(
|
|
313
|
+
kamera_key: "SongOfTheVigil",
|
|
314
|
+
name: "Song of the Vigil",
|
|
315
|
+
rarity: 4,
|
|
316
|
+
weapon_type: :polearm,
|
|
317
|
+
elite_material_type: :life_node,
|
|
318
|
+
standard_material_type: :ethereal,
|
|
319
|
+
weapon_material_type: :frost_emperor
|
|
320
|
+
).freeze
|
|
321
|
+
|
|
312
322
|
STAFF_OF_HOMA = GenshinObject::Weapon.new(
|
|
313
323
|
kamera_key: "StaffOfHoma",
|
|
314
324
|
name: "Staff of Homa",
|
|
@@ -129,6 +129,26 @@ module GenshinData
|
|
|
129
129
|
weapon_material_type: :decarabian
|
|
130
130
|
).freeze
|
|
131
131
|
|
|
132
|
+
EMBERWELL = GenshinObject::Weapon.new(
|
|
133
|
+
kamera_key: "Emberwell",
|
|
134
|
+
name: "Emberwell",
|
|
135
|
+
rarity: 4,
|
|
136
|
+
weapon_type: :sword,
|
|
137
|
+
elite_material_type: :accreted,
|
|
138
|
+
standard_material_type: :ethereal,
|
|
139
|
+
weapon_material_type: :pale_star
|
|
140
|
+
).freeze
|
|
141
|
+
|
|
142
|
+
# EXAIPHANES_BLADE = GenshinObject::Weapon.new(
|
|
143
|
+
# kamera_key: "ExaiphanesBlade",
|
|
144
|
+
# name: "Exaiphanes Blade",
|
|
145
|
+
# rarity: 5,
|
|
146
|
+
# weapon_type: :sword,
|
|
147
|
+
# elite_material_type: nil,
|
|
148
|
+
# standard_material_type: nil,
|
|
149
|
+
# weapon_material_type: nil
|
|
150
|
+
# ).freeze
|
|
151
|
+
|
|
132
152
|
FAVONIUS_SWORD = GenshinObject::Weapon.new(
|
|
133
153
|
kamera_key: "FavoniusSword",
|
|
134
154
|
name: "Favonius Sword",
|
|
@@ -479,6 +499,16 @@ module GenshinData
|
|
|
479
499
|
weapon_material_type: :coral
|
|
480
500
|
).freeze
|
|
481
501
|
|
|
502
|
+
WHITELAKE_FROSTFEATHER = GenshinObject::Weapon.new(
|
|
503
|
+
kamera_key: "WhitelakeFrostfeather",
|
|
504
|
+
name: "Whitelake Frostfeather",
|
|
505
|
+
rarity: 5,
|
|
506
|
+
weapon_type: :sword,
|
|
507
|
+
elite_material_type: :life_node,
|
|
508
|
+
standard_material_type: :chimeric,
|
|
509
|
+
weapon_material_type: :spiritual_nectar
|
|
510
|
+
).freeze
|
|
511
|
+
|
|
482
512
|
WOLF_FANG = GenshinObject::Weapon.new(
|
|
483
513
|
kamera_key: "WolfFang",
|
|
484
514
|
name: "Wolf-Fang",
|
|
@@ -26,6 +26,12 @@ module GenshinData
|
|
|
26
26
|
boss_material: "HurricaneSeed"
|
|
27
27
|
)
|
|
28
28
|
|
|
29
|
+
CHIMERIC_WINGED_LION = GenshinObject::WorldBoss.new(
|
|
30
|
+
name: "Chimeric Winged Lion",
|
|
31
|
+
nation_name: :snezhnaya,
|
|
32
|
+
boss_material: "SeveredTailOfTheSkyRoamer"
|
|
33
|
+
)
|
|
34
|
+
|
|
29
35
|
CORAL_DEFENDERS = GenshinObject::WorldBoss.new(
|
|
30
36
|
name: "Coral Defenders",
|
|
31
37
|
nation_name: :inazuma,
|
|
@@ -122,6 +128,12 @@ module GenshinData
|
|
|
122
128
|
boss_material: "ArtificedSpareClockworkComponentCoppelius"
|
|
123
129
|
)
|
|
124
130
|
|
|
131
|
+
IMMORTAL_CONSTRUCT = GenshinObject::WorldBoss.new(
|
|
132
|
+
name: "Immortal Construct",
|
|
133
|
+
nation_name: :snezhnaya,
|
|
134
|
+
boss_material: "UnscorchedBlossomBranch"
|
|
135
|
+
)
|
|
136
|
+
|
|
125
137
|
INIQUITOUS_BAPTIST = GenshinObject::WorldBoss.new(
|
|
126
138
|
name: "Iniquitous Baptist",
|
|
127
139
|
nation_name: :sumeru,
|
data/lib/teyvatdb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teyvatdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Haberer
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: exe
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-08-21 00:00:00.000000000 Z
|
|
11
12
|
dependencies: []
|
|
12
13
|
description: Gem to provide basic genshin data to my other projects
|
|
13
14
|
email:
|
|
@@ -89,6 +90,7 @@ metadata:
|
|
|
89
90
|
homepage_uri: https://github.com/bhaberer/teyvatdb
|
|
90
91
|
changelog_uri: https://github.com/bhaberer/teyvatdb/blob/main/CHANGELOG.md
|
|
91
92
|
rubygems_mfa_required: 'true'
|
|
93
|
+
post_install_message:
|
|
92
94
|
rdoc_options: []
|
|
93
95
|
require_paths:
|
|
94
96
|
- lib
|
|
@@ -103,7 +105,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
103
105
|
- !ruby/object:Gem::Version
|
|
104
106
|
version: '0'
|
|
105
107
|
requirements: []
|
|
106
|
-
rubygems_version:
|
|
108
|
+
rubygems_version: 3.5.23
|
|
109
|
+
signing_key:
|
|
107
110
|
specification_version: 4
|
|
108
111
|
summary: TeyvatDB is a gem to provide Genshin game data in a standardized way across
|
|
109
112
|
my projects
|