teyvatdb 0.2.3 → 0.4.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f2f4f21ac57017c65b824eeb778ac4430fb3a1d6c7c8f770b380181f1a1a974
4
- data.tar.gz: 23432426d4357f944d0a57d8f5f667337b9770846450df38df31a65ab60acd69
3
+ metadata.gz: 8395f10a3712dde84825ef112b20b24f6c2ef2e009b9cffd38fb458b6a773e28
4
+ data.tar.gz: e5b005bb5684d6ca719287a13136789460f30fcb3150215dacb7b70a63adda88
5
5
  SHA512:
6
- metadata.gz: 844b68b9c48b47085db4081b6e112d79aa7679300a32b32458ef385b5d6d4ad8deb9c58184bc2b693547a0de4b18a525da2d99e64be3ce6493edef27f54ab7c6
7
- data.tar.gz: 42f041a02f1a1fa434e3ad73691fd9a595b562a3d68f2ccaebe656f7349b2d41cbc38c8c579667d4b3e53c3e1ba27d3700fe6c255c21f736321f3ecf1d107b79
6
+ metadata.gz: a21dd4fdca1223f06eaa48ca89d4d90178e0a85260d17b067bb88cef3ffc6e75d59d8e8f3af865fba5ac6c0bafb63da1f107c1a1928c485dcf19cc7d38197b5f
7
+ data.tar.gz: 87a06e196b4f820dcd3b711a2cde700ba7f540f472ca68997874f9c397475432e4881d1588525906a42a3a5d670817460bafe2cc25b7c755d9d32ff893575a37
data/CHANGELOG.md CHANGED
@@ -1,4 +1,12 @@
1
- ## [Unreleased]
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- teyvatdb (0.2.3)
4
+ teyvatdb (0.4.5.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # TeyvatDB
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/teyvatdb`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ This Gem is a convenance tool for other Genshin projects I have that make use of Genshin data.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
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
@@ -183,6 +183,21 @@ module GenshinData
183
183
  ascension_enemy_material_name: :gear
184
184
  ).freeze
185
185
 
186
+ CHIORI = GenshinObject::Character.new(
187
+ kamera_key: "Chiori",
188
+ name: "Chiori",
189
+ nation_name: :fontaine,
190
+ rarity: 5,
191
+ element: :geo,
192
+ weapon_type: :sword,
193
+ talent_book_name: :light,
194
+ talent_rare_material_name: :spectral,
195
+ talent_boss_material_name: "LightlessSilkString",
196
+ ascension_boss_material_name: "ArtificedSpareClockworkComponentCoppelia",
197
+ ascension_gathering_material_name: "Dendrobium",
198
+ ascension_enemy_material_name: :spectral
199
+ ).freeze
200
+
186
201
  CHONGYUN = GenshinObject::Character.new(
187
202
  kamera_key: "Chongyun",
188
203
  name: "Chongyun",
@@ -23,6 +23,7 @@ module GenshinData
23
23
  [
24
24
  CharacterData::CHARLOTTE,
25
25
  CharacterData::CHEVREUSE,
26
+ CharacterData::CHIORI,
26
27
  CharacterData::FREMINET,
27
28
  CharacterData::FURINA,
28
29
  CharacterData::LYNETTE,
@@ -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",
@@ -379,6 +379,16 @@ module GenshinData
379
379
  weapon_material_type: :chains
380
380
  ).freeze
381
381
 
382
+ URAKU_MISUGIRI = GenshinObject::Weapon.new(
383
+ kamera_key: "UrakuMisugiri",
384
+ name: "Uraku Misugiri",
385
+ rarity: 5,
386
+ weapon_type: :sword,
387
+ elite_material_type: :chaos_oculus,
388
+ standard_material_type: :handguard,
389
+ weapon_material_type: :coral
390
+ ).freeze
391
+
382
392
  WOLF_FANG = GenshinObject::Weapon.new(
383
393
  kamera_key: "WolfFang",
384
394
  name: "Wolf-Fang",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TeyvatDB
4
- VERSION = "0.2.3"
4
+ VERSION = "0.4.5.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.2.3
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-02-01 00:00:00.000000000 Z
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: