restiny 6.0.0 → 6.0.1
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 +17 -0
- data/lib/restiny/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: b061286fd4cf027ac79539b0375eaef3062c75f524008d8a1037dbc42e042a53
|
|
4
|
+
data.tar.gz: 285d58001b6d314532949d728f220b9fe8f299400feb523f5ddd082001275211
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e84b528e63c4f3dd6919a9c749bcb5e7c4542aa6b3d980650e056e927da5b5a65c7f9947c9fd1a0928748a379ad4f5d30b3777b824c92db93d1e49f31a283ab
|
|
7
|
+
data.tar.gz: 7e91ee68f45403400d3964665c137e453087fcb48ec0245040a88fd10deda79091fd69cf3707b8ba53b53c444a57bf5532bfabb02b7e38b70140ef16f523ab12
|
data/lib/restiny/constants.rb
CHANGED
|
@@ -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
|
data/lib/restiny/version.rb
CHANGED
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.
|
|
4
|
+
version: 6.0.1
|
|
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-
|
|
11
|
+
date: 2023-12-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httpx
|