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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0142299425484c8c3d2dc8871db3d1ded337748cda3a891312e403d7a6ef751c'
4
- data.tar.gz: 8bdbb4b181e4b88f33424a98beaff61eee5d18462537ddbf128c25b7d807c9ee
3
+ metadata.gz: 8395f10a3712dde84825ef112b20b24f6c2ef2e009b9cffd38fb458b6a773e28
4
+ data.tar.gz: e5b005bb5684d6ca719287a13136789460f30fcb3150215dacb7b70a63adda88
5
5
  SHA512:
6
- metadata.gz: 7b4566a1e664bef4cfb7b77611fc458d2e9d2d99f2ad6eebf4a5586cd2dc908afafe3dc07f3400f9392c9b2dd336c8bc1e15815d2b3cfbc3c9b517640abdc93c
7
- data.tar.gz: d286abb7d89c47258d7d1f95a2017bc61ac43cdc6afce98b413f02e98b2b5792a951dde6031c8c7239c1dc07c29a9e00b1d70f3080af69fc14a585661c9d8ebf
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.4)
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
@@ -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",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TeyvatDB
4
- VERSION = "0.2.4"
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.4
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-03-16 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: