teyvatdb 0.2.4 → 0.4.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 +9 -1
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/genshin_data/artifact_sets/artifact_set_data.rb +2 -2
- data/lib/genshin_data/materials/development/weapon_refinement_material_data.rb +10 -0
- data/lib/genshin_data/weapons/weapon_data/polearms.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: 8395f10a3712dde84825ef112b20b24f6c2ef2e009b9cffd38fb458b6a773e28
|
4
|
+
data.tar.gz: e5b005bb5684d6ca719287a13136789460f30fcb3150215dacb7b70a63adda88
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a21dd4fdca1223f06eaa48ca89d4d90178e0a85260d17b067bb88cef3ffc6e75d59d8e8f3af865fba5ac6c0bafb63da1f107c1a1928c485dcf19cc7d38197b5f
|
7
|
+
data.tar.gz: 87a06e196b4f820dcd3b711a2cde700ba7f540f472ca68997874f9c397475432e4881d1588525906a42a3a5d670817460bafe2cc25b7c755d9d32ff893575a37
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
## [
|
1
|
+
## [0.4.5.1] - 2024-04-14
|
2
|
+
- Add v4.5 event Weapon
|
3
|
+
- Add polearm, Dialogues of the Desert Sages
|
4
|
+
- Add refinement material Exalted Earth
|
5
|
+
|
6
|
+
## [0.2.4] - 2024-03-16
|
7
|
+
- Add v4.5 Character and weapons
|
8
|
+
- Add Chiori Character
|
9
|
+
- Add signature weapon Uraku Misugiri
|
2
10
|
|
3
11
|
## [0.1.0] - 2023-07-22
|
4
12
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# TeyvatDB
|
2
2
|
|
3
|
-
|
3
|
+
This Gem is a convenance tool for other Genshin projects I have that make use of Genshin data.
|
4
4
|
|
5
|
-
|
5
|
+
As of v4.5 of the gem, the gem's version will coincide with content present in the given version of Genshin.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -84,7 +84,7 @@ module GenshinData
|
|
84
84
|
bonus: [
|
85
85
|
"Increases Overloaded and Burning, and Burgeon DMG by 40%.",
|
86
86
|
"Increases Vaporize and Melt DMG by 15%.",
|
87
|
-
"Using Elemental Skill increases the 2-Piece Set Bonus by 50% of its starting value for 10s. Max 3 stacks."
|
87
|
+
"Using Elemental Skill increases the 2-Piece Set Bonus by 50% of its starting value for 10s. Max 3 stacks."
|
88
88
|
]
|
89
89
|
)
|
90
90
|
],
|
@@ -1090,4 +1090,4 @@ module GenshinData
|
|
1090
1090
|
end
|
1091
1091
|
end
|
1092
1092
|
|
1093
|
-
# rubocop:enable Layout/LineLength
|
1093
|
+
# rubocop:enable Layout/LineLength
|
@@ -49,6 +49,16 @@ module GenshinData
|
|
49
49
|
source_sub_category: :refine_material
|
50
50
|
).freeze
|
51
51
|
|
52
|
+
EXALTED_EARTH = GenshinObject::Material.new(
|
53
|
+
kamera_key: "ExaltedEarth",
|
54
|
+
name: "Exalted Earth",
|
55
|
+
rarity: 4,
|
56
|
+
family: nil,
|
57
|
+
inventory_type: :development_material,
|
58
|
+
source_category: :weapon_material,
|
59
|
+
source_sub_category: :refine_material
|
60
|
+
).freeze
|
61
|
+
|
52
62
|
FESTERING_DRAGON_MARROW = GenshinObject::Material.new(
|
53
63
|
kamera_key: "FesteringDragonMarrow",
|
54
64
|
name: "Festering Dragon Marrow",
|
@@ -79,6 +79,16 @@ module GenshinData
|
|
79
79
|
weapon_material_type: :wolf_tooth
|
80
80
|
).freeze
|
81
81
|
|
82
|
+
DIALOGUES_OF_THE_DESERT_SAGES = GenshinObject::Weapon.new(
|
83
|
+
kamera_key: "DialoguesOfTheDesertSages",
|
84
|
+
name: "Dialogues of the Desert Sages",
|
85
|
+
rarity: 4,
|
86
|
+
weapon_type: :polearm,
|
87
|
+
elite_material_type: :beast_fin,
|
88
|
+
standard_material_type: :spectral,
|
89
|
+
weapon_material_type: :forest_dew
|
90
|
+
).freeze
|
91
|
+
|
82
92
|
DRAGONS_BANE = GenshinObject::Weapon.new(
|
83
93
|
kamera_key: "DragonsBane",
|
84
94
|
name: "Dragon's Bane",
|
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.
|
4
|
+
version: 0.4.5.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: 2024-
|
11
|
+
date: 2024-04-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Gem to provide basic genshin data to my other projects
|
14
14
|
email:
|