restiny 6.0.1 → 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 +4 -4
- data/lib/restiny/constants.rb +26 -2
- data/lib/restiny/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b13f8972845550ae0ddda6b09d4167188a4cbdebf3951adb88b16d69554d0644
|
|
4
|
+
data.tar.gz: b57fd5b6295147321ae1aa839007f738b87a99ba6c3682428ebefeb49dc9de09
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a13e9f6421db33ae7e2fdfef2cb84a175786fa64a32a502ad93096c2b4eff041aa5f8c7255a96df4972c1e168042d274409245560ac40d67f1c3517755416ab7
|
|
7
|
+
data.tar.gz: 786f519aa8b81589758c64e7552fa13183b45e45e6ea56986dbad6b4d1bf2282be2067de6f1cd03a24a60100bf25f2f67801355b50c28f209b58926d1a3eb2a9
|
data/lib/restiny/constants.rb
CHANGED
|
@@ -46,7 +46,7 @@ module Restiny
|
|
|
46
46
|
BASIC = 2
|
|
47
47
|
COMMON = 3
|
|
48
48
|
RARE = 4
|
|
49
|
-
|
|
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
|
-
|
|
59
|
+
LEGENDARY => 'Legendary',
|
|
60
60
|
EXOTIC => 'Exotic'
|
|
61
61
|
}
|
|
62
62
|
end
|
|
@@ -147,6 +147,30 @@ module Restiny
|
|
|
147
147
|
end
|
|
148
148
|
end
|
|
149
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
|
+
|
|
150
174
|
# Definitions for the various component types used when requesting a profile entry.
|
|
151
175
|
module ComponentType
|
|
152
176
|
PROFILES = '100'
|
data/lib/restiny/version.rb
CHANGED