teyvatdb 0.5.8 → 0.5.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 160170ae8a5831548bcc3efcf6f7a0712cf2ffd71853bfb82b3f7792fb8c2294
4
- data.tar.gz: 7b09c1059c21afb0fe1492efa387cc5f7d8d117687edab14f0e7ce10eb412369
3
+ metadata.gz: 4af1432ba6865181c1c081ef569b90b2fef10f0197bd75d4bdf93d924b2149c6
4
+ data.tar.gz: 96dfaa2d89bd6da2bdb37902af1f935cd32bf7223a7f3e4210661b4185b2ffb8
5
5
  SHA512:
6
- metadata.gz: e475c47acaccefe40113b7336b2e5e048b437418a160a6bc3313efffd9c37bdff042fe0725a10554d51f34b5ff4c65dd72aaa60463bb6d4f446b343aaefec660
7
- data.tar.gz: bcc384fe62ec7a3a25b2db00e7e56a6a59973ec417b872a538123a93f9b5084a286f937daf9f262cad1e6a6a21ecbea88f619f8cc23e4a75b8fb7f84ec331201
6
+ metadata.gz: f1762a7d7d0f0399baf2c95473656094d253326b63f64d6738ac90165a25cc2047e6a39847246064303194a1deb3e9b358e8ec5d63f95b08cd07f10d4dc4f27f
7
+ data.tar.gz: 19b6fe68a59cd92072cbd1f76af47797554f1a0e66c74cb6a4e88807567649ebd21366c18f6179dfe189dcf803e2302a4b1291332e1b57cde2c4b0f31227bde1
data/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ ## [0.5.9 / Luna I] - 2025-09-10
2
+ - Add Nod-Krai
3
+ - Add New Characters
4
+ - Aino (4)
5
+ - Lauma (5)
6
+ - Add Materials
7
+ - Enemy Drops
8
+ - Frostnight
9
+ - Radiant Bone
10
+ - Drive Shaft
11
+ - Warrant
12
+ - Local Specialties
13
+ - Moonfall Silver
14
+ - Portable Bearing
15
+ - Weapon Materials
16
+ - Artful Devices
17
+ - Long Night Flint
18
+ - Far-North Scions
19
+ - Talent Books
20
+ - Elysium
21
+ - Moonlight
22
+ - Vagrancy
23
+ - Artifact Sets
24
+ - Night of the Sky's Unveiling
25
+ - Silken Moon's Serenade
26
+ - Weapons
27
+ - Nightweaver's Looking Glass (5)
28
+ - Blackmarrow Lantern (4)
29
+ - Prospector's Shovel (4)
30
+ - Master Key (4)
31
+ - Serenity's Call (4)
32
+ - Snare Hook (4)
33
+
34
+ ## [0.5.8.1] - 2025-08-04
35
+ - Add Missing artifact sets
36
+ - Finale of the Deep Galleries
37
+ - Fragment of Harmonic Whimsy
38
+ - Obsidian Codex
39
+ - Long Night's Oath
40
+ - Scroll of the Hero of Cinder City
41
+ - Unfinished Reverie
42
+
1
43
  ## [0.5.8] - 2025-08-03
2
44
  - Add new character
3
45
  - Inefa (5)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teyvatdb (0.5.8)
4
+ teyvatdb (0.5.8.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -5,6 +5,10 @@
5
5
  module GenshinData
6
6
  module ArtifactSets
7
7
  module ArtifactSetData
8
+ def self.all
9
+ constants.map { |x| GenshinData::ArtifactSets::ArtifactSetData.const_get(x) }
10
+ end
11
+
8
12
  ARCHAIC_PETRA = GenshinObject::ArtifactSet.new(
9
13
  kamera_key: "ArchaicPetra",
10
14
  name: "Archaic Petra",
@@ -190,6 +194,32 @@ module GenshinData
190
194
  }
191
195
  ).freeze
192
196
 
