teyvatdb 0.5.0 → 0.5.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: db455539aad7f58b9daca025243a5749c724a804add0ab4a8eb62de88b769bd3
4
- data.tar.gz: 3c14b27ca3d6ef016bda07607f03689f4bb31999c9360ef064e841220f85a424
3
+ metadata.gz: f8b1f04bd4b5f03188d5e5a1d2121af05206b36182ed4b60816f33a6c2bd2574
4
+ data.tar.gz: c385dce269f00c3fe01240ba22f8b1905e54dec20506d3304fd0f1f4bcdfb328
5
5
  SHA512:
6
- metadata.gz: 0eadf57e682ac17c1087d211df6d629219e814d39a24c493e9e91e91aada5592b66ce25f83d6241a9dd7ba3e5b343cc994aedad980112ae7e73a6e4795422fbd
7
- data.tar.gz: c1f03ba0ea684910f95248fe13eeb345db3cfed4e0741c1661393b94ad0bee374edfa04001b4dab939cbc7a80c8a0db7caf53f6bcd945344341bd8c58c1885e2
6
+ metadata.gz: 4437e35db41a5ac3dd52a8ccbb602bf3f58818cc1522ee33004957dcaee74b4d426681a76ad93f634c41df02d00228b6f0b03878f121e227cbb3e72dfe3f4ae6
7
+ data.tar.gz: d93541f8872ce1c70dcde709fafd2b2b6d2e3cab36a76ac6c6ae5c665abbc2ce411e5eff84c51f53118224e5e9d76fac1eb791067e514ea759b8d2c022170cd2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [0.5.1.1] - 2024-11-13
2
+ - Fix typo
3
+
4
+ ## [0.5.1] - 2024-11-13
5
+ - Add v5.1 data
6
+ - Added Xilonen
7
+ - Added weapons
8
+ - Fruitful Hook
9
+ - Mountain-Bracing Bolt
10
+ - Peak Patrol Song
11
+ - Sturdy Bone
12
+ - Added new world boss
13
+
1
14
  ## [0.5.0] - 2024-11-13
2
15
  - Add v5.0 data
3
16
  - Add Natlan Characters:
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teyvatdb (0.4.7.1)
4
+ teyvatdb (0.5.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1158,6 +1158,21 @@ module GenshinData
1158
1158
  ascension_enemy_material_name: :slime
1159
1159
  ).freeze
1160
1160
 
1161
+ XILONEN = GenshinObject::Character.new(
1162
+ kamera_key: "Xilonen",
1163
+ name: "Xilonen",
1164
+ nation_name: :natlan,
1165
+ rarity: 5,
1166
+ element: :geo,
1167
+ weapon_type: :sword,
1168
+ talent_book_name: :kindling,
1169
+ talent_rare_material_name: :whistle,
1170
+ talent_boss_material_name: "MirrorOfMushin",
1171
+ ascension_boss_material_name: "GoldInscribedSecretSourceCore",
1172
+ ascension_gathering_material_name: "BrilliantChrysanthemum",
1173
+ ascension_enemy_material_name: :whistle
1174
+ ).freeze
1175
+
1161
1176
  XINGQIU = GenshinObject::Character.new(
1162
1177
  kamera_key: "Xingqiu",
1163
1178
  name: "Xingqiu",
@@ -112,6 +112,7 @@ module GenshinData
112
112
  CharacterData::KACHINA,
113
113
  CharacterData::KINICH,
114
114
  CharacterData::MUALANI,
115
+ CharacterData::XILONEN
115
116
  ]
116
117
  end
117
118
 
@@ -31,6 +31,17 @@ module GenshinData
31
31
  nation_name: :fontaine
32
32
  ).freeze
33
33
 
34
+ BRILLIANT_CHRYSANTHEMUM = GenshinObject::Material.new(
35
+ kamera_key: "BrilliantChrysanthemum",
36
+ name: "Brilliant Chrysanthemum",
37
+ rarity: 1,
38
+ family: nil,
39
+ inventory_type: :standard_material,
40
+ source_category: :gathering,
41
+ source_sub_category: :local_specialty,
42
+ nation_name: :natlan
43
+ ).freeze
44
+
34
45
  CALLA_LILY = GenshinObject::Material.new(
35
46
  kamera_key: "CallaLily",
36
47
  name: "Calla Lily",
@@ -152,6 +152,17 @@ module GenshinData
152
152
  nation_name: :fontaine
153
153
  ).freeze
154
154
 
155
+ GOLD_INSCRIBED_SECRET_SOURCE_CORE = GenshinObject::Material.new(
156
+ kamera_key: "GoldInscribedSecretSourceCore",
157
+ name: "Gold Inscribed Secret Source Core",
158
+ rarity: 4,
159
+ family: nil,
160
+ inventory_type: :development_material,
161
+ source_category: :boss_loot,
162
+ source_sub_category: :world_boss_drop,
163
+ nation_name: :natlan
164
+ ).freeze
165
+
155
166
  HOARFROST_CORE = GenshinObject::Material.new(
156
167
  kamera_key: "HoarfrostCore",
157
168
  name: "Hoarfrost Core",
@@ -70,7 +70,7 @@ module GenshinData
70
70
  ).freeze
71
71
 
72
72
  FANG_OF_THE_MOUNTAIN_KING = GenshinObject::Weapon.new(
73
- kamera_key: "Fang of the Mountain King",
73
+ kamera_key: "FangOfTheMountainKing",
74
74
  name: "Fang of the Mountain King",
75
75
  rarity: 5,
76
76
  weapon_type: :claymore,
@@ -109,6 +109,16 @@ module GenshinData
109
109
  weapon_material_type: :forest_dew
110
110
  ).freeze
111
111
 
112
+ FRUITFUL_HOOK = GenshinObject::Weapon.new(
113
+ kamera_key: "FruitfulHook",
114
+ name: "Fruitful Hook",
115
+ rarity: 4,
116
+ weapon_type: :claymore,
117
+ elite_material_type: :secret_source,
118
+ standard_material_type: :fang,
119
+ weapon_material_type: :night_wind
120
+ ).freeze
121
+
112
122
  KATSURAGIKIRI_NAGAMASA = GenshinObject::Weapon.new(
113
123
  kamera_key: "KatsuragikiriNagamasa",
114
124
  name: "Katsuragikiri Nagamasa",
@@ -209,6 +209,16 @@ module GenshinData
209
209
  weapon_material_type: :oasis_garden
210
210
  ).freeze
211
211
 
212
+ MOUNTAIN_BRACING_BOLT = GenshinObject::Weapon.new(
213
+ kamera_key: "MountainBracingBolt",
214
+ name: "Mountain-Bracing Bolt",
215
+ rarity: 4,
216
+ weapon_type: :polearm,
217
+ elite_material_type: :ignited,
218
+ standard_material_type: :nectar,
219
+ weapon_material_type: :sacred_lord
220
+ ).freeze
221
+
212
222
  PRIMORDIAL_JADE_WINGED_SPEAR = GenshinObject::Weapon.new(
213
223
  kamera_key: "PrimordialJadeWingedSpear",
214
224
  name: "Primordial Jade Winged-Spear",
@@ -249,6 +249,16 @@ module GenshinData
249
249
  weapon_material_type: :coral
250
250
  ).freeze
251
251
 
252
+ PEAK_PATROL_SONG = GenshinObject::Weapon.new(
253
+ kamera_key: "PeakPatrolSong",
254
+ name: "Peak Patrol Song",
255
+ rarity: 5,
256
+ weapon_type: :sword,
257
+ elite_material_type: :secret_source,
258
+ standard_material_type: :fang,
259
+ weapon_material_type: :night_wind
260
+ ).freeze
261
+
252
262
  PRIMORDIAL_JADE_CUTTER = GenshinObject::Weapon.new(
253
263
  kamera_key: "PrimordialJadeCutter",
254
264
  name: "Primordial Jade Cutter",
@@ -329,6 +339,16 @@ module GenshinData
329
339
  weapon_material_type: :wolf_tooth
330
340
  ).freeze
331
341
 
342
+ STURDY_BONE = GenshinObject::Weapon.new(
343
+ kamera_key: "SturdyBone",
344
+ name: "Sturdy Bone",
345
+ rarity: 4,
346
+ weapon_type: :sword,
347
+ elite_material_type: :wayob_will,
348
+ standard_material_type: :whistle,
349
+ weapon_material_type: :blazing_heart
350
+ ).freeze
351
+
332
352
  SUMMIT_SHAPER = GenshinObject::Weapon.new(
333
353
  kamera_key: "SummitShaper",
334
354
  name: "Summit Shaper",
@@ -182,6 +182,12 @@ module GenshinData
182
182
  boss_material: "RunicFang"
183
183
  )
184
184
 
185
+ SECRET_SOURCE_CONSTRUCTOR = GenshinObject::WorldBoss.new(
186
+ name: "Secret Source Constructor",
187
+ nation_name: :natlan,
188
+ boss_material: "GoldInscribedSecretSourceCore"
189
+ )
190
+
185
191
  SETEKH_WENUT = GenshinObject::WorldBoss.new(
186
192
  name: "Setekh Wenut",
187
193
  nation_name: :sumeru,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TeyvatDB
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1.1"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teyvatdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Haberer
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2024-11-13 00:00:00.000000000 Z
@@ -91,7 +91,7 @@ metadata:
91
91
  source_code_uri: https://github.com/bhaberer/teyvatdb
92
92
  changelog_uri: https://github.com/bhaberer/teyvatdb/blob/main/CHANGELOG.md
93
93
  rubygems_mfa_required: 'true'
94
- post_install_message:
94
+ post_install_message:
95
95
  rdoc_options: []
96
96
  require_paths:
97
97
  - lib
@@ -106,8 +106,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  - !ruby/object:Gem::Version
107
107
  version: '0'
108
108
  requirements: []
109
- rubygems_version: 3.5.16
110
- signing_key:
109
+ rubygems_version: 3.0.3.1
110
+ signing_key:
111
111
  specification_version: 4
112
112
  summary: TeyvatDB is a gem to provide Genshin game data in a standardized way across
113
113
  my projects