gotchi-battler-game-logic 1.0.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.
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Export the gameLoop function for the current version of the game logic
2
+ const versions = require('./game-logic')
3
+
4
+ const currentVersion = versions[versions.current]
5
+
6
+ module.exports = currentVersion.gameLoop
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "gotchi-battler-game-logic",
3
+ "version": "1.0.0",
4
+ "main": "index.js",
5
+ "scripts": {
6
+ "test": "echo \"Error: no test specified\" && exit 1"
7
+ },
8
+ "author": "Galaxy Brain Studios",
9
+ "description": "The game logic for the Gotchi Battler game",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "Galaxy-Brain-Studios/gotchi-battler-game-logic"
13
+ },
14
+ "dependencies": {
15
+ "jsonschema": "^1.4.1",
16
+ "seedrandom": "^3.0.5"
17
+ },
18
+ "devDependencies": {
19
+ "axios": "^1.7.4",
20
+ "ethers": "^5.7.0"
21
+ }
22
+ }
@@ -0,0 +1,204 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "formation": {
6
+ "type": "object",
7
+ "required": ["front", "back"],
8
+ "properties": {
9
+ "front": {
10
+ "type": "array",
11
+ "minItems": 5,
12
+ "maxItems": 5,
13
+ "items": {
14
+ "oneOf": [
15
+ {
16
+ "$ref": "#/definitions/gotchi"
17
+ },
18
+ {
19
+ "type": "null"
20
+ }
21
+ ]
22
+ }
23
+ },
24
+ "back": {
25
+ "type": "array",
26
+ "minItems": 5,
27
+ "maxItems": 5,
28
+ "items": {
29
+ "oneOf": [
30
+ {
31
+ "$ref": "#/definitions/gotchi"
32
+ },
33
+ {
34
+ "type": "null"
35
+ }
36
+ ]
37
+ }
38
+ }
39
+ }
40
+ },
41
+ "leader": {
42
+ "type": "integer"
43
+ },
44
+ "name": {
45
+ "type": "string"
46
+ },
47
+ "owner": {
48
+ "type": "string",
49
+ "pattern": "^0x[a-fA-F0-9]{40}$"
50
+ }
51
+ },
52
+ "required": ["formation", "leader", "name", "owner"],
53
+ "additionalProperties": false,
54
+ "definitions": {
55
+ "gotchi": {
56
+ "type": "object",
57
+ "properties": {
58
+ "id": {
59
+ "type": "integer"
60
+ },
61
+ "snapshotBlock": {
62
+ "type": "integer"
63
+ },
64
+ "onchainId": {
65
+ "type": "integer"
66
+ },
67
+ "name": {
68
+ "type": "string"
69
+ },
70
+ "brs": {
71
+ "type": "integer"
72
+ },
73
+ "nrg": {
74
+ "type": "integer"
75
+ },
76
+ "agg": {
77
+ "type": "integer"
78
+ },
79
+ "spk": {
80
+ "type": "integer"
81
+ },
82
+ "brn": {
83
+ "type": "integer"
84
+ },
85
+ "eyc": {
86
+ "type": "integer"
87
+ },
88
+ "eys": {
89
+ "type": "integer"
90
+ },
91
+ "kinship": {
92
+ "type": "integer"
93
+ },
94
+ "xp": {
95
+ "type": "integer"
96
+ },
97
+ "speed": {
98
+ "type": "integer"
99
+ },
100
+ "health": {
101
+ "type": "integer"
102
+ },
103
+ "crit": {
104
+ "type": "integer"
105
+ },
106
+ "armor": {
107
+ "type": "integer"
108
+ },
109
+ "evade": {
110
+ "type": "integer"
111
+ },
112
+ "resist": {
113
+ "type": "integer"
114
+ },
115
+ "magic": {
116
+ "type": "integer"
117
+ },
118
+ "physical": {
119
+ "type": "integer"
120
+ },
121
+ "accuracy": {
122
+ "type": "number"
123
+ },
124
+ "attack": {
125
+ "type": "string",
126
+ "enum": ["physical", "magic"]
127
+ },
128
+ "actionDelay": {
129
+ "type": "number"
130
+ },
131
+ "svgFront": {
132
+ "type": "string",
133
+ "format": "uri"
134
+ },
135
+ "svgBack": {
136
+ "type": "string",
137
+ "format": "uri"
138
+ },
139
+ "svgLeft": {
140
+ "type": "string",
141
+ "format": "uri"
142
+ },
143
+ "svgRight": {
144
+ "type": "string",
145
+ "format": "uri"
146
+ },
147
+ "specialId": {
148
+ "type": "integer"
149
+ },
150
+ "special": {
151
+ "type": "object",
152
+ "properties": {
153
+ "id": {
154
+ "type": "integer"
155
+ },
156
+ "class": {
157
+ "type": "string"
158
+ },
159
+ "gotchiClass": {
160
+ "type": "string"
161
+ },
162
+ "name": {
163
+ "type": "string"
164
+ },
165
+ "cooldown": {
166
+ "type": "integer"
167
+ },
168
+ "leaderPassive": {
169
+ "type": "string"
170
+ }
171
+ },
172
+ "required": ["id", "name", "cooldown", "leaderPassive"],
173
+ "additionalProperties": false
174
+ },
175
+ "statuses": {
176
+ "type": "array",
177
+ "items": {
178
+ "type": "string"
179
+ }
180
+ }
181
+ },
182
+ "additionalProperties": false,
183
+ "required": [
184
+ "id",
185
+ "name",
186
+ "speed",
187
+ "health",
188
+ "crit",
189
+ "armor",
190
+ "evade",
191
+ "resist",
192
+ "magic",
193
+ "physical",
194
+ "accuracy",
195
+ "svgFront",
196
+ "svgBack",
197
+ "svgLeft",
198
+ "svgRight",
199
+ "specialId",
200
+ "special"
201
+ ]
202
+ }
203
+ }
204
+ }
@@ -0,0 +1,201 @@
1
+ {
2
+ "formation": {
3
+ "front": [
4
+ {
5
+ "id": 533,
6
+ "snapshotBlock": 59673035,
7
+ "onchainId": 23795,
8
+ "name": "Slide",
9
+ "brs": 1005,
10
+ "nrg": -29,
11
+ "agg": 3,
12
+ "spk": -3,
13
+ "brn": -29,
14
+ "eyc": 99,
15
+ "eys": 88,
16
+ "kinship": 1732,
17
+ "xp": 182430,
18
+ "speed": 100,
19
+ "health": 1702,
20
+ "crit": 0,
21
+ "armor": 94,
22
+ "evade": 0,
23
+ "resist": 53,
24
+ "magic": 251,
25
+ "physical": 646,
26
+ "accuracy": 94.5,
27
+ "attack": "physical",
28
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/74f07327e89d0ea20c704549f98adee094d78ad7f95a27948d88e2b69766b191.png",
29
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/3b5139773724c184ae73afa033a1abc8b2222e6f1feba86fce33fc743a054800.png",
30
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/93f829f50da50b168de50c4679e1a7b0bfbb922f3bdd44900a7307578e7c9ce2.png",
31
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/944e70e7a094e891d4b89df5ee15d2d3cc65e73734257605e6d9110fe3eb4be8.png",
32
+ "specialId": 2,
33
+ "special": {
34
+ "id": 2,
35
+ "class": "Enlightened",
36
+ "name": "Meditate",
37
+ "cooldown": 0,
38
+ "leaderPassive": "Cloud of Zen"
39
+ }
40
+ },
41
+ null,
42
+ {
43
+ "id": 534,
44
+ "snapshotBlock": 59673035,
45
+ "onchainId": 16291,
46
+ "name": "Aavenomics",
47
+ "brs": 786,
48
+ "nrg": 2,
49
+ "agg": -18,
50
+ "spk": 117,
51
+ "brn": 3,
52
+ "eyc": 95,
53
+ "eys": 83,
54
+ "kinship": 1804,
55
+ "xp": 3445,
56
+ "speed": 100,
57
+ "health": 1166,
58
+ "crit": 0,
59
+ "armor": 136,
60
+ "evade": 20,
61
+ "resist": 0,
62
+ "magic": 197,
63
+ "physical": 432,
64
+ "accuracy": 90,
65
+ "attack": "physical",
66
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/545e7f3a61833374bb2c27b53b549a560580397494866fc5599088112199d992.png",
67
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/7329e0c0e57637ca99d58dcf571730259c64f1aed63526d31fe31bb8323fa83b.png",
68
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/96625cba302f81dcf441331274f5b7cc5ae646da2d47fa07988fcd4bc17c342b.png",
69
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/7dbc392da25ccc50ec08705703b50c363ba5cb7f4b35d971324fe4ad84308fec.png",
70
+ "specialId": 5,
71
+ "special": {
72
+ "id": 5,
73
+ "class": "Cursed",
74
+ "name": "Curse",
75
+ "cooldown": 0,
76
+ "leaderPassive": "Spread the fear"
77
+ }
78
+ },
79
+ null,
80
+ {
81
+ "id": 535,
82
+ "snapshotBlock": 59673035,
83
+ "onchainId": 2057,
84
+ "name": "Blue Moon",
85
+ "brs": 775,
86
+ "nrg": -2,
87
+ "agg": 98,
88
+ "spk": 91,
89
+ "brn": 120,
90
+ "eyc": 95,
91
+ "eys": 5,
92
+ "kinship": 1786,
93
+ "xp": 3755,
94
+ "speed": 100,
95
+ "health": 1205,
96
+ "crit": 25,
97
+ "armor": 0,
98
+ "evade": 13,
99
+ "resist": 0,
100
+ "magic": 549,
101
+ "physical": 194,
102
+ "accuracy": 95.5,
103
+ "attack": "magic",
104
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/135a500abe09364fa61c0e129c78cd5efd3fe15998cb784c60c94a7261e3f22e.png",
105
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/69824fede30868d1b9ba84af5044357b262ff64fe8b94079be667f35c2b62979.png",
106
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/dae02ef55bfa696e737fdff901c8a6321a37cf234e4dbb0b52beab80563e67f4.png",
107
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/4909819acbcfa03247b8319776e7f031c666fca51aeaa3fac7400415d6055ed6.png",
108
+ "specialId": 7,
109
+ "special": {
110
+ "id": 7,
111
+ "class": "Mage",
112
+ "name": "Thunder",
113
+ "cooldown": 2,
114
+ "leaderPassive": "Channel the coven"
115
+ }
116
+ }
117
+ ],
118
+ "back": [
119
+ null,
120
+ {
121
+ "id": 531,
122
+ "snapshotBlock": 59673035,
123
+ "onchainId": 13700,
124
+ "name": "Maxicrouton",
125
+ "brs": 813,
126
+ "nrg": 114,
127
+ "agg": 102,
128
+ "spk": -21,
129
+ "brn": 102,
130
+ "eyc": 93,
131
+ "eys": 76,
132
+ "kinship": 2146,
133
+ "xp": 23515,
134
+ "speed": 165,
135
+ "health": 610,
136
+ "crit": 27,
137
+ "armor": 0,
138
+ "evade": 0,
139
+ "resist": 71,
140
+ "magic": 468,
141
+ "physical": 203,
142
+ "accuracy": 85.5,
143
+ "attack": "magic",
144
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/3e19380df6b59a735bc1e545c355b09438c14164cc1d8a78ddcbae6c6e8e6e19.png",
145
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/cc1f62ade1657feaaf68bdd320cc34c3d8f80e775e07a9efb4d8a0a16c0cae70.png",
146
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/c507028197648c575d94dcdb0e7142cf7568e873cb0ba524719e9fb9ac62959f.png",
147
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/88a3d7debfa56845d536da1fc5725446a2d70db2d1a2683ef478d971273936a4.png",
148
+ "specialId": 6,
149
+ "special": {
150
+ "id": 6,
151
+ "class": "Healer",
152
+ "name": "Blessing",
153
+ "cooldown": 0,
154
+ "leaderPassive": "Cleansing Aura"
155
+ }
156
+ },
157
+ null,
158
+ {
159
+ "id": 532,
160
+ "snapshotBlock": 59673035,
161
+ "onchainId": 13996,
162
+ "name": "Scavenger",
163
+ "brs": 821,
164
+ "nrg": 108,
165
+ "agg": 108,
166
+ "spk": 108,
167
+ "brn": 96,
168
+ "eyc": 97,
169
+ "eys": 98,
170
+ "kinship": 1941,
171
+ "xp": 14345,
172
+ "speed": 159,
173
+ "health": 616,
174
+ "crit": 30,
175
+ "armor": 0,
176
+ "evade": 18,
177
+ "resist": 0,
178
+ "magic": 440,
179
+ "physical": 205,
180
+ "accuracy": 98.5,
181
+ "attack": "magic",
182
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/ed88a02c8d88fea501dbc0b265ada9d1217ff309b882237424b608533674ddd3.png",
183
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/afa1e56b2e27546f528792f6cad24ea9031be838b0c552a84166d0f8d6a02422.png",
184
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/803c6ce2e90c81ae8c9107341d4262c0d4ed88e049473ba625d622d524c334fb.png",
185
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/9572e2555f4a22b6a9dff0a4ecff0175d235916acd13cb890789079f0aca6e13.png",
186
+ "specialId": 5,
187
+ "special": {
188
+ "id": 5,
189
+ "class": "Cursed",
190
+ "name": "Curse",
191
+ "cooldown": 0,
192
+ "leaderPassive": "Spread the fear"
193
+ }
194
+ },
195
+ null
196
+ ]
197
+ },
198
+ "leader": 533,
199
+ "name": "Ogi Maxi",
200
+ "owner": "0xa532f169cee0e551d4da641031ac78fd85461035"
201
+ }
@@ -0,0 +1,201 @@
1
+ {
2
+ "formation": {
3
+ "front": [
4
+ null,
5
+ {
6
+ "id": 539,
7
+ "snapshotBlock": 59673035,
8
+ "onchainId": 13681,
9
+ "name": "Artemis",
10
+ "brs": 851,
11
+ "nrg": -11,
12
+ "agg": -2,
13
+ "spk": 86,
14
+ "brn": 110,
15
+ "eyc": 1,
16
+ "eys": 0,
17
+ "kinship": 1663,
18
+ "xp": 2745,
19
+ "speed": 100,
20
+ "health": 1370,
21
+ "crit": 0,
22
+ "armor": 104,
23
+ "evade": 11,
24
+ "resist": 0,
25
+ "magic": 518,
26
+ "physical": 213,
27
+ "accuracy": 99.5,
28
+ "attack": "magic",
29
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/9f4def373cf431294f0b84f41d44f01b37672083a8b7b50d3ce0d95228fc5d9f.png",
30
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/34c3252ba2f0f42a8b729d3bd63d1f4da0127638f8fa182a6a4dc4d21613c559.png",
31
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/92600bb5938b211f40d0def5878df8543f67cd9b05afd80a284a5ef4c348fc18.png",
32
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/6bb67fb53ac8400770f788af79e7495f00f7fa584d30d3e08f1407a18f58f5e3.png",
33
+ "specialId": 7,
34
+ "special": {
35
+ "id": 7,
36
+ "class": "Mage",
37
+ "name": "Thunder",
38
+ "cooldown": 2,
39
+ "leaderPassive": "Channel the coven"
40
+ }
41
+ },
42
+ null,
43
+ {
44
+ "id": 540,
45
+ "snapshotBlock": 59673035,
46
+ "onchainId": 16676,
47
+ "name": "Renna",
48
+ "brs": 706,
49
+ "nrg": 4,
50
+ "agg": 1,
51
+ "spk": -10,
52
+ "brn": 100,
53
+ "eyc": 97,
54
+ "eys": 12,
55
+ "kinship": 2017,
56
+ "xp": 3465,
57
+ "speed": 100,
58
+ "health": 1082,
59
+ "crit": 0,
60
+ "armor": 98,
61
+ "evade": 0,
62
+ "resist": 60,
63
+ "magic": 432,
64
+ "physical": 177,
65
+ "accuracy": 93,
66
+ "attack": "magic",
67
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/3e2ab7f51c68b9f6d840112acf85e43cdd4482d6928d036a0d25ed9d4d7fd8cb.png",
68
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/70a7da02ab9172152ccef9210f87c6cd55b326a0c9e84f8f2bbe8f6c3ccb4417.png",
69
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/991830ed19232f1c9a677dbe4ced307af9918f89bf140476a7036a5c529fd956.png",
70
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/0b897d90ee01a77aff97a80cdf75a179b53ec5f51cd151e6dfa5380e6e25357d.png",
71
+ "specialId": 6,
72
+ "special": {
73
+ "id": 6,
74
+ "class": "Healer",
75
+ "name": "Blessing",
76
+ "cooldown": 0,
77
+ "leaderPassive": "Cleansing Aura"
78
+ }
79
+ },
80
+ null
81
+ ],
82
+ "back": [
83
+ {
84
+ "id": 536,
85
+ "snapshotBlock": 59673035,
86
+ "onchainId": 15560,
87
+ "name": "Czar",
88
+ "brs": 823,
89
+ "nrg": 103,
90
+ "agg": 108,
91
+ "spk": 17,
92
+ "brn": -27,
93
+ "eyc": 0,
94
+ "eys": 0,
95
+ "kinship": 2121,
96
+ "xp": 4350,
97
+ "speed": 154,
98
+ "health": 617,
99
+ "crit": 30,
100
+ "armor": 0,
101
+ "evade": 0,
102
+ "resist": 33,
103
+ "magic": 206,
104
+ "physical": 591,
105
+ "accuracy": 100,
106
+ "attack": "physical",
107
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/314f74e7dc6c347aeb88e7a3ce1ea582154f857b59d407dbab7ec35926b3b978.png",
108
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/dbf15d1c3b74baefaa42ce5ec5de868a1ac8ebd0e38553f8b37de7763014614c.png",
109
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/6832d15ef8e784d36306a5ef14ae5d80c716a609e5bb48607964d0280dba6ad9.png",
110
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/6e9d00e3947134dbca37c97dddb0f5f02a8a8c35417ad88f0ba6202e82b25d0d.png",
111
+ "specialId": 8,
112
+ "special": {
113
+ "id": 8,
114
+ "class": "Troll",
115
+ "name": "Devestating Smash",
116
+ "cooldown": 2,
117
+ "leaderPassive": "Clan momentum"
118
+ }
119
+ },
120
+ null,
121
+ {
122
+ "id": 537,
123
+ "snapshotBlock": 59673035,
124
+ "onchainId": 474,
125
+ "name": "Titan",
126
+ "brs": 740,
127
+ "nrg": 107,
128
+ "agg": 100,
129
+ "spk": 107,
130
+ "brn": 107,
131
+ "eyc": 91,
132
+ "eys": 92,
133
+ "kinship": 2295,
134
+ "xp": 3380,
135
+ "speed": 158,
136
+ "health": 555,
137
+ "crit": 26,
138
+ "armor": 0,
139
+ "evade": 17,
140
+ "resist": 0,
141
+ "magic": 475,
142
+ "physical": 185,
143
+ "accuracy": 92.5,
144
+ "attack": "magic",
145
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/c44da0ac4057817671968dc80027c7262f679a51b5c0fffa468d56d990d10795.png",
146
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/8f8e6e9f7ec7e3e11c0591014108885a20057f49ec009dc4980190c1b4bdcfb0.png",
147
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/a7a485f674cc6c5b4f22271408688a18ba985f743e7ec4794f208cb50d2fdc26.png",
148
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/aa0d6349e760625cdd34781f683dd316649630b39fa7ad829e8b862efad31a78.png",
149
+ "specialId": 5,
150
+ "special": {
151
+ "id": 5,
152
+ "class": "Cursed",
153
+ "name": "Curse",
154
+ "cooldown": 0,
155
+ "leaderPassive": "Spread the fear"
156
+ }
157
+ },
158
+ null,
159
+ {
160
+ "id": 538,
161
+ "snapshotBlock": 59673035,
162
+ "onchainId": 2270,
163
+ "name": "Caesar",
164
+ "brs": 750,
165
+ "nrg": 97,
166
+ "agg": 101,
167
+ "spk": 98,
168
+ "brn": 120,
169
+ "eyc": 1,
170
+ "eys": 85,
171
+ "kinship": 2511,
172
+ "xp": 4905,
173
+ "speed": 148,
174
+ "health": 563,
175
+ "crit": 26,
176
+ "armor": 0,
177
+ "evade": 15,
178
+ "resist": 0,
179
+ "magic": 543,
180
+ "physical": 188,
181
+ "accuracy": 92.5,
182
+ "attack": "magic",
183
+ "svgFront": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/6f733ca8e041965680bbd482a82d669c3d45d8e73bbcc105f367937d62b4604b.png",
184
+ "svgBack": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/ce74959c2b5ff03e74568389a2068e4a14a8d6b9969c247b3bbe804bac2ab4d4.png",
185
+ "svgLeft": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/2c8a0e22e9af7be4c2232d7596f9a0ee1b2d1df0e114def431f6c7809e2d2629.png",
186
+ "svgRight": "https://storage.googleapis.com/gotchi-battler-live_gotchis/onchain/fc3e90aefb6f8d8c9bf846b94358619aa495d6c14da096f17e24a7634c2270f4.png",
187
+ "specialId": 7,
188
+ "special": {
189
+ "id": 7,
190
+ "class": "Mage",
191
+ "name": "Thunder",
192
+ "cooldown": 2,
193
+ "leaderPassive": "Channel the coven"
194
+ }
195
+ }
196
+ ]
197
+ },
198
+ "leader": 537,
199
+ "name": "Wagdiddly",
200
+ "owner": "0xd281f988242c900d67ff2aafabe683b8004ee778"
201
+ }