197
+ FINALE_OF_THE_DEEP_GALLERIES = GenshinObject::ArtifactSet.new(
198
+ kamera_key: "FinaleOfTheDeepGalleries",
199
+ name: "Finale of the Deep Galleries",
200
+ bonuses: [
201
+ GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Cryo DMG Bonus +15%"]),
202
+ GenshinObject::ArtifactSetBonus.new(
203
+ pieces_count: 4,
204
+ bonus: [
205
+ "When the equipping Character has 0 Elemental Energy, Normal Attack DMG is increased by 60% and Elemental Burst DMG is increased by 60%.",
206
+ "After the equipping character deals Normal Attack DMG, the aforementioned Elemental Burst effect will stop applying for 6s.",
207
+ "After the equipping character deals Elemental Burst DMG, the aforementioned Normal Attack effect will stop applying for 6s.",
208
+ "This effect can trigger even if the equipping character is off the field.",
209
+ "A maximum of 75% bonus DMG can be obtained in this way."
210
+ ]
211
+ )
212
+ ],
213
+ max_rarity: 5,
214
+ slots: {
215
+ flower: true,
216
+ plume: true,
217
+ sands: true,
218
+ goblet: true,
219
+ circlet: true
220
+ }
221
+ ).freeze
222
+
193
223
  FLOWER_OF_PARADISE_LOST = GenshinObject::ArtifactSet.new(
194
224
  kamera_key: "FlowerOfParadiseLost",
195
225
  name: "Flower of Paradise Lost",
@@ -216,6 +246,32 @@ module GenshinData
216
246
  }
217
247
  ).freeze
218
248
 
249
+ FRAGMENT_OF_HARMONIC_WHIMSY = GenshinObject::ArtifactSet.new(
250
+ kamera_key: "FragmentOfHarmonicWhimsy",
251
+ name: "Fragment of Harmonic Whimsy",
252
+ bonuses: [
253
+ GenshinObject::ArtifactSetBonus.new(
254
+ pieces_count: 2,
255
+ bonus: ["ATK +18%"]
256
+ ),
257
+ GenshinObject::ArtifactSetBonus.new(
258
+ pieces_count: 4,
259
+ bonus: [
260
+ "When the value of a Bond of Life increases or decreases, this character deals 18% increased DMG for 6s.",
261
+ "Max 3 stacks."
262
+ ]
263
+ )
264
+ ],
265
+ max_rarity: 5,
266
+ slots: {
267
+ flower: true,
268
+ plume: true,
269
+ sands: true,
270
+ goblet: true,
271
+ circlet: true
272
+ }
273
+ ).freeze
274
+
219
275
  GILDED_DREAMS = GenshinObject::ArtifactSet.new(
220
276
  kamera_key: "GildedDreams",
221
277
  name: "Gilded Dreams",
@@ -353,6 +409,34 @@ module GenshinData
353
409
  }
354
410
  ).freeze
355
411
 
412
+ LONG_NIGHTS_OATH = GenshinObject::ArtifactSet.new(
413
+ kamera_key: "LongNightsOath",
414
+ name: "Long Night's Oath",
415
+ bonuses: [
416
+ GenshinObject::ArtifactSetBonus.new(
417
+ pieces_count: 2,
418
+ bonus: ["Plunging Attack DMG increased by 25%."]
419
+ ),
420
+ GenshinObject::ArtifactSetBonus.new(
421
+ pieces_count: 4,
422
+ bonus: [
423
+ "After the equipping character's Plunging Attack/Charged Attack/Elemental Skill hits an opponent, they will gain 1/2/2 stack(s) of 'Radiance Everlasting.'",
424
+ "Plunging Attacks, Charged Attacks or Elemental Skills can each trigger this effect once every 1s.",
425
+ "Radiance Everlasting: Plunging Attacks deal 15%. increased DMG for 6s. Max 5 stacks.",
426
+ "Each stack's duration is counted independently."
427
+ ]
428
+ )
429
+ ],
430
+ max_rarity: 5,
431
+ slots: {
432
+ flower: true,
433
+ plume: true,
434
+ sands: true,
435
+ goblet: true,
436
+ circlet: true
437
+ }
438
+ ).freeze
439
+
356
440
  MAIDEN_BELOVED = GenshinObject::ArtifactSet.new(
357
441
  kamera_key: "MaidenBeloved",
358
442
  name: "Maiden Beloved",
@@ -395,6 +479,32 @@ module GenshinData
395
479
  }
396
480
  ).freeze
397
481
 
482
+ NIGHT_OF_THE_SKYS_UNVEILING = GenshinObject::ArtifactSet.new(
483
+ kamera_key: "NightOfTheSkysUnveiling",
484
+ name: "Night of the Sky's Unveiling",
485
+ bonuses: [
486
+ GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
487
+ GenshinObject::ArtifactSetBonus.new(
488
+ pieces_count: 4,
489
+ bonus: [
490
+ "When nearby party members trigger Lunar Reactions, if the equipping character is on the field, gain the Gleaming Moon: Intent effect for 4s.",
491
+ "Gleaming Moon: Intent: Increases CRIT Rate by 15%/30% when the party's Moonsign is Nascent Gleam/Ascendant Gleam.",
492
+ "All party members' Lunar Reaction DMG is increased by 10% for each different Gleaming Moon effect that party members have.",
493
+ "Effects from Gleaming Moon cannot stack."
494
+ ]
495
+ )
496
+ ],
497
+ max_rarity: 5,
498
+ slots: {
499
+ flower: true,
500
+ plume: true,
501
+ sands: true,
502
+ goblet: true,
503
+ circlet: true
504
+ }
505
+ ).freeze
506
+
507
+
398
508
  NIGHTTIME_WHISPERS_IN_THE_ECHOING_WOODS = GenshinObject::ArtifactSet.new(
399
509
  kamera_key: "NighttimeWhispersInTheEchoingWoods",
400
510
  name: "Nighttime Whispers in the Echoing Woods",
@@ -462,6 +572,32 @@ module GenshinData
462
572
  }
463
573
  ).freeze
464
574
 
575
+ OBSIDIAN_CODEX = GenshinObject::ArtifactSet.new(
576
+ kamera_key: "ObsidianCodex",
577
+ name: "Obsidian Codex",
578
+ bonuses: [
579
+ GenshinObject::ArtifactSetBonus.new(
580
+ pieces_count: 2,
581
+ bonus: ["While the equipping character is in Nightsoul's Blessing and is on the field, their DMG dealt is increased by 15%."]
582
+ ),
583
+ GenshinObject::ArtifactSetBonus.new(
584
+ pieces_count: 4,
585
+ bonus: [
586
+ "After the equipping character consumes 1 Nightsoul point while on the field, CRIT Rate increases by 40% for 6s.",
587
+ "This effect can trigger once every second."
588
+ ]
589
+ )
590
+ ],
591
+ max_rarity: 5,
592
+ slots: {
593
+ flower: true,
594
+ plume: true,
595
+ sands: true,
596
+ goblet: true,
597
+ circlet: true
598
+ }
599
+ ).freeze
600
+
465
601
  OCEAN_HUED_CLAM = GenshinObject::ArtifactSet.new(
466
602
  kamera_key: "OceanHuedClam",
467
603
  name: "Ocean-Hued Clam",
@@ -534,6 +670,33 @@ module GenshinData
534
670
  }
535
671
  ).freeze
536
672
 
673
+ SCROLL_OF_THE_HERO_OF_CINDER_CITY = GenshinObject::ArtifactSet.new(
674
+ kamera_key: "ScrollOfTheHeroOfCinderCity",
675
+ name: "Scroll of the Hero of Cinder City",
676
+ bonuses: [
677
+ GenshinObject::ArtifactSetBonus.new(
678
+ pieces_count: 2,
679
+ bonus: ["When a nearby party member triggers a Nightsoul Burst, the equipping character regenerates 6 Elemental Energy."]
680
+ ),
681
+ GenshinObject::ArtifactSetBonus.new(
682
+ pieces_count: 4,
683
+ bonus: [
684
+ "After the equipping character triggers a reaction related to their Elemental Type, all nearby party members gain a 12% Elemental DMG Bonus for the Elemental Types involved in the elemental reaction for 15s.",
685
+ "If the equipping character is in the Nightsoul's Blessing state when triggering this effect, all nearby party members gain an additional 28% Elemental DMG Bonus for the Elemental Types involved in the elemental reaction for 20s.",
686
+ "The equipping character can trigger this effect while off-field, and the DMG bonus from Artifact Sets with the same name do not stack."
687
+ ]
688
+ )
689
+ ],
690
+ max_rarity: 5,
691
+ slots: {
692
+ flower: true,
693
+ plume: true,
694
+ sands: true,
695
+ goblet: true,
696
+ circlet: true
697
+ }
698
+ ).freeze
699
+
537
700
  SHIMENAWAS_REMINISCENCE = GenshinObject::ArtifactSet.new(
538
701
  kamera_key: "ShimenawasReminiscence",
539
702
  name: "Shimenawa's Reminiscence",
@@ -557,6 +720,32 @@ module GenshinData
557
720
  }
558
721
  ).freeze
559
722
 
723
+ SILKENS_MOONS_SERENADE = GenshinObject::ArtifactSet.new(
724
+ kamera_key: "SilkenMoonsSerenade",
725
+ name: "Silken Moon's Serenade",
726
+ bonuses: [
727
+ GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Energy Recharge +20%"]),
728
+ GenshinObject::ArtifactSetBonus.new(
729
+ pieces_count: 4,
730
+ bonus: [
731
+ "When dealing Elemental DMG, gain the Gleaming Moon: Devotion effect for 8s.",
732
+ "Gleaming Moon: Devotion: Increases all party members' Elemental Mastery by 60/120 when the party's Moonsign is Nascent Gleam/Ascendant Gleam.",
733
+ "The equipping character can trigger this effect while off-field.",
734
+ "All party members' Lunar Reaction DMG is increased by 10% for each different Gleaming Moon effect that party members have.",
735
+ "Effects from Gleaming Moon cannot stack."
736
+ ]
737
+ )
738
+ ],
739
+ max_rarity: 5,
740
+ slots: {
741
+ flower: true,
742
+ plume: true,
743
+ sands: true,
744
+ goblet: true,
745
+ circlet: true
746
+ }
747
+ ).freeze
748
+
560
749
  SONG_OF_DAYS_PAST = GenshinObject::ArtifactSet.new(
561
750
  kamera_key: "SongOfDaysPast",
562
751
  name: "Song of Days Past",
@@ -652,6 +841,34 @@ module GenshinData
652
841
  }
653
842
  ).freeze
654
843
 
844
+ UNFINISHED_REVERIE = GenshinObject::ArtifactSet.new(
845
+ kamera_key: "UnfinishedReverie",
846
+ name: "Unfinished Reverie",
847
+ bonuses: [
848
+ GenshinObject::ArtifactSetBonus.new(
849
+ pieces_count: 2,
850
+ bonus: ["ATK +18%"]
851
+ ),
852
+ GenshinObject::ArtifactSetBonus.new(
853
+ pieces_count: 4,
854
+ bonus: [
855
+ "After leaving combat for 3s, DMG dealt increased by 50%.",
856
+ "In combat, if no Burning opponents are nearby for more than 6s, this DMG Bonus will decrease by 10% per second until it reaches 0%.",
857
+ "When a Burning opponent exists, it will increase by 10% instead until it reaches 50%.",
858
+ "This effect still triggers if the equipping character is off-field."
859
+ ]
860
+ )
861
+ ],
862
+ max_rarity: 5,
863
+ slots: {
864
+ flower: true,
865
+ plume: true,
866
+ sands: true,
867
+ goblet: true,
868
+ circlet: true
869
+ }
870
+ ).freeze
871
+
655
872
  VERMILLION_HEREAFTER = GenshinObject::ArtifactSet.new(
656
873
  kamera_key: "VermillionHereafter",
657
874
  name: "Vermillion Hereafter",
@@ -809,15 +1026,16 @@ module GenshinData
809
1026
  }
810
1027
  ).freeze
811
1028
 
812
- INSTRUCTOR = GenshinObject::ArtifactSet.new(
813
- kamera_key: "Instructor",
814
- name: "Instructor",
1029
+ GAMBLER = GenshinObject::ArtifactSet.new(
1030
+ kamera_key: "Gambler",
1031
+ name: "Gambler",
815
1032
  bonuses: [
816
- GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
1033
+ GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Skill DMG by 20%."]),
817
1034
  GenshinObject::ArtifactSetBonus.new(
818
1035
  pieces_count: 4,
819
1036
  bonus: [
820
- "Upon triggering an Elemental Reaction, increases all party members's Elemental Mastery by 120 for 8s."
1037
+ "Defeating an opponent has 100% chance to remove Elemental Skill CD.",
1038
+ "Can only occur once every 15s."
821
1039
  ]
822
1040
  )
823
1041
  ],
@@ -831,16 +1049,15 @@ module GenshinData
831
1049
  }
832
1050
  ).freeze
833
1051
 
834
- GAMBLER = GenshinObject::ArtifactSet.new(
835
- kamera_key: "Gambler",
836
- name: "Gambler",
1052
+ INSTRUCTOR = GenshinObject::ArtifactSet.new(
1053
+ kamera_key: "Instructor",
1054
+ name: "Instructor",
837
1055
  bonuses: [
838
- GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Skill DMG by 20%."]),
1056
+ GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
839
1057
  GenshinObject::ArtifactSetBonus.new(
840
1058
  pieces_count: 4,
841
1059
  bonus: [
842
- "Defeating an opponent has 100% chance to remove Elemental Skill CD.",
843
- "Can only occur once every 15s."
1060
+ "Upon triggering an Elemental Reaction, increases all party members's Elemental Mastery by 120 for 8s."
844
1061
  ]
845
1062
  )
846
1063
  ],
@@ -7,57 +7,7 @@ module GenshinData
7
7
 
8
8
  class << self
9
9
  def all
10
- [
11
- ArtifactSetData::ADVENTURER,
12
- ArtifactSetData::ARCHAIC_PETRA,
13
- ArtifactSetData::BERSERKER,
14
- ArtifactSetData::BLIZZARD_STRAYER,
15
- ArtifactSetData::BLOODSTAINED_CHIVALRY,
16
- ArtifactSetData::BRAVE_HEART,
17
- ArtifactSetData::CRIMSON_WITCH_OF_FLAMES,
18
- ArtifactSetData::DEEPWOOD_MEMORIES,
19
- ArtifactSetData::DEFENDERS_WILL,
20
- ArtifactSetData::DESERT_PAVILION_CHRONICLE,
21
- ArtifactSetData::ECHOES_OF_AN_OFFERING,
22
- ArtifactSetData::EMBLEM_OF_SEVERED_FATE,
23
- ArtifactSetData::FLOWER_OF_PARADISE_LOST,
24
- ArtifactSetData::GAMBLER,
25
- ArtifactSetData::GILDED_DREAMS,
26
- ArtifactSetData::GLADIATORS_FINALE,
27
- ArtifactSetData::GOLDEN_TROUPE,
28
- ArtifactSetData::HEART_OF_DEPTH,
29
- ArtifactSetData::HUSK_OF_OPULENT_DREAMS,
30
- ArtifactSetData::INSTRUCTOR,
31
- ArtifactSetData::LAVAWALKER,
32
- ArtifactSetData::LUCKY_DOG,
33
- ArtifactSetData::MAIDEN_BELOVED,
34
- ArtifactSetData::MARECHAUSSEE_HUNTER,
35
- ArtifactSetData::MARTIAL_ARTIST,
36
- ArtifactSetData::NIGHTTIME_WHISPERS_IN_THE_ECHOING_WOODS,
37
- ArtifactSetData::NOBLESSE_OBLIGE,
38
- ArtifactSetData::NYMPHS_DREAM,
39
- ArtifactSetData::OCEAN_HUED_CLAM,
40
- ArtifactSetData::PALE_FLAME,
41
- ArtifactSetData::PRAYERS_FOR_DESTINY,
42
- ArtifactSetData::PRAYERS_FOR_ILLUMINATION,
43
- ArtifactSetData::PRAYERS_TO_SPRINGTIME,
44
- ArtifactSetData::PRAYERS_FOR_WISDOM,
45
- ArtifactSetData::RESOLUTION_OF_SOJOURNER,
46
- ArtifactSetData::RETRACING_BOLIDE,
47
- ArtifactSetData::SCHOLAR,
48
- ArtifactSetData::SHIMENAWAS_REMINISCENCE,
49
- ArtifactSetData::SONG_OF_DAYS_PAST,
50
- ArtifactSetData::TENACITY_OF_THE_MILLELITH,
51
- ArtifactSetData::THE_EXILE,
52
- ArtifactSetData::THUNDERING_FURY,
53
- ArtifactSetData::THUNDERSOOTHER,
54
- ArtifactSetData::TINY_MIRACLE,
55
- ArtifactSetData::TRAVELING_DOCTOR,
56
- ArtifactSetData::VERMILLION_HEREAFTER,
57
- ArtifactSetData::VIRIDESCENT_VENERER,
58
- ArtifactSetData::VOURUKASHAS_GLOW,
59
- ArtifactSetData::WANDERERS_TROUPE
60
- ]
10
+ GenshinData::ArtifactSets::ArtifactSetData.all
61
11
  end
62
12
  end
63
13
  end
@@ -54,6 +54,23 @@ module GenshinData
54
54
  ascension_enemy_material_name: :spectral
55
55
  ).freeze
56
56
 
57
+ AINO = GenshinObject::Character.new(
58
+ kamera_key: "Aino",
59
+ name: "Aino",
60
+ nation_name: :nodkrai,
61
+ rarity: 4,
62
+ constellation_three_bonus: :burst,
63
+ constellation_five_bonus: :skill,
64
+ element: :hydro,
65
+ weapon_type: :claymore,
66
+ talent_book_name: :elysium,
67
+ talent_rare_material_name: :shaft,
68
+ talent_boss_material_name: "SilkenFeather",
69
+ ascension_boss_material_name: "PrecisionKuuvahkiStampingDie",
70
+ ascension_gathering_material_name: "PortableBearing",
71
+ ascension_enemy_material_name: :shaft
72
+ ).freeze
73
+
57
74
  AMBER = GenshinObject::Character.new(
58
75
  kamera_key: "Amber",
59
76
  name: "Amber",
@@ -904,6 +921,23 @@ module GenshinData
904
921
  ascension_enemy_material_name: :nectar
905
922
  ).freeze
906
923
 
924
+ LAUMA = GenshinObject::Character.new(
925
+ kamera_key: "Lauma",
926
+ name: "Lauma",
927
+ nation_name: :nodkrai,
928
+ rarity: 5,
929
+ constellation_three_bonus: :burst,
930
+ constellation_five_bonus: :skill,
931
+ element: :dendro,
932
+ weapon_type: :catalyst,
933
+ talent_book_name: :moonlight,
934
+ talent_rare_material_name: :warrant,
935
+ talent_boss_material_name: "ErodedScaleFeather",
936
+ ascension_boss_material_name: "LightbearingScaleFeather",
937
+ ascension_gathering_material_name: "MoonfallSilver",
938
+ ascension_enemy_material_name: :warrant
939
+ ).freeze
940
+
907
941
  LAYLA = GenshinObject::Character.new(
908
942
  kamera_key: "Layla",
909
943
  name: "Layla",
@@ -13,6 +13,7 @@ module GenshinData
13
13
  liyue,
14
14
  mondstadt,
15
15
  natlan,
16
+ nodkrai,
16
17
  snezhnaya,
17
18
  sumeru,
18
19
  unknown
@@ -130,6 +131,13 @@ module GenshinData
130
131
  ]
131
132
  end
132
133
 
134
+ def nodkrai
135
+ [
136
+ CharacterData::AINO,
137
+ CharacterData::LAUMA
138
+ ]
139
+ end
140
+
133
141
  def snezhnaya
134
142
  [
135
143
  CharacterData::TARTAGLIA
@@ -405,6 +405,39 @@ module GenshinData
405
405
  nation_name: nil
406
406
  ).freeze
407
407
 
408
+ FROSTNIGHTS_GLIMMER = GenshinObject::Material.new(
409
+ kamera_key: "FrostnightsGlimmer",
410
+ name: "Frostnight's Glimmer",
411
+ rarity: 2,
412
+ family: :frostnight,
413
+ inventory_type: :development_material,
414
+ source_category: :monster_loot,
415
+ source_sub_category: :elite_drop,
416
+ nation_name: nil
417
+ ).freeze
418
+
419
+ FROSTNIGHTS_GLORY = GenshinObject::Material.new(
420
+ kamera_key: "FrostnightsGlory",
421
+ name: "Frostnight's Glory",
422
+ rarity: 4,
423
+ family: :frostnight,
424
+ inventory_type: :development_material,
425
+ source_category: :monster_loot,
426
+ source_sub_category: :elite_drop,
427
+ nation_name: nil
428
+ ).freeze
429
+
430
+ FROSTNIGHTS_GLOW = GenshinObject::Material.new(
431
+ kamera_key: "FrostnightsGlow",
432
+ name: "Frostnight's Glow",
433
+ rarity: 3,
434
+ family: :frostnight,
435
+ inventory_type: :development_material,
436
+ source_category: :monster_loot,
437
+ source_sub_category: :elite_drop,
438
+ nation_name: nil
439
+ ).freeze
440
+
408
441
  GLOOMY_STATUETTE = GenshinObject::Material.new(
409
442
  kamera_key: "GloomyStatuette",
410
443
  name: "Gloomy Statuette",
@@ -416,6 +449,17 @@ module GenshinData
416
449
  nation_name: nil
417
450
  ).freeze
418
451
 
452
+ GLOWING_REMAINS = GenshinObject::Material.new(
453
+ kamera_key: "GlowingRemains",
454
+ name: "Glowing Remains",
455
+ rarity: 3,
456
+ family: :radiant_bone,
457
+ inventory_type: :development_material,
458
+ source_category: :monster_loot,
459
+ source_sub_category: :elite_drop,
460
+ nation_name: nil
461
+ ).freeze
462
+
419
463
  HEART_OF_THE_SECRET_SOURCE = GenshinObject::Material.new(
420
464
  kamera_key: "HeartOfTheSecretSource",
421
465
  name: "Heart of the Secret Source",
@@ -515,6 +559,17 @@ module GenshinData
515
559
  nation_name: nil
516
560
  ).freeze
517
561
 
562
+ LIGHTLESS_BONE = GenshinObject::Material.new(
563
+ kamera_key: "LightlessBone",
564
+ name: "Lightless Bone",
565
+ rarity: 2,
566
+ family: :radiant_bone,
567
+ inventory_type: :development_material,
568
+ source_category: :monster_loot,
569
+ source_sub_category: :elite_drop,
570
+ nation_name: nil
571
+ ).freeze
572
+
518
573
  LOCUS_OF_A_CLEAR_WILL = GenshinObject::Material.new(
519
574
  kamera_key: "LocusOfAClearWill",
520
575
  name: "Locus of a Clear Will",
@@ -581,6 +636,40 @@ module GenshinData
581
636
  nation_name: nil
582
637
  ).freeze
583
638
 
639
+ MISTSHROUD_HELMET = GenshinObject::Material.new(
640
+ kamera_key: "MistshroudHelmet",
641
+ name: "Mistshroud Helmet",
642
+ rarity: 4,
643
+ family: :mistshroud,
644
+ inventory_type: :development_material,
645
+ source_category: :monster_loot,
646
+ source_sub_category: :elite_drop,
647
+ nation_name: nil
648
+ ).freeze
649
+
650
+ MISTSHROUD_MANIFESTATION = GenshinObject::Material.new(
651
+ kamera_key: "MistshroudManifestation",
652
+ name: "Mistshroud Manifestation",
653
+ rarity: 2,
654
+ family: :mistshroud,
655
+ inventory_type: :development_material,
656
+ source_category: :monster_loot,
657
+ source_sub_category: :elite_drop,
658
+ nation_name: nil
659
+ ).freeze
660
+
661
+ MISTSHROUD_PLATE = GenshinObject::Material.new(
662
+ kamera_key: "MistshroudPlate",
663
+ name: "Mistshroud Plate",
664
+ rarity: 3,
665
+ family: :mistshroud,
666
+ inventory_type: :development_material,
667
+ source_category: :monster_loot,
668
+ source_sub_category: :elite_drop,
669
+ nation_name: nil
670
+ ).freeze
671
+
672
+
584
673
  NEWBORN_TAINTED_HYDRO_PHANTASM = GenshinObject::Material.new(
585
674
  kamera_key: "NewbornTaintedHydroPhantasm",
586
675
  name: "Newborn Tainted Hydro Phantasm",
@@ -636,6 +725,17 @@ module GenshinData
636
725
  nation_name: nil
637
726
  ).freeze
638
727
 
728
+ RADIANT_EXOSKELETON = GenshinObject::Material.new(
729
+ kamera_key: "RadiantExoskeleton",
730
+ name: "Radiant Exoskeleton",
731
+ rarity: 4,
732
+ family: :radiant_bone,
733
+ inventory_type: :development_material,
734
+ source_category: :monster_loot,
735
+ source_sub_category: :elite_drop,
736
+ nation_name: nil
737
+ ).freeze
738
+
639
739
  RADIANT_PRISM = GenshinObject::Material.new(
640
740
  kamera_key: "RadiantPrism",
641
741
  name: "Radiant Prism",
@@ -251,6 +251,17 @@ module GenshinData
251
251
  nation_name: :fontaine
252
252
  ).freeze
253
253
 
254
+ MOONFALL_SILVER = GenshinObject::Material.new(
255
+ kamera_key: "MoonfallSilver",
256
+ name: "Moonfall Silver",
257
+ rarity: 1,
258
+ family: nil,
259
+ inventory_type: :standard_material,
260
+ source_category: :gathering,
261
+ source_sub_category: :local_specialty,
262
+ nation_name: :nodkrai
263
+ ).freeze
264
+
254
265
  MOURNING_FLOWER = GenshinObject::Material.new(
255
266
  kamera_key: "MourningFlower",
256
267
  name: "Mourning Flower",
@@ -339,6 +350,17 @@ module GenshinData
339
350
  nation_name: :fontaine
340
351
  ).freeze
341
352
 
353
+ PORTABLE_BEARING = GenshinObject::Material.new(
354
+ kamera_key: "PortableBearing",
355
+ name: "Portable Bearing",
356
+ rarity: 1,
357
+ family: nil,
358
+ inventory_type: :standard_material,
359
+ source_category: :gathering,
360
+ source_sub_category: :local_specialty,
361
+ nation_name: :nodkrai
362
+ ).freeze
363
+
342
364
  QINGXIN = GenshinObject::Material.new(
343
365
  kamera_key: "Qingxin",
344
366
  name: "Qingxin",