teyvatdb 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/Gemfile.lock +1 -1
- data/lib/genshin_data/characters/character_data.rb +15 -0
- data/lib/genshin_data/characters.rb +1 -0
- data/lib/genshin_data/materials/development/local_specialty_data.rb +11 -0
- data/lib/genshin_data/materials/development/world_boss_drops_data.rb +11 -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 +20 -0
- data/lib/genshin_data/world_bosses/world_boss_data.rb +6 -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: 7bbb535857c707f10af8b81b79e5ec779157dea965797659b236aa79f5144b64
|
4
|
+
data.tar.gz: ec81f5a59bfffdc60b4535ec6099aa71711e202140c9d6d1d106d2eaf68012ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78411d5959cb19efbd54a0bd47bdea514c23ed35a35132b9b93b9dfac0266e5e5f675a4ad3728916790b8dbc1d074d1b4f227a0af05602088e7b6b70bae7287f
|
7
|
+
data.tar.gz: ef7e340289aa67fd8cf8963e24121e3a1e0cf01889d1566b47974f75b97cf9751beca98b68e7881cbe437e05218a04b29c4d7d7f0b264b101c23627d7cfef38b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## [0.5.1] - 2024-11-13
|
2
|
+
- Add v5.1 data
|
3
|
+
- Added Xilonen
|
4
|
+
- Added weapons
|
5
|
+
- Fruitful Hook
|
6
|
+
- Mountain-Bracing Bolt
|
7
|
+
- Peak Patrol Song
|
8
|
+
- Sturdy Bone
|
9
|
+
- Added new world boss
|
10
|
+
|
1
11
|
## [0.5.0] - 2024-11-13
|
2
12
|
- Add v5.0 data
|
3
13
|
- Add Natlan Characters:
|
data/Gemfile.lock
CHANGED
@@ -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",
|
@@ -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",
|
@@ -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,
|
data/lib/teyvatdb/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: teyvatdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Haberer
|
@@ -106,7 +106,7 @@ 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.
|
109
|
+
rubygems_version: 3.5.23
|
110
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
|