teyvatdb 0.5.6 → 0.5.6.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: 1f4ff054066e58f167eb31c136e761762fedb3b10c9ae2cbfc66482259fe1472
4
- data.tar.gz: 8636e2865a7c079f8c2592ecd36a4d37c64322c0aea574ac31e8c59136f3ba1b
3
+ metadata.gz: fa327292f1d1dce42050399b139a47f51e8a05dcdd7173bcc0e971614de676f0
4
+ data.tar.gz: 90c261303fc6d60ce84d4a954cede0cabdcfd5e82c2d1cddca08611023da7a53
5
5
  SHA512:
6
- metadata.gz: 4816d1a8148696e229b4d62eb97566a68cd642f810d823b03cb130d6cf02c3a4455f85f1150449adf8c26eb71694baaae9eca4ad166159ad72abcbe857892f26
7
- data.tar.gz: '00891aa464bc2b3f172016bfa7bb5c0e7a501f812cee3c5d5ff0757d3aa9578292812046500fb0a9609c08b21d8abd76f32044df08344eeb276ddc3a769f4ed1'
6
+ metadata.gz: 89f3dac91a935fdd58605d12db700eb75cac3dac54cf8736ab30c90e5b6bb9ae36926c9c59064b0103ff99f4ba0894a6c6e20fa3793a0993c639ee36c3002792
7
+ data.tar.gz: 334733038b81c382cf6a52c25bd0bf0e83715f1bad4429a89d46d197e12bc0e4ebdfab2a90deb70f5cf04f146f13735ccc9884cbef7b9b78e480e550c6c5520d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## [0.5.6.1] - 2025-05-31
2
+ - Add missing materials
3
+
1
4
  ## [0.5.6] - 2025-04-28
2
5
  - Add new Characters
3
6
  - Escoffier (5)
@@ -29,6 +29,16 @@ module GenshinData
29
29
  source_sub_category: :refine_material
30
30
  ).freeze
31
31
 
32
+ COMPOSITE_BOW_TUNING_KIT = GenshinObject::Material.new(
33
+ kamera_key: "CompositeBowTuningKit",
34
+ name: "Composite Bow Tuning Kit",
35
+ rarity: 4,
36
+ family: nil,
37
+ inventory_type: :development_material,
38
+ source_category: :weapon_material,
39
+ source_sub_category: :refine_material
40
+ ).freeze
41
+
32
42
  CONGEALED_PUPA_WAX = GenshinObject::Material.new(
33
43
  kamera_key: "CongealedPupaWax",
34
44
  name: "Congealed Pupa Wax",
@@ -89,6 +89,16 @@ module GenshinData
89
89
  source_sub_category: :forging_material
90
90
  ).freeze
91
91
 
92
+ EMPOWERED_DRAGONTOOTH = GenshinObject::Material.new(
93
+ kamera_key: "EmpoweredDragontooth",
94
+ name: "Empowered Dragontooth",
95
+ rarity: 1,
96
+ family: nil,
97
+ inventory_type: :standard_material,
98
+ source_category: :gathering,
99
+ source_sub_category: :forging_material
100
+ ).freeze
101
+
92
102
  IRON_CHUNK = GenshinObject::Material.new(
93
103
  kamera_key: "IronChunk",
94
104
  name: "Iron Chunk",
@@ -219,16 +229,6 @@ module GenshinData
219
229
  source_sub_category: :forging_material
220
230
  ).freeze
221
231
 
222
- VITALIZED_DRAGONTOOTH = GenshinObject::Material.new(
223
- kamera_key: "VitalizedDragontooth",
224
- name: "Vitalized Dragontooth",
225
- rarity: 1,
226
- family: nil,
227
- inventory_type: :standard_material,
228
- source_category: :gathering,
229
- source_sub_category: :forging_material
230
- ).freeze
231
-
232
232
  WHITE_IRON_CHUNK = GenshinObject::Material.new(
233
233
  kamera_key: "WhiteIronChunk",
234
234
  name: "White Iron Chunk",
@@ -39,6 +39,16 @@ module GenshinData
39
39
  source_sub_category: :furniture_material
40
40
  ).freeze
41
41
 
42
+ ASHEN_ARATIKU_WOOD = GenshinObject::Material.new(
43
+ kamera_key: "AshenAratikuWood",
44
+ name: "Ashen Aratiku Wood",
45
+ rarity: 1,
46
+ family: nil,
47
+ inventory_type: :standard_material,
48
+ source_category: :gathering,
49
+ source_sub_category: :furniture_material
50
+ ).freeze
51
+
42
52
  ATHEL_WOOD = GenshinObject::Material.new(
43
53
  kamera_key: "AthelWood",
44
54
  name: "Athel Wood",
@@ -209,6 +219,16 @@ module GenshinData
209
219
  source_sub_category: :furniture_material
210
220
  ).freeze
211
221
 
222
+ PEACH_PALM_WOOD = GenshinObject::Material.new(
223
+ kamera_key: "PeachPalmWood",
224
+ name: "Peach Palm Wood",
225
+ rarity: 1,
226
+ family: nil,
227
+ inventory_type: :standard_material,
228
+ source_category: :gathering,
229
+ source_sub_category: :furniture_material
230
+ ).freeze
231
+
212
232
  PINE_WOOD = GenshinObject::Material.new(
213
233
  kamera_key: "PineWood",
214
234
  name: "Pine Wood",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TeyvatDB
4
- VERSION = "0.5.6"
4
+ VERSION = "0.5.6.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.6
4
+ version: 0.5.6.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-05-19 00:00:00.000000000 Z
11
+ date: 2025-06-02 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Gem to provide basic genshin data to my other projects
14
14
  email: