teyvatdb 0.5.9 → 0.5.9.1

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: 4af1432ba6865181c1c081ef569b90b2fef10f0197bd75d4bdf93d924b2149c6
4
- data.tar.gz: 96dfaa2d89bd6da2bdb37902af1f935cd32bf7223a7f3e4210661b4185b2ffb8
3
+ metadata.gz: 64b61d6812b889055a344cb62de9d4c7fcc015399ec427c7994e95d9f84b87fe
4
+ data.tar.gz: e2a31f111536b2a402083f4f28026134d5033351f0b7b42b1558cb2f8f65dca0
5
5
  SHA512:
6
- metadata.gz: f1762a7d7d0f0399baf2c95473656094d253326b63f64d6738ac90165a25cc2047e6a39847246064303194a1deb3e9b358e8ec5d63f95b08cd07f10d4dc4f27f
7
- data.tar.gz: 19b6fe68a59cd92072cbd1f76af47797554f1a0e66c74cb6a4e88807567649ebd21366c18f6179dfe189dcf803e2302a4b1291332e1b57cde2c4b0f31227bde1
6
+ metadata.gz: 929cc4b36b62e1bcc70741df6357c6da4e876d6e6556d432cc787707a64fedd61331640e9a70df8a28562a331e97c991ba2d24c528485e5dfd4fe43297b553b3
7
+ data.tar.gz: d42af3b6b13f52e103caddc115c112a06be8bebbd155a8ecede9fe39c48fad9c88577ef6aa9ecb59f2f1637c5d052d1b72441f0b03959451e0593ba86d99fd70
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.5.9.1 / Luna I] - 2025-09-11
2
+ - Fix Ineffa (was Inefa -_-)
3
+ - Add Weapon
4
+ - Etherlight Spindlelute (4)
5
+ - Add New Characters
6
+ - Flins (5) [Draft]
7
+ - Add Material
8
+ - Frostlamp Flower
9
+
1
10
  ## [0.5.9 / Luna I] - 2025-09-10
2
11
  - Add Nod-Krai
3
12
  - Add New Characters
@@ -530,6 +530,23 @@ module GenshinData
530
530
  ascension_enemy_material_name: :arrowhead
531
531
  ).freeze
532
532
 
533
+ FLINS = GenshinObject::Character.new(
534
+ kamera_key: "Flins",
535
+ name: "Flins",
536
+ nation_name: :nodkrai,
537
+ rarity: 5,
538
+ constellation_three_bonus: :burst,
539
+ constellation_five_bonus: :skill,
540
+ element: :electro,
541
+ weapon_type: :polearm,
542
+ talent_book_name: :vagrancy,
543
+ talent_rare_material_name: :radiant_bone,
544
+ talent_boss_material_name: 'ErodedScaleFeather',
545
+ ascension_boss_material_name: "PrecisionKuuvahkiStampingDie",
546
+ ascension_gathering_material_name: "FrostlampFlower",
547
+ ascension_enemy_material_name: :shaft
548
+ ).freeze
549
+
533
550
  FREMINET = GenshinObject::Character.new(
534
551
  kamera_key: "Freminet",
535
552
  name: "Freminet",
@@ -666,9 +683,9 @@ module GenshinData
666
683
  ascension_enemy_material_name: :fang
667
684
  ).freeze
668
685
 
669
- INEFA = GenshinObject::Character.new(
670
- kamera_key: "Inefa",
671
- name: "Inefa",
686
+ INEFFA = GenshinObject::Character.new(
687
+ kamera_key: "Ineffa",
688
+ name: "Ineffa",
672
689
  nation_name: :natlan,
673
690
  rarity: 5,
674
691
  constellation_three_bonus: :skill,
@@ -118,7 +118,7 @@ module GenshinData
118
118
  CharacterData::CHASCA,
119
119
  CharacterData::CITLALI,
120
120
  CharacterData::IANSAN,
121
- CharacterData::INEFA,
121
+ CharacterData::INEFFA,
122
122
  CharacterData::IFA,
123
123
  CharacterData::KACHINA,
124
124
  CharacterData::KINICH,
@@ -134,6 +134,7 @@ module GenshinData
134
134
  def nodkrai
135
135
  [
136
136
  CharacterData::AINO,
137
+ CharacterData::FLINS,
137
138
  CharacterData::LAUMA
138
139
  ]
139
140
  end
@@ -141,6 +141,17 @@ module GenshinData
141
141
  nation_name: :sumeru
142
142
  ).freeze
143
143
 
144
+ FROSTLAMP_FLOWER = GenshinObject::Material.new(
145
+ kamera_key: "FrostlampFlower",
146
+ name: "Frostlamp Flower",
147
+ rarity: 1,
148
+ family: nil,
149
+ inventory_type: :standard_material,
150
+ source_category: :gathering,
151
+ source_sub_category: :local_specialty,
152
+ nation_name: :nodkrai
153
+ ).freeze
154
+
144
155
  GLAZE_LILY = GenshinObject::Material.new(
145
156
  kamera_key: "GlazeLily",
146
157
  name: "Glaze Lily",
@@ -99,6 +99,16 @@ module GenshinData
99
99
  weapon_material_type: :guyun
100
100
  ).freeze
101
101
 
102
+ ETHERLIGHT_SPINDLELUTE = GenshinObject::Weapon.new(
103
+ kamera_key: "EtherlightSpindlelute",
104
+ name: "Etherlight Spindlelute",
105
+ rarity: 4,
106
+ weapon_type: :catalyst,
107
+ elite_material_type: :radiant_bone,
108
+ standard_material_type: :warrant,
109
+ weapon_material_type: :far_north_scions
110
+ ).freeze
111
+
102
112
  EVERLASTING_MOONGLOW = GenshinObject::Weapon.new(
103
113
  kamera_key: "EverlastingMoonglow",
104
114
  name: "Everlasting Moonglow",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TeyvatDB
4
- VERSION = "0.5.9"
4
+ VERSION = "0.5.9.1"
5
5
  end
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Haberer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-09-11 00:00:00.000000000 Z
11
+ date: 2025-09-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Gem to provide basic genshin data to my other projects
14
14
  email: