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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a3a0a06c2cd6e244a41a95c54b2ddad843c8a56bb3683ff215d29dbdb829338
4
- data.tar.gz: b60886bc27f65afcac03a30b0f7fa082b73ffeae2ff73538960bc7a3a0e54a26
3
+ metadata.gz: fa61ea1da907791ab3db7e2768bdde64e6d5b132db2a7bfbddc45c8358812ea9
4
+ data.tar.gz: a2cf3fbd29973e27b39300cbebb6fea8fdd45885249a7026d119a6b237ab4f58
5
5
  SHA512:
6
- metadata.gz: 43e2616dc516150f747716e0c47f7c73afd9b031fec737070cae534cc17ecc9d33f8e3692642986a0d8daabbd28dc6d602be74b26c1d013e80650f4e8aaf653b
7
- data.tar.gz: 4b23d8e6b68e9434035fc984602c23c3dc04aedde41f31de8329b3e900d9721efa3d49ee50a4ac41f8e38126c1075636dfcb4603017837a735c96ba3d66dad58
6
+ metadata.gz: d45aaa82c5d10bd239311e7678f6d95dbe8819ed171ccb062404392c44d9582d9c0bbc5bd8d20d26a781c273fbeb83524d2d025a656e7dce877c5f5ec85de62d
7
+ data.tar.gz: 6c919d637904f1632e0cc25ee6cd35dd3acb5fd6c0b8a1bdd341a5a821fe127e4b55fba2c4dfcbbf5dee4485b2d570d92db656376ac2bde20fd689b0eb78e352
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.5.7.2] - 2025-07-06
2
+ - Really Fix typo in DenialAndJudgment
3
+
4
+ ## [0.5.7.1] - 2025-07-06
5
+ - Add missing material
6
+ - Red Berryshroom
7
+ - Fix typo in DenialAndJudgment
8
+
1
9
  ## [0.5.7] - 2025-06-17
2
10
  - Add new Characters
3
11
  - Skirk (5)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teyvatdb (0.5.6.1)
4
+ teyvatdb (0.5.7.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -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: "DenialAndJudgement",
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: "DenialAndJudgement",
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: "DenialAndJudgement",
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
- DENIAL_AND_JUDGEMENT = GenshinObject::Material.new(
310
- kamera_key: "DenialAndJudgement",
311
- name: "Denial and Judgement",
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",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TeyvatDB
4
- VERSION = "0.5.7"
4
+ VERSION = "0.5.7.2"
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.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-18 00:00:00.000000000 Z
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: