teyvatdb 0.5.9.2 → 0.5.9.3
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/.rubocop_todo.yml +1 -2
- data/CHANGELOG.md +21 -6
- data/Gemfile.lock +1 -1
- data/lib/genshin_data/artifact_sets/artifact_set_data.rb +49 -1
- data/lib/genshin_data/characters/character_data.rb +37 -3
- data/lib/genshin_data/characters.rb +3 -1
- data/lib/genshin_data/materials/development/elite_monster_drops_data.rb +64 -32
- data/lib/genshin_data/materials/development/local_specialty_data.rb +11 -0
- data/lib/genshin_data/materials/development/talent_books_data.rb +3 -3
- data/lib/genshin_data/materials/development/world_boss_drops_data.rb +12 -1
- data/lib/genshin_data/weapons/weapon_data/catalysts.rb +10 -0
- data/lib/genshin_data/weapons/weapon_data/swords.rb +10 -0
- data/lib/genshin_data/world_bosses/world_boss_data.rb +6 -0
- data/lib/genshin_object/character.rb +2 -0
- data/lib/teyvatdb/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4685410e38ea7500c634d487c4effe3d97b292a8bffbe981cc3ad13f96f715a7
|
|
4
|
+
data.tar.gz: 17ab830d8765b3a8b57a6573a631a44e20fdde4c2d53261924bc49fa82247a6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d8bae1c5ecbfb96b3395317f81d5b190aa174866e00c1166d8259aa486ad08f1d662c3791c9dba07196388fdeba1769a5f7096237474ea03c62ff8fa146844b
|
|
7
|
+
data.tar.gz: 2939e781a27f4666b14907ae9e408d32e5df4e7425dc82e79cb133883aa809f036bc6c4270538605cf10865a717a745744905133d06c5b683b06b370b33fbc59
|
data/.rubocop_todo.yml
CHANGED
|
@@ -31,7 +31,7 @@ Metrics/MethodLength:
|
|
|
31
31
|
# Offense count: 4
|
|
32
32
|
# Configuration parameters: CountComments, CountAsOne.
|
|
33
33
|
Metrics/ModuleLength:
|
|
34
|
-
Max:
|
|
34
|
+
Max: 3000
|
|
35
35
|
|
|
36
36
|
# Offense count: 3
|
|
37
37
|
# Configuration parameters: CountKeywordArgs, MaxOptionalParameters.
|
|
@@ -47,4 +47,3 @@ Style/Documentation:
|
|
|
47
47
|
- 'lib/teyvatdb/artifact_sets.rb'
|
|
48
48
|
- 'lib/teyvatdb/characters.rb'
|
|
49
49
|
- 'lib/teyvatdb/weapons.rb'
|
|
50
|
-
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
|
-
## [0.5.9.
|
|
2
|
-
- Add
|
|
1
|
+
## [0.5.9.3 / Luna IV (phase 2)] - 2026-02-16
|
|
2
|
+
- Add new Characters
|
|
3
|
+
- Zibai (5) (Luna IV)
|
|
4
|
+
- Illuga (4) (Luna IV)
|
|
5
|
+
- Add new Weapons
|
|
6
|
+
- Nocturne's Curtain Call (5)
|
|
7
|
+
- Lightbearing Moonshard (5)
|
|
8
|
+
- Add new Artifact Sets
|
|
9
|
+
- Aubade of Morningstar and Moon
|
|
10
|
+
- A Day Carved From Rising Winds
|
|
11
|
+
- Add new World Boss
|
|
12
|
+
- Remnant of the Dreadwing
|
|
13
|
+
|
|
14
|
+
## [0.5.9.2 / Luna I (phase 2), II, III, IV (phase 1)] - 2026-01-17
|
|
15
|
+
- Add new Weapons
|
|
3
16
|
- Athame Artis (5)
|
|
4
17
|
- Reliquary of Truth (5)
|
|
5
18
|
- The Daybreak Chronicles (5)
|
|
@@ -7,11 +20,13 @@
|
|
|
7
20
|
- Rainbow Serpents Rain Bow (4)
|
|
8
21
|
- Sacrificer's Staff (4)
|
|
9
22
|
- Add New Characters
|
|
10
|
-
- Columbina (5)
|
|
11
|
-
- Durin (5)
|
|
12
|
-
-
|
|
23
|
+
- Columbina (5) (Luna IV)
|
|
24
|
+
- Durin (5) (Luna III)
|
|
25
|
+
- Jahoda (4) (Luna III)
|
|
13
26
|
- Nefer (5)
|
|
14
|
-
-
|
|
27
|
+
- Flins (5) (Updated)
|
|
28
|
+
- Add new Weekly Boss
|
|
29
|
+
- Doctor
|
|
15
30
|
|
|
16
31
|
## [0.5.9.1 / Luna I (phase 1)] - 2025-09-11
|
|
17
32
|
- Fix Ineffa (was Inefa -_-)
|
data/Gemfile.lock
CHANGED
|
@@ -4,11 +4,36 @@
|
|
|
4
4
|
|
|
5
5
|
module GenshinData
|
|
6
6
|
module ArtifactSets
|
|
7
|
+
# Listing of all Artifact sets
|
|
7
8
|
module ArtifactSetData
|
|
8
9
|
def self.all
|
|
9
10
|
constants.map { |x| GenshinData::ArtifactSets::ArtifactSetData.const_get(x) }
|
|
10
11
|
end
|
|
11
12
|
|
|
13
|
+
A_DAY_CARVED_FROM_RISING_WINDS = GenshinObject::ArtifactSet.new(
|
|
14
|
+
kamera_key: "ADayCarvedFromRisingWinds",
|
|
15
|
+
name: "A Day Carved From Rising Winds",
|
|
16
|
+
bonuses: [
|
|
17
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%"]),
|
|
18
|
+
GenshinObject::ArtifactSetBonus.new(
|
|
19
|
+
pieces_count: 4,
|
|
20
|
+
bonus: [
|
|
21
|
+
"After a Normal Attack, Charged Attack, Elemental Skill or Elemental Burst hits an opponent, gain the Blessing of Pastoral Winds effect for 6s: ATK is increased by 25%.",
|
|
22
|
+
"If the equipping character has completed Witch's Homework, Blessing of Pastoral Winds will be upgraded to Resolve of Pastoral Winds, which also increases the CRIT Rate of the equipping character by an additional 20%.",
|
|
23
|
+
"This effect can be triggered even when the character is off-field."
|
|
24
|
+
]
|
|
25
|
+
)
|
|
26
|
+
],
|
|
27
|
+
max_rarity: 5,
|
|
28
|
+
slots: {
|
|
29
|
+
flower: true,
|
|
30
|
+
plume: true,
|
|
31
|
+
sands: true,
|
|
32
|
+
goblet: true,
|
|
33
|
+
circlet: true
|
|
34
|
+
}
|
|
35
|
+
).freeze
|
|
36
|
+
|
|
12
37
|
ARCHAIC_PETRA = GenshinObject::ArtifactSet.new(
|
|
13
38
|
kamera_key: "ArchaicPetra",
|
|
14
39
|
name: "Archaic Petra",
|
|
@@ -32,6 +57,30 @@ module GenshinData
|
|
|
32
57
|
}
|
|
33
58
|
).freeze
|
|
34
59
|
|
|
60
|
+
AUBADE_OF_MORNINGSTAR_AND_MOON = GenshinObject::ArtifactSet.new(
|
|
61
|
+
kamera_key: "AubadeOfMorningstarAndMoon",
|
|
62
|
+
name: "Aubade of Morningstar and Moon",
|
|
63
|
+
bonuses: [
|
|
64
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80"]),
|
|
65
|
+
GenshinObject::ArtifactSetBonus.new(
|
|
66
|
+
pieces_count: 4,
|
|
67
|
+
bonus: [
|
|
68
|
+
"When the equipping character is off-field, Lunar Reaction DMG is increased by 20%.",
|
|
69
|
+
"When the party's Moonsign Level is at least Ascendant Gleam, Lunar Reaction DMG will be further increased by 40%.",
|
|
70
|
+
"This effect will disappear after the equipping character is active for 3s."
|
|
71
|
+
]
|
|
72
|
+
)
|
|
73
|
+
],
|
|
74
|
+
max_rarity: 5,
|
|
75
|
+
slots: {
|
|
76
|
+
flower: true,
|
|
77
|
+
plume: true,
|
|
78
|
+
sands: true,
|
|
79
|
+
goblet: true,
|
|
80
|
+
circlet: true
|
|
81
|
+
}
|
|
82
|
+
).freeze
|
|
83
|
+
|
|
35
84
|
BLIZZARD_STRAYER = GenshinObject::ArtifactSet.new(
|
|
36
85
|
kamera_key: "BlizzardStrayer",
|
|
37
86
|
name: "Blizzard Strayer",
|
|
@@ -504,7 +553,6 @@ module GenshinData
|
|
|
504
553
|
}
|
|
505
554
|
).freeze
|
|
506
555
|
|
|
507
|
-
|
|
508
556
|
NIGHTTIME_WHISPERS_IN_THE_ECHOING_WOODS = GenshinObject::ArtifactSet.new(
|
|
509
557
|
kamera_key: "NighttimeWhispersInTheEchoingWoods",
|
|
510
558
|
name: "Nighttime Whispers in the Echoing Woods",
|
|
@@ -357,7 +357,7 @@ module GenshinData
|
|
|
357
357
|
ascension_enemy_material_name: :slime,
|
|
358
358
|
talent_book_name: :moonlight,
|
|
359
359
|
talent_rare_material_name: :slime,
|
|
360
|
-
talent_boss_material_name: "MaskOfTheVirtuousDoctor"
|
|
360
|
+
talent_boss_material_name: "MaskOfTheVirtuousDoctor"
|
|
361
361
|
).freeze
|
|
362
362
|
|
|
363
363
|
CYNO = GenshinObject::Character.new(
|
|
@@ -476,7 +476,7 @@ module GenshinData
|
|
|
476
476
|
ascension_enemy_material_name: :warrant,
|
|
477
477
|
talent_book_name: :ballad,
|
|
478
478
|
talent_rare_material_name: :warrant,
|
|
479
|
-
talent_boss_material_name: "ErodedSunfire"
|
|
479
|
+
talent_boss_material_name: "ErodedSunfire"
|
|
480
480
|
).freeze
|
|
481
481
|
|
|
482
482
|
EMILIE = GenshinObject::Character.new(
|
|
@@ -575,7 +575,7 @@ module GenshinData
|
|
|
575
575
|
weapon_type: :polearm,
|
|
576
576
|
talent_book_name: :vagrancy,
|
|
577
577
|
talent_rare_material_name: :shaft,
|
|
578
|
-
talent_boss_material_name:
|
|
578
|
+
talent_boss_material_name: "AscendedSampleQueen",
|
|
579
579
|
ascension_boss_material_name: "PrecisionKuuvahkiStampingDie",
|
|
580
580
|
ascension_gathering_material_name: "FrostlampFlower",
|
|
581
581
|
ascension_enemy_material_name: :shaft
|
|
@@ -717,6 +717,23 @@ module GenshinData
|
|
|
717
717
|
ascension_enemy_material_name: :fang
|
|
718
718
|
).freeze
|
|
719
719
|
|
|
720
|
+
ILLUGA = GenshinObject::Character.new(
|
|
721
|
+
kamera_key: "Illuga",
|
|
722
|
+
name: "Illuga",
|
|
723
|
+
nation_name: :nodkrai,
|
|
724
|
+
rarity: 4,
|
|
725
|
+
constellation_three_bonus: :burst,
|
|
726
|
+
constellation_five_bonus: :skill,
|
|
727
|
+
element: :geo,
|
|
728
|
+
weapon_type: :polearm,
|
|
729
|
+
ascension_boss_material_name: "CyclicMilitaryKuuvahkiCore",
|
|
730
|
+
ascension_gathering_material_name: "PineAmber",
|
|
731
|
+
ascension_enemy_material_name: :shaft,
|
|
732
|
+
talent_book_name: :elysium,
|
|
733
|
+
talent_rare_material_name: :shaft,
|
|
734
|
+
talent_boss_material_name: "ErodedHorn"
|
|
735
|
+
).freeze
|
|
736
|
+
|
|
720
737
|
INEFFA = GenshinObject::Character.new(
|
|
721
738
|
kamera_key: "Ineffa",
|
|
722
739
|
name: "Ineffa",
|
|
@@ -1838,6 +1855,23 @@ module GenshinData
|
|
|
1838
1855
|
ascension_gathering_material_name: "CorLapis",
|
|
1839
1856
|
ascension_enemy_material_name: :slime
|
|
1840
1857
|
).freeze
|
|
1858
|
+
|
|
1859
|
+
ZIBAI = GenshinObject::Character.new(
|
|
1860
|
+
kamera_key: "Zibai",
|
|
1861
|
+
name: "Zibai",
|
|
1862
|
+
nation_name: :liyue,
|
|
1863
|
+
rarity: 5,
|
|
1864
|
+
constellation_three_bonus: :skill,
|
|
1865
|
+
constellation_five_bonus: :burst,
|
|
1866
|
+
element: :geo,
|
|
1867
|
+
weapon_type: :sword,
|
|
1868
|
+
ascension_boss_material_name: "RemnantOfTheDreadwing",
|
|
1869
|
+
ascension_gathering_material_name: "GlazeLily",
|
|
1870
|
+
ascension_enemy_material_name: :warrant,
|
|
1871
|
+
talent_book_name: :gold,
|
|
1872
|
+
talent_rare_material_name: :warrant,
|
|
1873
|
+
talent_boss_material_name: "AscendedSampleQueen"
|
|
1874
|
+
).freeze
|
|
1841
1875
|
end
|
|
1842
1876
|
end
|
|
1843
1877
|
end
|
|
@@ -84,7 +84,8 @@ module GenshinData
|
|
|
84
84
|
CharacterData::YAOYAO,
|
|
85
85
|
CharacterData::YELAN,
|
|
86
86
|
CharacterData::YUN_JIN,
|
|
87
|
-
CharacterData::ZHONGLI
|
|
87
|
+
CharacterData::ZHONGLI,
|
|
88
|
+
CharacterData::ZIBAI
|
|
88
89
|
]
|
|
89
90
|
end
|
|
90
91
|
|
|
@@ -137,6 +138,7 @@ module GenshinData
|
|
|
137
138
|
CharacterData::AINO,
|
|
138
139
|
CharacterData::COLUMBINA,
|
|
139
140
|
CharacterData::FLINS,
|
|
141
|
+
CharacterData::ILLUGA,
|
|
140
142
|
CharacterData::JAHODA,
|
|
141
143
|
CharacterData::LAUMA,
|
|
142
144
|
CharacterData::NEFER
|
|
@@ -9,44 +9,22 @@ module GenshinData
|
|
|
9
9
|
constants.map { |x| GenshinData::Materials::Development::EliteMonsterLootDropsData.const_get(x) }
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
kamera_key: "
|
|
14
|
-
name: "
|
|
15
|
-
rarity: 3,
|
|
16
|
-
family: :abyss_leaf,
|
|
17
|
-
inventory_type: :development_material,
|
|
18
|
-
source_category: :monster_loot,
|
|
19
|
-
source_sub_category: :elite_drop,
|
|
20
|
-
nation_name: nil
|
|
21
|
-
).freeze
|
|
22
|
-
|
|
23
|
-
ILLUSORY_LEAFCOIL = GenshinObject::Material.new(
|
|
24
|
-
kamera_key: "IllusoryLeafcoil",
|
|
25
|
-
name: "Illusory Leafcoil",
|
|
26
|
-
rarity: 4,
|
|
27
|
-
family: :abyss_leaf,
|
|
28
|
-
inventory_type: :development_material,
|
|
29
|
-
source_category: :monster_loot,
|
|
30
|
-
source_sub_category: :elite_drop,
|
|
31
|
-
nation_name: nil
|
|
32
|
-
).freeze
|
|
33
|
-
|
|
34
|
-
REFRACTIVE_BUD = GenshinObject::Material.new(
|
|
35
|
-
kamera_key: "RefractiveBud",
|
|
36
|
-
name: "Refractive Bud",
|
|
12
|
+
A_FLOWER_YET_TO_BLOOM = GenshinObject::Material.new(
|
|
13
|
+
kamera_key: "AFlowerYetToBloom",
|
|
14
|
+
name: "A Flower Yet to Bloom",
|
|
37
15
|
rarity: 2,
|
|
38
|
-
family: :
|
|
16
|
+
family: :rogue_flower,
|
|
39
17
|
inventory_type: :development_material,
|
|
40
18
|
source_category: :monster_loot,
|
|
41
19
|
source_sub_category: :elite_drop,
|
|
42
20
|
nation_name: nil
|
|
43
21
|
).freeze
|
|
44
22
|
|
|
45
|
-
|
|
46
|
-
kamera_key: "
|
|
47
|
-
name: "
|
|
48
|
-
rarity:
|
|
49
|
-
family: :
|
|
23
|
+
ABERRANT_CORE_OF_THE_DEEP_SHADOW = GenshinObject::Material.new(
|
|
24
|
+
kamera_key: "AberrantCoreOfTheDeepShadow",
|
|
25
|
+
name: "Aberrant Core of the Deep Shadow",
|
|
26
|
+
rarity: 3,
|
|
27
|
+
family: :deep_shadow,
|
|
50
28
|
inventory_type: :development_material,
|
|
51
29
|
source_category: :monster_loot,
|
|
52
30
|
source_sub_category: :elite_drop,
|
|
@@ -86,6 +64,17 @@ module GenshinData
|
|
|
86
64
|
nation_name: nil
|
|
87
65
|
).freeze
|
|
88
66
|
|
|
67
|
+
BEWILDERING_BROADLEAF = GenshinObject::Material.new(
|
|
68
|
+
kamera_key: "BewilderingBroadleaf",
|
|
69
|
+
name: "Bewildering Broadleaf",
|
|
70
|
+
rarity: 3,
|
|
71
|
+
family: :abyss_leaf,
|
|
72
|
+
inventory_type: :development_material,
|
|
73
|
+
source_category: :monster_loot,
|
|
74
|
+
source_sub_category: :elite_drop,
|
|
75
|
+
nation_name: nil
|
|
76
|
+
).freeze
|
|
77
|
+
|
|
89
78
|
BLACK_BRONZE_HORN = GenshinObject::Material.new(
|
|
90
79
|
kamera_key: "BlackBronzeHorn",
|
|
91
80
|
name: "Black Bronze Horn",
|
|
@@ -394,6 +383,17 @@ module GenshinData
|
|
|
394
383
|
nation_name: nil
|
|
395
384
|
).freeze
|
|
396
385
|
|
|
386
|
+
FRACTURED_EYE_OF_THE_DEEP_SHADOW = GenshinObject::Material.new(
|
|
387
|
+
kamera_key: "FracturedEyeOfTheDeepShadow",
|
|
388
|
+
name: "Fractured Eye of the Deep Shadow",
|
|
389
|
+
rarity: 2,
|
|
390
|
+
family: :deep_shadow,
|
|
391
|
+
inventory_type: :development_material,
|
|
392
|
+
source_category: :monster_loot,
|
|
393
|
+
source_sub_category: :elite_drop,
|
|
394
|
+
nation_name: nil
|
|
395
|
+
).freeze
|
|
396
|
+
|
|
397
397
|
FRAGILE_BONE_SHARD = GenshinObject::Material.new(
|
|
398
398
|
kamera_key: "FragileBoneShard",
|
|
399
399
|
name: "Fragile Bone Shard",
|
|
@@ -482,6 +482,17 @@ module GenshinData
|
|
|
482
482
|
nation_name: nil
|
|
483
483
|
).freeze
|
|
484
484
|
|
|
485
|
+
HOOKER_BEAK_OF_THE_DEEP_SHADOW = GenshinObject::Material.new(
|
|
486
|
+
kamera_key: "HookedBeakOfTheDeepShadow",
|
|
487
|
+
name: "Hooked Beak of the Deep Shadow",
|
|
488
|
+
rarity: 4,
|
|
489
|
+
family: :deep_shadow,
|
|
490
|
+
inventory_type: :development_material,
|
|
491
|
+
source_category: :monster_loot,
|
|
492
|
+
source_sub_category: :elite_drop,
|
|
493
|
+
nation_name: nil
|
|
494
|
+
).freeze
|
|
495
|
+
|
|
485
496
|
HUNTERS_SACRIFICIAL_KNIFE = GenshinObject::Material.new(
|
|
486
497
|
kamera_key: "HuntersSacrificialKnife",
|
|
487
498
|
name: "Hunters Sacrificial Knife",
|
|
@@ -526,6 +537,17 @@ module GenshinData
|
|
|
526
537
|
nation_name: nil
|
|
527
538
|
).freeze
|
|
528
539
|
|
|
540
|
+
ILLUSORY_LEAFCOIL = GenshinObject::Material.new(
|
|
541
|
+
kamera_key: "IllusoryLeafcoil",
|
|
542
|
+
name: "Illusory Leafcoil",
|
|
543
|
+
rarity: 4,
|
|
544
|
+
family: :abyss_leaf,
|
|
545
|
+
inventory_type: :development_material,
|
|
546
|
+
source_category: :monster_loot,
|
|
547
|
+
source_sub_category: :elite_drop,
|
|
548
|
+
nation_name: nil
|
|
549
|
+
).freeze
|
|
550
|
+
|
|
529
551
|
INACTIVATED_FUNGAL_NUCLEUS = GenshinObject::Material.new(
|
|
530
552
|
kamera_key: "InactivatedFungalNucleus",
|
|
531
553
|
name: "Inactivated Fungal Nucleus",
|
|
@@ -669,7 +691,6 @@ module GenshinData
|
|
|
669
691
|
nation_name: nil
|
|
670
692
|
).freeze
|
|
671
693
|
|
|
672
|
-
|
|
673
694
|
NEWBORN_TAINTED_HYDRO_PHANTASM = GenshinObject::Material.new(
|
|
674
695
|
kamera_key: "NewbornTaintedHydroPhantasm",
|
|
675
696
|
name: "Newborn Tainted Hydro Phantasm",
|
|
@@ -747,6 +768,17 @@ module GenshinData
|
|
|
747
768
|
nation_name: nil
|
|
748
769
|
).freeze
|
|
749
770
|
|
|
771
|
+
REFRACTIVE_BUD = GenshinObject::Material.new(
|
|
772
|
+
kamera_key: "RefractiveBud",
|
|
773
|
+
name: "Refractive Bud",
|
|
774
|
+
rarity: 2,
|
|
775
|
+
family: :abyss_leaf,
|
|
776
|
+
inventory_type: :development_material,
|
|
777
|
+
source_category: :monster_loot,
|
|
778
|
+
source_sub_category: :elite_drop,
|
|
779
|
+
nation_name: nil
|
|
780
|
+
).freeze
|
|
781
|
+
|
|
750
782
|
RIFT_CORE = GenshinObject::Material.new(
|
|
751
783
|
kamera_key: "RiftCore",
|
|
752
784
|
name: "Rift Core",
|
|
@@ -339,6 +339,17 @@ module GenshinData
|
|
|
339
339
|
nation_name: :sumeru
|
|
340
340
|
).freeze
|
|
341
341
|
|
|
342
|
+
PINE_AMBER = GenshinObject::Material.new(
|
|
343
|
+
kamera_key: "PineAmber",
|
|
344
|
+
name: "Pine Amber",
|
|
345
|
+
rarity: 1,
|
|
346
|
+
family: nil,
|
|
347
|
+
inventory_type: :standard_material,
|
|
348
|
+
source_category: :gathering,
|
|
349
|
+
source_sub_category: :local_specialty,
|
|
350
|
+
nation_name: :nodkrai
|
|
351
|
+
).freeze
|
|
352
|
+
|
|
342
353
|
PHILANEMO_MUSHROOM = GenshinObject::Material.new(
|
|
343
354
|
kamera_key: "PhilanemoMushroom",
|
|
344
355
|
name: "Philanemo Mushroom",
|
|
@@ -229,7 +229,7 @@ module GenshinData
|
|
|
229
229
|
nation_name: :inazuma
|
|
230
230
|
).freeze
|
|
231
231
|
|
|
232
|
-
GUIDE_TO_VAGRANCY =
|
|
232
|
+
GUIDE_TO_VAGRANCY = GenshinObject::Material.new(
|
|
233
233
|
kamera_key: "GuideToVagrancy",
|
|
234
234
|
name: "Guide to Vagrancy",
|
|
235
235
|
rarity: 3,
|
|
@@ -460,7 +460,7 @@ module GenshinData
|
|
|
460
460
|
nation_name: :inazuma
|
|
461
461
|
).freeze
|
|
462
462
|
|
|
463
|
-
PHILOSOPHIES_OF_VAGRANCY =
|
|
463
|
+
PHILOSOPHIES_OF_VAGRANCY = GenshinObject::Material.new(
|
|
464
464
|
kamera_key: "PhilosophiesOfVagrancy",
|
|
465
465
|
name: "Philosophies of Vagrancy",
|
|
466
466
|
rarity: 4,
|
|
@@ -691,7 +691,7 @@ module GenshinData
|
|
|
691
691
|
nation_name: :inazuma
|
|
692
692
|
).freeze
|
|
693
693
|
|
|
694
|
-
TEACHINGS_OF_VAGRANCY =
|
|
694
|
+
TEACHINGS_OF_VAGRANCY = GenshinObject::Material.new(
|
|
695
695
|
kamera_key: "TeachingsOfVagrancy",
|
|
696
696
|
name: "Teachings of Vagrancy",
|
|
697
697
|
rarity: 2,
|
|
@@ -352,7 +352,18 @@ module GenshinData
|
|
|
352
352
|
|
|
353
353
|
RADIANT_ANTLER = GenshinObject::Material.new(
|
|
354
354
|
kamera_key: "RadiantAntler",
|
|
355
|
-
name: "
|
|
355
|
+
name: "Radiant Antler",
|
|
356
|
+
rarity: 4,
|
|
357
|
+
family: nil,
|
|
358
|
+
inventory_type: :development_material,
|
|
359
|
+
source_category: :boss_loot,
|
|
360
|
+
source_sub_category: :world_boss_drop,
|
|
361
|
+
nation_name: :nodkrai
|
|
362
|
+
).freeze
|
|
363
|
+
|
|
364
|
+
REMNANT_OF_THE_DREADWING = GenshinObject::Material.new(
|
|
365
|
+
kamera_key: "RemnantOfTheDreadwing",
|
|
366
|
+
name: "Remnant of the dreadwing",
|
|
356
367
|
rarity: 4,
|
|
357
368
|
family: nil,
|
|
358
369
|
inventory_type: :development_material,
|
|
@@ -259,6 +259,16 @@ module GenshinData
|
|
|
259
259
|
weapon_material_type: :artful_device
|
|
260
260
|
).freeze
|
|
261
261
|
|
|
262
|
+
NOCTURNS_CURTAIN_CALL = GenshinObject::Weapon.new(
|
|
263
|
+
kamera_key: "NocturnesCurtainCall",
|
|
264
|
+
name: "Nocturne's Curtain Call",
|
|
265
|
+
rarity: 5,
|
|
266
|
+
weapon_type: :catalyst,
|
|
267
|
+
elite_material_type: :deep_shadow,
|
|
268
|
+
standard_material_type: :warrant,
|
|
269
|
+
weapon_material_type: :far_north_scions
|
|
270
|
+
).freeze
|
|
271
|
+
|
|
262
272
|
OATHSWORN_EYE = GenshinObject::Weapon.new(
|
|
263
273
|
kamera_key: "OathswornEye",
|
|
264
274
|
name: "Oathsworn Eye",
|
|
@@ -259,6 +259,16 @@ module GenshinData
|
|
|
259
259
|
weapon_material_type: :forest_dew
|
|
260
260
|
).freeze
|
|
261
261
|
|
|
262
|
+
LIGHTBEARING_MOONSHARD = GenshinObject::Weapon.new(
|
|
263
|
+
kamera_key: "LightbearingMoonshard",
|
|
264
|
+
name: "Lightbearing Moonshard",
|
|
265
|
+
rarity: 5,
|
|
266
|
+
weapon_type: :sword,
|
|
267
|
+
elite_material_type: :mistshroud,
|
|
268
|
+
standard_material_type: :shaft,
|
|
269
|
+
weapon_material_type: :aerosiderite
|
|
270
|
+
).freeze
|
|
271
|
+
|
|
262
272
|
LIONS_ROAR = GenshinObject::Weapon.new(
|
|
263
273
|
kamera_key: "LionsRoar",
|
|
264
274
|
name: "Lions Roar",
|
|
@@ -146,6 +146,12 @@ module GenshinData
|
|
|
146
146
|
boss_material: "SparklessStatueCore"
|
|
147
147
|
)
|
|
148
148
|
|
|
149
|
+
LORD_OF_THE_HIDDEN_DEPTHS_WHISPERER_OF_NIGHTMARES = GenshinObject::WorldBoss.new(
|
|
150
|
+
name: "Lord of the Hidden Depths: Whisperer of Nightmares",
|
|
151
|
+
nation_name: :inazuma,
|
|
152
|
+
boss_material: "RemnantOfTheDreadwing"
|
|
153
|
+
)
|
|
154
|
+
|
|
149
155
|
MAGUU_KENKI = GenshinObject::WorldBoss.new(
|
|
150
156
|
name: "Maguu Kenki",
|
|
151
157
|
nation_name: :inazuma,
|
|
@@ -8,6 +8,7 @@ module GenshinObject
|
|
|
8
8
|
:talent_book_name, :talent_rare_material_name, :talent_boss_material_name,
|
|
9
9
|
:ascension_boss_material_name, :ascension_gathering_material_name, :ascension_enemy_material_name
|
|
10
10
|
|
|
11
|
+
# rubocop:disable Metrics/ParameterLists
|
|
11
12
|
def initialize(kamera_key:, name:, nation_name:, rarity:, element:, weapon_type:, talent_book_name:,
|
|
12
13
|
talent_rare_material_name:, talent_boss_material_name:, ascension_boss_material_name:,
|
|
13
14
|
ascension_gathering_material_name:, ascension_enemy_material_name:,
|
|
@@ -27,5 +28,6 @@ module GenshinObject
|
|
|
27
28
|
@constellation_three_bonus = constellation_three_bonus
|
|
28
29
|
@constellation_five_bonus = constellation_five_bonus
|
|
29
30
|
end
|
|
31
|
+
# rubocop:enable Metrics/ParameterLists
|
|
30
32
|
end
|
|
31
33
|
end
|
data/lib/teyvatdb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teyvatdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.9.
|
|
4
|
+
version: 0.5.9.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Haberer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Gem to provide basic genshin data to my other projects
|
|
14
14
|
email:
|