teyvatdb 0.5.7 → 0.5.7.2
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/CHANGELOG.md +8 -0
- data/Gemfile.lock +1 -1
- data/lib/genshin_data/characters/character_data.rb +3 -3
- data/lib/genshin_data/materials/development/weekly_boss_drops_data.rb +3 -3
- data/lib/genshin_data/materials/standard/cooking_material_data.rb +10 -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: fa61ea1da907791ab3db7e2768bdde64e6d5b132db2a7bfbddc45c8358812ea9
|
4
|
+
data.tar.gz: a2cf3fbd29973e27b39300cbebb6fea8fdd45885249a7026d119a6b237ab4f58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d45aaa82c5d10bd239311e7678f6d95dbe8819ed171ccb062404392c44d9582d9c0bbc5bd8d20d26a781c273fbeb83524d2d025a656e7dce877c5f5ec85de62d
|
7
|
+
data.tar.gz: 6c919d637904f1632e0cc25ee6cd35dd3acb5fd6c0b8a1bdd341a5a821fe127e4b55fba2c4dfcbbf5dee4485b2d570d92db656376ac2bde20fd689b0eb78e352
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -252,7 +252,7 @@ module GenshinData
|
|
252
252
|
weapon_type: :catalyst,
|
253
253
|
talent_book_name: :kindling,
|
254
254
|
talent_rare_material_name: :fang,
|
255
|
-
talent_boss_material_name: "
|
255
|
+
talent_boss_material_name: "DenialAndJudgment",
|
256
256
|
ascension_boss_material_name: "TalismanOfTheEnigmaticLand",
|
257
257
|
ascension_gathering_material_name: "QuenepaBerry",
|
258
258
|
ascension_enemy_material_name: :fang
|
@@ -537,7 +537,7 @@ module GenshinData
|
|
537
537
|
weapon_type: :polearm,
|
538
538
|
talent_book_name: :contention,
|
539
539
|
talent_rare_material_name: :whistle,
|
540
|
-
talent_boss_material_name: "
|
540
|
+
talent_boss_material_name: "DenialAndJudgment",
|
541
541
|
ascension_boss_material_name: "EnsnaringGaze",
|
542
542
|
ascension_gathering_material_name: "Dracolite",
|
543
543
|
ascension_enemy_material_name: :whistle
|
@@ -702,7 +702,7 @@ module GenshinData
|
|
702
702
|
weapon_type: :claymore,
|
703
703
|
talent_book_name: :kindling,
|
704
704
|
talent_rare_material_name: :fang,
|
705
|
-
talent_boss_material_name: "
|
705
|
+
talent_boss_material_name: "DenialAndJudgment",
|
706
706
|
ascension_boss_material_name: "OverripeFlamegranate",
|
707
707
|
ascension_gathering_material_name: "SaurianClawSucculent",
|
708
708
|
ascension_enemy_material_name: :fang
|
@@ -306,9 +306,9 @@ module GenshinData
|
|
306
306
|
nation_name: :fontaine
|
307
307
|
).freeze
|
308
308
|
|
309
|
-
|
310
|
-
kamera_key: "
|
311
|
-
name: "Denial and
|
309
|
+
DENIAL_AND_JUDGMENT = GenshinObject::Material.new(
|
310
|
+
kamera_key: "DenialAndJudgment",
|
311
|
+
name: "Denial and Judgment",
|
312
312
|
rarity: 5,
|
313
313
|
family: :the_knave_loot,
|
314
314
|
inventory_type: :development_material,
|
@@ -429,6 +429,16 @@ module GenshinData
|
|
429
429
|
source_sub_category: :cooking
|
430
430
|
).freeze
|
431
431
|
|
432
|
+
RED_BERRYSHROOM = GenshinObject::Material.new(
|
433
|
+
kamera_key: "RedBerryshroom",
|
434
|
+
name: "Red Berryshroom",
|
435
|
+
rarity: 1,
|
436
|
+
family: nil,
|
437
|
+
inventory_type: :standard_material,
|
438
|
+
source_category: :gathering,
|
439
|
+
source_sub_category: :cooking
|
440
|
+
).freeze
|
441
|
+
|
432
442
|
RICE = GenshinObject::Material.new(
|
433
443
|
kamera_key: "Rice",
|
434
444
|
name: "Rice",
|
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.7
|
4
|
+
version: 0.5.7.2
|
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-06
|
11
|
+
date: 2025-07-06 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Gem to provide basic genshin data to my other projects
|
14
14
|
email:
|