restiny 6.0.0 → 6.1.0

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: 7a11b1fe287424ab29d345e8598b810afd733d59f634e00badf837ac7f16ec3d
4
- data.tar.gz: fb704f715f42ad34aa722435079e7aae31c9660d5b9e7b32e1f0d9e82efafabd
3
+ metadata.gz: b13f8972845550ae0ddda6b09d4167188a4cbdebf3951adb88b16d69554d0644
4
+ data.tar.gz: b57fd5b6295147321ae1aa839007f738b87a99ba6c3682428ebefeb49dc9de09
5
5
  SHA512:
6
- metadata.gz: b32846afdb0a3f1d89c837064f2809d772b8eb1d74903ed449484c75c70975a82a367f591c958a217a616fd55066beef55db5fb6fbff8350787dc163ffe04b6b
7
- data.tar.gz: 2b8b0b66fdaedcf77cb1b3b308ad54aafd92d5aaa175e9238b28d98ce4ad41da9bc6d6fb4e0c4fdd78dd7c23d6de247bdf7263e28ff4fec1723892866ddae596
6
+ metadata.gz: a13e9f6421db33ae7e2fdfef2cb84a175786fa64a32a502ad93096c2b4eff041aa5f8c7255a96df4972c1e168042d274409245560ac40d67f1c3517755416ab7
7
+ data.tar.gz: 786f519aa8b81589758c64e7552fa13183b45e45e6ea56986dbad6b4d1bf2282be2067de6f1cd03a24a60100bf25f2f67801355b50c28f209b58926d1a3eb2a9
@@ -46,7 +46,7 @@ module Restiny
46
46
  BASIC = 2
47
47
  COMMON = 3
48
48
  RARE = 4
49
- SUPERIOR = 5
49
+ LEGENDARY = 5
50
50
  EXOTIC = 6
51
51
 
52
52
  def self.names
@@ -56,7 +56,7 @@ module Restiny
56
56
  BASIC => 'Basic',
57
57
  COMMON => 'Common',
58
58
  RARE => 'Rare',
59
- SUPERIOR => 'Superior',
59
+ LEGENDARY => 'Legendary',
60
60
  EXOTIC => 'Exotic'
61
61
  }
62
62
  end
@@ -111,6 +111,23 @@ module Restiny
111
111
  end
112
112
  end
113
113
 
114
+ # Definitions for the Champion breaker types used in the game.
115
+ module Breaker
116
+ NONE = 0
117
+ SHIELD_PIERCING = 1
118
+ DISRUPTION = 2
119
+ STAGGER = 3
120
+
121
+ def self.names
122
+ {
123
+ NONE: 'None',
124
+ SHIELD_PIERCING: 'Shield-Piercing',
125
+ DISRUPTION: 'Disruption',
126
+ STAGGER: 'Stagger'
127
+ }
128
+ end
129
+ end
130
+
114
131
  # Definitions for the various types of ammunition used in the game.
115
132
  module Ammunition
116
133
  NONE = 0
@@ -130,6 +147,30 @@ module Restiny
130
147
  end
131
148
  end
132
149
 
150
+ module DamageType
151
+ NONE = 0
152
+ KINETIC = 1
153
+ ARC = 2
154
+ SOLAR = 3
155
+ VOID = 4
156
+ RAID = 5
157
+ STASIS = 6
158
+ STRAND = 7
159
+
160
+ def self.names
161
+ {
162
+ NONE => 'None',
163
+ KINETIC => 'Kinetic',
164
+ ARC => 'Arc',
165
+ SOLAR => 'Solar',
166
+ VOID => 'Void',
167
+ RAID => 'Raid',
168
+ STASIS => 'Stasis',
169
+ STRAND => 'Strand'
170
+ }
171
+ end
172
+ end
173
+
133
174
  # Definitions for the various component types used when requesting a profile entry.
134
175
  module ComponentType
135
176
  PROFILES = '100'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Restiny
4
- VERSION = '6.0.0'
4
+ VERSION = '6.1.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restiny
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Bogan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-09 00:00:00.000000000 Z
11
+ date: 2023-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpx