ruby-lol 0.9.14 → 0.9.15
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/lol/static_request.rb +7 -2
- data/lib/lol/version.rb +1 -1
- data/spec/api_version_spec.rb +1 -1
- data/spec/fixtures/v1.2/get-champion-by-id.json +6 -0
- data/spec/fixtures/v1.2/get-item-by-id.json +6 -0
- data/spec/fixtures/v1.2/get-item.json +1563 -0
- data/spec/fixtures/v1.2/get-mastery-by-id.json +9 -0
- data/spec/fixtures/v1.2/get-mastery.json +389 -0
- data/spec/fixtures/v1.2/get-realm.json +1 -0
- data/spec/fixtures/v1.2/get-rune-by-id.json +26 -0
- data/spec/fixtures/v1.2/get-rune.json +2966 -0
- data/spec/fixtures/v1.2/get-static-champion.json +714 -0
- data/spec/fixtures/v1.2/get-summoner-spell-by-id.json +39 -0
- data/spec/fixtures/v1.2/get-summoner-spell.json +97 -0
- data/spec/fixtures/v1.2/get-versions.json +1 -0
- data/spec/lol/static_request_spec.rb +24 -4
- metadata +26 -24
- data/spec/fixtures/v1/get-champion-by-id.json +0 -952
- data/spec/fixtures/v1/get-champion.json +0 -708
- data/spec/fixtures/v1/get-item-by-id.json +0 -5
- data/spec/fixtures/v1/get-item.json +0 -982
- data/spec/fixtures/v1/get-mastery-by-id.json +0 -9
- data/spec/fixtures/v1/get-mastery.json +0 -1359
- data/spec/fixtures/v1/get-realm.json +0 -18
- data/spec/fixtures/v1/get-rune-by-id.json +0 -22
- data/spec/fixtures/v1/get-rune.json +0 -6465
- data/spec/fixtures/v1/get-summoner-spell-by-id.json +0 -64
- data/spec/fixtures/v1/get-summoner-spell.json +0 -657
| @@ -1,64 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "id": "SummonerMana",
         | 
| 3 | 
            -
              "summonerLevel": 1,
         | 
| 4 | 
            -
              "name": "Clarity",
         | 
| 5 | 
            -
              "description": "Restores 40% of your champion's maximum Mana. Also restores allies for 40% of their maximum Mana",
         | 
| 6 | 
            -
              "key": "13",
         | 
| 7 | 
            -
              "image": {
         | 
| 8 | 
            -
                "full": "SummonerMana.png",
         | 
| 9 | 
            -
                "sprite": "spell0.png",
         | 
| 10 | 
            -
                "group": "spell",
         | 
| 11 | 
            -
                "x": 0,
         | 
| 12 | 
            -
                "y": 48,
         | 
| 13 | 
            -
                "w": 48,
         | 
| 14 | 
            -
                "h": 48
         | 
| 15 | 
            -
              },
         | 
| 16 | 
            -
              "tooltip": "Restores {{ f1 }}% maximum Mana to your Champion and nearby allies.",
         | 
| 17 | 
            -
              "resource": "No Cost",
         | 
| 18 | 
            -
              "maxrank": 1,
         | 
| 19 | 
            -
              "modes": [
         | 
| 20 | 
            -
                "CLASSIC",
         | 
| 21 | 
            -
                "ODIN",
         | 
| 22 | 
            -
                "TUTORIAL",
         | 
| 23 | 
            -
                "ARAM"
         | 
| 24 | 
            -
              ],
         | 
| 25 | 
            -
              "costType": "NoCost",
         | 
| 26 | 
            -
              "cost": [
         | 
| 27 | 
            -
                0
         | 
| 28 | 
            -
              ],
         | 
| 29 | 
            -
              "costBurn": "0",
         | 
| 30 | 
            -
              "range": [
         | 
| 31 | 
            -
                600
         | 
| 32 | 
            -
              ],
         | 
| 33 | 
            -
              "rangeBurn": "600",
         | 
| 34 | 
            -
              "cooldown": [
         | 
| 35 | 
            -
                180
         | 
| 36 | 
            -
              ],
         | 
| 37 | 
            -
              "cooldownBurn": "180",
         | 
| 38 | 
            -
              "vars": [
         | 
| 39 | 
            -
                {
         | 
| 40 | 
            -
                  "key": "f1",
         | 
| 41 | 
            -
                  "link": "@player.level",
         | 
| 42 | 
            -
                  "coeff": [
         | 
| 43 | 
            -
                    190.0,
         | 
| 44 | 
            -
                    220.0,
         | 
| 45 | 
            -
                    250.0,
         | 
| 46 | 
            -
                    280.0,
         | 
| 47 | 
            -
                    310.0,
         | 
| 48 | 
            -
                    340.0,
         | 
| 49 | 
            -
                    370.0,
         | 
| 50 | 
            -
                    400.0,
         | 
| 51 | 
            -
                    430.0,
         | 
| 52 | 
            -
                    460.0,
         | 
| 53 | 
            -
                    490.0,
         | 
| 54 | 
            -
                    520.0,
         | 
| 55 | 
            -
                    550.0,
         | 
| 56 | 
            -
                    580.0,
         | 
| 57 | 
            -
                    610.0,
         | 
| 58 | 
            -
                    640.0,
         | 
| 59 | 
            -
                    670.0,
         | 
| 60 | 
            -
                    700.0
         | 
| 61 | 
            -
                  ]
         | 
| 62 | 
            -
                }
         | 
| 63 | 
            -
              ]
         | 
| 64 | 
            -
            }
         | 
| @@ -1,657 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "type": "summoner",
         | 
| 3 | 
            -
              "version": "4.1.13",
         | 
| 4 | 
            -
              "data": {
         | 
| 5 | 
            -
                "SummonerBarrier": {
         | 
| 6 | 
            -
                  "id": "SummonerBarrier",
         | 
| 7 | 
            -
                  "summonerLevel": 6,
         | 
| 8 | 
            -
                  "name": "Barrier",
         | 
| 9 | 
            -
                  "description": "Shields your champion for 115-455 (depending on champion level) for 2 seconds.",
         | 
| 10 | 
            -
                  "key": "21",
         | 
| 11 | 
            -
                  "image": {
         | 
| 12 | 
            -
                    "full": "SummonerBarrier.png",
         | 
| 13 | 
            -
                    "sprite": "spell0.png",
         | 
| 14 | 
            -
                    "group": "spell",
         | 
| 15 | 
            -
                    "x": 0,
         | 
| 16 | 
            -
                    "y": 0,
         | 
| 17 | 
            -
                    "w": 48,
         | 
| 18 | 
            -
                    "h": 48
         | 
| 19 | 
            -
                  },
         | 
| 20 | 
            -
                  "tooltip": "Temporarily shields {{ f1 }} damage from your champion for 2 seconds.",
         | 
| 21 | 
            -
                  "resource": "No Cost",
         | 
| 22 | 
            -
                  "maxrank": 1,
         | 
| 23 | 
            -
                  "modes": [
         | 
| 24 | 
            -
                    "ARAM",
         | 
| 25 | 
            -
                    "CLASSIC",
         | 
| 26 | 
            -
                    "TUTORIAL",
         | 
| 27 | 
            -
                    "ODIN"
         | 
| 28 | 
            -
                  ],
         | 
| 29 | 
            -
                  "costType": "NoCost",
         | 
| 30 | 
            -
                  "cost": [
         | 
| 31 | 
            -
                    0
         | 
| 32 | 
            -
                  ],
         | 
| 33 | 
            -
                  "costBurn": "0",
         | 
| 34 | 
            -
                  "range": "self",
         | 
| 35 | 
            -
                  "rangeBurn": "self",
         | 
| 36 | 
            -
                  "cooldown": [
         | 
| 37 | 
            -
                    0
         | 
| 38 | 
            -
                  ],
         | 
| 39 | 
            -
                  "cooldownBurn": "0",
         | 
| 40 | 
            -
                  "vars": [
         | 
| 41 | 
            -
                    {
         | 
| 42 | 
            -
                      "key": "f1",
         | 
| 43 | 
            -
                      "link": "@cooldownsummoner",
         | 
| 44 | 
            -
                      "coeff": 125.0
         | 
| 45 | 
            -
                    }
         | 
| 46 | 
            -
                  ]
         | 
| 47 | 
            -
                },
         | 
| 48 | 
            -
                "SummonerBoost": {
         | 
| 49 | 
            -
                  "id": "SummonerBoost",
         | 
| 50 | 
            -
                  "summonerLevel": 2,
         | 
| 51 | 
            -
                  "name": "Cleanse",
         | 
| 52 | 
            -
                  "description": "Removes all disables and summoner spell debuffs affecting your champion and lowers the duration of incoming disables by 65% for 3 seconds.",
         | 
| 53 | 
            -
                  "key": "1",
         | 
| 54 | 
            -
                  "image": {
         | 
| 55 | 
            -
                    "full": "SummonerBoost.png",
         | 
| 56 | 
            -
                    "sprite": "spell0.png",
         | 
| 57 | 
            -
                    "group": "spell",
         | 
| 58 | 
            -
                    "x": 96,
         | 
| 59 | 
            -
                    "y": 0,
         | 
| 60 | 
            -
                    "w": 48,
         | 
| 61 | 
            -
                    "h": 48
         | 
| 62 | 
            -
                  },
         | 
| 63 | 
            -
                  "tooltip": "Removes all disables and summoner spell debuffs affecting your champion and reduces the duration of disables by 65% for the next {{ f1 }} seconds.",
         | 
| 64 | 
            -
                  "resource": "No Cost",
         | 
| 65 | 
            -
                  "maxrank": 1,
         | 
| 66 | 
            -
                  "modes": [
         | 
| 67 | 
            -
                    "CLASSIC",
         | 
| 68 | 
            -
                    "ODIN",
         | 
| 69 | 
            -
                    "TUTORIAL",
         | 
| 70 | 
            -
                    "ARAM"
         | 
| 71 | 
            -
                  ],
         | 
| 72 | 
            -
                  "costType": "NoCost",
         | 
| 73 | 
            -
                  "cost": [
         | 
| 74 | 
            -
                    0
         | 
| 75 | 
            -
                  ],
         | 
| 76 | 
            -
                  "costBurn": "0",
         | 
| 77 | 
            -
                  "range": "self",
         | 
| 78 | 
            -
                  "rangeBurn": "self",
         | 
| 79 | 
            -
                  "cooldown": [
         | 
| 80 | 
            -
                    0
         | 
| 81 | 
            -
                  ],
         | 
| 82 | 
            -
                  "cooldownBurn": "0",
         | 
| 83 | 
            -
                  "vars": [
         | 
| 84 | 
            -
                    {
         | 
| 85 | 
            -
                      "key": "f1",
         | 
| 86 | 
            -
                      "link": "@text",
         | 
| 87 | 
            -
                      "coeff": 3.0
         | 
| 88 | 
            -
                    }
         | 
| 89 | 
            -
                  ]
         | 
| 90 | 
            -
                },
         | 
| 91 | 
            -
                "SummonerClairvoyance": {
         | 
| 92 | 
            -
                  "id": "SummonerClairvoyance",
         | 
| 93 | 
            -
                  "summonerLevel": 10,
         | 
| 94 | 
            -
                  "name": "Clairvoyance",
         | 
| 95 | 
            -
                  "description": "Reveals a small area of the map for your team for 5 seconds.",
         | 
| 96 | 
            -
                  "key": "2",
         | 
| 97 | 
            -
                  "image": {
         | 
| 98 | 
            -
                    "full": "SummonerClairvoyance.png",
         | 
| 99 | 
            -
                    "sprite": "spell0.png",
         | 
| 100 | 
            -
                    "group": "spell",
         | 
| 101 | 
            -
                    "x": 144,
         | 
| 102 | 
            -
                    "y": 0,
         | 
| 103 | 
            -
                    "w": 48,
         | 
| 104 | 
            -
                    "h": 48
         | 
| 105 | 
            -
                  },
         | 
| 106 | 
            -
                  "tooltip": "Reveals a small area of the map for your team for {{ f1 }} seconds.",
         | 
| 107 | 
            -
                  "resource": "No Cost",
         | 
| 108 | 
            -
                  "maxrank": 1,
         | 
| 109 | 
            -
                  "modes": [
         | 
| 110 | 
            -
                    "CLASSIC",
         | 
| 111 | 
            -
                    "ODIN",
         | 
| 112 | 
            -
                    "TUTORIAL"
         | 
| 113 | 
            -
                  ],
         | 
| 114 | 
            -
                  "costType": "NoCost",
         | 
| 115 | 
            -
                  "cost": [
         | 
| 116 | 
            -
                    0
         | 
| 117 | 
            -
                  ],
         | 
| 118 | 
            -
                  "costBurn": "0",
         | 
| 119 | 
            -
                  "range": [
         | 
| 120 | 
            -
                    25000
         | 
| 121 | 
            -
                  ],
         | 
| 122 | 
            -
                  "rangeBurn": "25000",
         | 
| 123 | 
            -
                  "cooldown": [
         | 
| 124 | 
            -
                    0
         | 
| 125 | 
            -
                  ],
         | 
| 126 | 
            -
                  "cooldownBurn": "0",
         | 
| 127 | 
            -
                  "vars": [
         | 
| 128 | 
            -
                    {
         | 
| 129 | 
            -
                      "key": "f1",
         | 
| 130 | 
            -
                      "link": "@text",
         | 
| 131 | 
            -
                      "coeff": 4.0
         | 
| 132 | 
            -
                    }
         | 
| 133 | 
            -
                  ]
         | 
| 134 | 
            -
                },
         | 
| 135 | 
            -
                "SummonerDot": {
         | 
| 136 | 
            -
                  "id": "SummonerDot",
         | 
| 137 | 
            -
                  "summonerLevel": 8,
         | 
| 138 | 
            -
                  "name": "Ignite",
         | 
| 139 | 
            -
                  "description": "Ignites target enemy champion, dealing 70-410 true damage (depending on champion level) over 5 seconds and reduces healing effects on the target for the duration.",
         | 
| 140 | 
            -
                  "key": "14",
         | 
| 141 | 
            -
                  "image": {
         | 
| 142 | 
            -
                    "full": "SummonerDot.png",
         | 
| 143 | 
            -
                    "sprite": "spell0.png",
         | 
| 144 | 
            -
                    "group": "spell",
         | 
| 145 | 
            -
                    "x": 192,
         | 
| 146 | 
            -
                    "y": 0,
         | 
| 147 | 
            -
                    "w": 48,
         | 
| 148 | 
            -
                    "h": 48
         | 
| 149 | 
            -
                  },
         | 
| 150 | 
            -
                  "tooltip": "Ignite deals <span class=\"colorFEFCFF\">{{ f1 }}</span> true damage to target enemy champion over 5 seconds and reduces healing effects by 50% for the duration.",
         | 
| 151 | 
            -
                  "resource": "No Cost",
         | 
| 152 | 
            -
                  "maxrank": 1,
         | 
| 153 | 
            -
                  "modes": [
         | 
| 154 | 
            -
                    "CLASSIC",
         | 
| 155 | 
            -
                    "ODIN",
         | 
| 156 | 
            -
                    "TUTORIAL",
         | 
| 157 | 
            -
                    "ARAM"
         | 
| 158 | 
            -
                  ],
         | 
| 159 | 
            -
                  "costType": "NoCost",
         | 
| 160 | 
            -
                  "cost": [
         | 
| 161 | 
            -
                    0
         | 
| 162 | 
            -
                  ],
         | 
| 163 | 
            -
                  "costBurn": "0",
         | 
| 164 | 
            -
                  "range": [
         | 
| 165 | 
            -
                    600
         | 
| 166 | 
            -
                  ],
         | 
| 167 | 
            -
                  "rangeBurn": "600",
         | 
| 168 | 
            -
                  "effect": [
         | 
| 169 | 
            -
                    null,
         | 
| 170 | 
            -
                    [
         | 
| 171 | 
            -
                      500
         | 
| 172 | 
            -
                    ],
         | 
| 173 | 
            -
                    [
         | 
| 174 | 
            -
                      150
         | 
| 175 | 
            -
                    ]
         | 
| 176 | 
            -
                  ],
         | 
| 177 | 
            -
                  "effectBurn": [
         | 
| 178 | 
            -
                    null,
         | 
| 179 | 
            -
                    "500",
         | 
| 180 | 
            -
                    "150"
         | 
| 181 | 
            -
                  ],
         | 
| 182 | 
            -
                  "cooldown": [
         | 
| 183 | 
            -
                    180
         | 
| 184 | 
            -
                  ],
         | 
| 185 | 
            -
                  "cooldownBurn": "180",
         | 
| 186 | 
            -
                  "vars": [
         | 
| 187 | 
            -
                    {
         | 
| 188 | 
            -
                      "key": "f1",
         | 
| 189 | 
            -
                      "link": "@player.level",
         | 
| 190 | 
            -
                      "coeff": [
         | 
| 191 | 
            -
                        70.0,
         | 
| 192 | 
            -
                        90.0,
         | 
| 193 | 
            -
                        110.0,
         | 
| 194 | 
            -
                        130.0,
         | 
| 195 | 
            -
                        150.0,
         | 
| 196 | 
            -
                        170.0,
         | 
| 197 | 
            -
                        190.0,
         | 
| 198 | 
            -
                        210.0,
         | 
| 199 | 
            -
                        230.0,
         | 
| 200 | 
            -
                        250.0,
         | 
| 201 | 
            -
                        270.0,
         | 
| 202 | 
            -
                        290.0,
         | 
| 203 | 
            -
                        310.0,
         | 
| 204 | 
            -
                        330.0,
         | 
| 205 | 
            -
                        350.0,
         | 
| 206 | 
            -
                        370.0,
         | 
| 207 | 
            -
                        390.0,
         | 
| 208 | 
            -
                        410.0
         | 
| 209 | 
            -
                      ]
         | 
| 210 | 
            -
                    }
         | 
| 211 | 
            -
                  ]
         | 
| 212 | 
            -
                },
         | 
| 213 | 
            -
                "SummonerExhaust": {
         | 
| 214 | 
            -
                  "id": "SummonerExhaust",
         | 
| 215 | 
            -
                  "summonerLevel": 8,
         | 
| 216 | 
            -
                  "name": "Exhaust",
         | 
| 217 | 
            -
                  "description": "Exhausts target enemy champion, reducing their Movement Speed and damage dealt by 30% for 2.5 seconds and reduces their Attack Speed by 50% for the duration.",
         | 
| 218 | 
            -
                  "key": "3",
         | 
| 219 | 
            -
                  "image": {
         | 
| 220 | 
            -
                    "full": "SummonerExhaust.png",
         | 
| 221 | 
            -
                    "sprite": "spell0.png",
         | 
| 222 | 
            -
                    "group": "spell",
         | 
| 223 | 
            -
                    "x": 240,
         | 
| 224 | 
            -
                    "y": 0,
         | 
| 225 | 
            -
                    "w": 48,
         | 
| 226 | 
            -
                    "h": 48
         | 
| 227 | 
            -
                  },
         | 
| 228 | 
            -
                  "tooltip": "Exhausts target enemy champion, reducing their Movement Speed and Damage dealt by {{ f2 }}% for 2.5 seconds and reducing their Attack Speed by {{ f3 }}% for the duration.",
         | 
| 229 | 
            -
                  "resource": "No Cost",
         | 
| 230 | 
            -
                  "maxrank": 1,
         | 
| 231 | 
            -
                  "modes": [
         | 
| 232 | 
            -
                    "CLASSIC",
         | 
| 233 | 
            -
                    "ODIN",
         | 
| 234 | 
            -
                    "TUTORIAL",
         | 
| 235 | 
            -
                    "ARAM"
         | 
| 236 | 
            -
                  ],
         | 
| 237 | 
            -
                  "costType": "NoCost",
         | 
| 238 | 
            -
                  "cost": [
         | 
| 239 | 
            -
                    0
         | 
| 240 | 
            -
                  ],
         | 
| 241 | 
            -
                  "costBurn": "0",
         | 
| 242 | 
            -
                  "range": [
         | 
| 243 | 
            -
                    550
         | 
| 244 | 
            -
                  ],
         | 
| 245 | 
            -
                  "rangeBurn": "550",
         | 
| 246 | 
            -
                  "cooldown": [
         | 
| 247 | 
            -
                    210
         | 
| 248 | 
            -
                  ],
         | 
| 249 | 
            -
                  "cooldownBurn": "210",
         | 
| 250 | 
            -
                  "vars": [
         | 
| 251 | 
            -
                    {
         | 
| 252 | 
            -
                      "key": "f2",
         | 
| 253 | 
            -
                      "coeff": 0.0
         | 
| 254 | 
            -
                    },
         | 
| 255 | 
            -
                    {
         | 
| 256 | 
            -
                      "key": "f3",
         | 
| 257 | 
            -
                      "coeff": 0.0
         | 
| 258 | 
            -
                    }
         | 
| 259 | 
            -
                  ]
         | 
| 260 | 
            -
                },
         | 
| 261 | 
            -
                "SummonerFlash": {
         | 
| 262 | 
            -
                  "id": "SummonerFlash",
         | 
| 263 | 
            -
                  "summonerLevel": 12,
         | 
| 264 | 
            -
                  "name": "Flash",
         | 
| 265 | 
            -
                  "description": "Teleports your champion a short distance toward your cursor's location.",
         | 
| 266 | 
            -
                  "key": "4",
         | 
| 267 | 
            -
                  "image": {
         | 
| 268 | 
            -
                    "full": "SummonerFlash.png",
         | 
| 269 | 
            -
                    "sprite": "spell0.png",
         | 
| 270 | 
            -
                    "group": "spell",
         | 
| 271 | 
            -
                    "x": 288,
         | 
| 272 | 
            -
                    "y": 0,
         | 
| 273 | 
            -
                    "w": 48,
         | 
| 274 | 
            -
                    "h": 48
         | 
| 275 | 
            -
                  },
         | 
| 276 | 
            -
                  "tooltip": "Teleports your champion a short distance toward your cursor's location.",
         | 
| 277 | 
            -
                  "resource": "No Cost",
         | 
| 278 | 
            -
                  "maxrank": 1,
         | 
| 279 | 
            -
                  "modes": [
         | 
| 280 | 
            -
                    "CLASSIC",
         | 
| 281 | 
            -
                    "ODIN",
         | 
| 282 | 
            -
                    "TUTORIAL",
         | 
| 283 | 
            -
                    "ARAM"
         | 
| 284 | 
            -
                  ],
         | 
| 285 | 
            -
                  "costType": "NoCost",
         | 
| 286 | 
            -
                  "cost": [
         | 
| 287 | 
            -
                    0
         | 
| 288 | 
            -
                  ],
         | 
| 289 | 
            -
                  "costBurn": "0",
         | 
| 290 | 
            -
                  "range": [
         | 
| 291 | 
            -
                    425
         | 
| 292 | 
            -
                  ],
         | 
| 293 | 
            -
                  "rangeBurn": "425",
         | 
| 294 | 
            -
                  "cooldown": [
         | 
| 295 | 
            -
                    0
         | 
| 296 | 
            -
                  ],
         | 
| 297 | 
            -
                  "cooldownBurn": "0"
         | 
| 298 | 
            -
                },
         | 
| 299 | 
            -
                "SummonerHaste": {
         | 
| 300 | 
            -
                  "id": "SummonerHaste",
         | 
| 301 | 
            -
                  "summonerLevel": 1,
         | 
| 302 | 
            -
                  "name": "Ghost",
         | 
| 303 | 
            -
                  "description": "Your champion can move through units and has 27% increased Movement Speed for 10 seconds",
         | 
| 304 | 
            -
                  "key": "6",
         | 
| 305 | 
            -
                  "image": {
         | 
| 306 | 
            -
                    "full": "SummonerHaste.png",
         | 
| 307 | 
            -
                    "sprite": "spell0.png",
         | 
| 308 | 
            -
                    "group": "spell",
         | 
| 309 | 
            -
                    "x": 384,
         | 
| 310 | 
            -
                    "y": 0,
         | 
| 311 | 
            -
                    "w": 48,
         | 
| 312 | 
            -
                    "h": 48
         | 
| 313 | 
            -
                  },
         | 
| 314 | 
            -
                  "tooltip": "Your champion can move through units and has {{ f1 }}% increased Movement Speed for 10 seconds.",
         | 
| 315 | 
            -
                  "resource": "No Cost",
         | 
| 316 | 
            -
                  "maxrank": 1,
         | 
| 317 | 
            -
                  "modes": [
         | 
| 318 | 
            -
                    "CLASSIC",
         | 
| 319 | 
            -
                    "ODIN",
         | 
| 320 | 
            -
                    "TUTORIAL",
         | 
| 321 | 
            -
                    "ARAM"
         | 
| 322 | 
            -
                  ],
         | 
| 323 | 
            -
                  "costType": "NoCost",
         | 
| 324 | 
            -
                  "cost": [
         | 
| 325 | 
            -
                    0
         | 
| 326 | 
            -
                  ],
         | 
| 327 | 
            -
                  "costBurn": "0",
         | 
| 328 | 
            -
                  "range": "self",
         | 
| 329 | 
            -
                  "rangeBurn": "self",
         | 
| 330 | 
            -
                  "cooldown": [
         | 
| 331 | 
            -
                    0
         | 
| 332 | 
            -
                  ],
         | 
| 333 | 
            -
                  "cooldownBurn": "0",
         | 
| 334 | 
            -
                  "vars": [
         | 
| 335 | 
            -
                    {
         | 
| 336 | 
            -
                      "key": "f1",
         | 
| 337 | 
            -
                      "link": "@text",
         | 
| 338 | 
            -
                      "coeff": 27.0
         | 
| 339 | 
            -
                    }
         | 
| 340 | 
            -
                  ]
         | 
| 341 | 
            -
                },
         | 
| 342 | 
            -
                "SummonerHeal": {
         | 
| 343 | 
            -
                  "id": "SummonerHeal",
         | 
| 344 | 
            -
                  "summonerLevel": 1,
         | 
| 345 | 
            -
                  "name": "Heal",
         | 
| 346 | 
            -
                  "description": "Restores 90-345 Health (depending on champion level) to your champion and to nearby allies.",
         | 
| 347 | 
            -
                  "key": "7",
         | 
| 348 | 
            -
                  "image": {
         | 
| 349 | 
            -
                    "full": "SummonerHeal.png",
         | 
| 350 | 
            -
                    "sprite": "spell0.png",
         | 
| 351 | 
            -
                    "group": "spell",
         | 
| 352 | 
            -
                    "x": 432,
         | 
| 353 | 
            -
                    "y": 0,
         | 
| 354 | 
            -
                    "w": 48,
         | 
| 355 | 
            -
                    "h": 48
         | 
| 356 | 
            -
                  },
         | 
| 357 | 
            -
                  "tooltip": "Restores {{ f1 }} Health to your champion and nearby allies.",
         | 
| 358 | 
            -
                  "resource": "No Cost",
         | 
| 359 | 
            -
                  "maxrank": 1,
         | 
| 360 | 
            -
                  "modes": [
         | 
| 361 | 
            -
                    "CLASSIC",
         | 
| 362 | 
            -
                    "ODIN",
         | 
| 363 | 
            -
                    "TUTORIAL",
         | 
| 364 | 
            -
                    "ARAM"
         | 
| 365 | 
            -
                  ],
         | 
| 366 | 
            -
                  "costType": "NoCost",
         | 
| 367 | 
            -
                  "cost": [
         | 
| 368 | 
            -
                    0
         | 
| 369 | 
            -
                  ],
         | 
| 370 | 
            -
                  "costBurn": "0",
         | 
| 371 | 
            -
                  "range": [
         | 
| 372 | 
            -
                    600
         | 
| 373 | 
            -
                  ],
         | 
| 374 | 
            -
                  "rangeBurn": "600",
         | 
| 375 | 
            -
                  "cooldown": [
         | 
| 376 | 
            -
                    300
         | 
| 377 | 
            -
                  ],
         | 
| 378 | 
            -
                  "cooldownBurn": "300",
         | 
| 379 | 
            -
                  "vars": [
         | 
| 380 | 
            -
                    {
         | 
| 381 | 
            -
                      "key": "f1",
         | 
| 382 | 
            -
                      "link": "@player.level",
         | 
| 383 | 
            -
                      "coeff": [
         | 
| 384 | 
            -
                        145.0,
         | 
| 385 | 
            -
                        170.0,
         | 
| 386 | 
            -
                        195.0,
         | 
| 387 | 
            -
                        220.0,
         | 
| 388 | 
            -
                        245.0,
         | 
| 389 | 
            -
                        270.0,
         | 
| 390 | 
            -
                        295.0,
         | 
| 391 | 
            -
                        320.0,
         | 
| 392 | 
            -
                        345.0,
         | 
| 393 | 
            -
                        370.0,
         | 
| 394 | 
            -
                        395.0,
         | 
| 395 | 
            -
                        420.0,
         | 
| 396 | 
            -
                        445.0,
         | 
| 397 | 
            -
                        470.0,
         | 
| 398 | 
            -
                        495.0,
         | 
| 399 | 
            -
                        520.0,
         | 
| 400 | 
            -
                        545.0,
         | 
| 401 | 
            -
                        570.0
         | 
| 402 | 
            -
                      ]
         | 
| 403 | 
            -
                    }
         | 
| 404 | 
            -
                  ]
         | 
| 405 | 
            -
                },
         | 
| 406 | 
            -
                "SummonerMana": {
         | 
| 407 | 
            -
                  "id": "SummonerMana",
         | 
| 408 | 
            -
                  "summonerLevel": 1,
         | 
| 409 | 
            -
                  "name": "Clarity",
         | 
| 410 | 
            -
                  "description": "Restores 40% of your champion's maximum Mana. Also restores allies for 40% of their maximum Mana",
         | 
| 411 | 
            -
                  "key": "13",
         | 
| 412 | 
            -
                  "image": {
         | 
| 413 | 
            -
                    "full": "SummonerMana.png",
         | 
| 414 | 
            -
                    "sprite": "spell0.png",
         | 
| 415 | 
            -
                    "group": "spell",
         | 
| 416 | 
            -
                    "x": 0,
         | 
| 417 | 
            -
                    "y": 48,
         | 
| 418 | 
            -
                    "w": 48,
         | 
| 419 | 
            -
                    "h": 48
         | 
| 420 | 
            -
                  },
         | 
| 421 | 
            -
                  "tooltip": "Restores {{ f1 }}% maximum Mana to your Champion and nearby allies.",
         | 
| 422 | 
            -
                  "resource": "No Cost",
         | 
| 423 | 
            -
                  "maxrank": 1,
         | 
| 424 | 
            -
                  "modes": [
         | 
| 425 | 
            -
                    "CLASSIC",
         | 
| 426 | 
            -
                    "ODIN",
         | 
| 427 | 
            -
                    "TUTORIAL",
         | 
| 428 | 
            -
                    "ARAM"
         | 
| 429 | 
            -
                  ],
         | 
| 430 | 
            -
                  "costType": "NoCost",
         | 
| 431 | 
            -
                  "cost": [
         | 
| 432 | 
            -
                    0
         | 
| 433 | 
            -
                  ],
         | 
| 434 | 
            -
                  "costBurn": "0",
         | 
| 435 | 
            -
                  "range": [
         | 
| 436 | 
            -
                    600
         | 
| 437 | 
            -
                  ],
         | 
| 438 | 
            -
                  "rangeBurn": "600",
         | 
| 439 | 
            -
                  "cooldown": [
         | 
| 440 | 
            -
                    180
         | 
| 441 | 
            -
                  ],
         | 
| 442 | 
            -
                  "cooldownBurn": "180",
         | 
| 443 | 
            -
                  "vars": [
         | 
| 444 | 
            -
                    {
         | 
| 445 | 
            -
                      "key": "f1",
         | 
| 446 | 
            -
                      "link": "@player.level",
         | 
| 447 | 
            -
                      "coeff": [
         | 
| 448 | 
            -
                        190.0,
         | 
| 449 | 
            -
                        220.0,
         | 
| 450 | 
            -
                        250.0,
         | 
| 451 | 
            -
                        280.0,
         | 
| 452 | 
            -
                        310.0,
         | 
| 453 | 
            -
                        340.0,
         | 
| 454 | 
            -
                        370.0,
         | 
| 455 | 
            -
                        400.0,
         | 
| 456 | 
            -
                        430.0,
         | 
| 457 | 
            -
                        460.0,
         | 
| 458 | 
            -
                        490.0,
         | 
| 459 | 
            -
                        520.0,
         | 
| 460 | 
            -
                        550.0,
         | 
| 461 | 
            -
                        580.0,
         | 
| 462 | 
            -
                        610.0,
         | 
| 463 | 
            -
                        640.0,
         | 
| 464 | 
            -
                        670.0,
         | 
| 465 | 
            -
                        700.0
         | 
| 466 | 
            -
                      ]
         | 
| 467 | 
            -
                    }
         | 
| 468 | 
            -
                  ]
         | 
| 469 | 
            -
                },
         | 
| 470 | 
            -
                "SummonerOdinGarrison": {
         | 
| 471 | 
            -
                  "id": "SummonerOdinGarrison",
         | 
| 472 | 
            -
                  "summonerLevel": 1,
         | 
| 473 | 
            -
                  "name": "Garrison",
         | 
| 474 | 
            -
                  "description": "Allied Turret: Grants massive regeneration for 8 seconds. Enemy Turret: Reduces damage dealt by 80% for 8 seconds.",
         | 
| 475 | 
            -
                  "key": "17",
         | 
| 476 | 
            -
                  "image": {
         | 
| 477 | 
            -
                    "full": "SummonerOdinGarrison.png",
         | 
| 478 | 
            -
                    "sprite": "spell0.png",
         | 
| 479 | 
            -
                    "group": "spell",
         | 
| 480 | 
            -
                    "x": 48,
         | 
| 481 | 
            -
                    "y": 48,
         | 
| 482 | 
            -
                    "w": 48,
         | 
| 483 | 
            -
                    "h": 48
         | 
| 484 | 
            -
                  },
         | 
| 485 | 
            -
                  "tooltip": "<span class=\"size14 colorFF9900\">Allied Turret:</span> Grants massive regeneration for 8 seconds.<br><br><span class=\"size14 colorFF9900\">Enemy Turret:</span> Reduces damage dealt by 80% for 8 seconds.",
         | 
| 486 | 
            -
                  "resource": "No Cost",
         | 
| 487 | 
            -
                  "maxrank": 1,
         | 
| 488 | 
            -
                  "modes": [
         | 
| 489 | 
            -
                    "ODIN"
         | 
| 490 | 
            -
                  ],
         | 
| 491 | 
            -
                  "costType": "NoCost",
         | 
| 492 | 
            -
                  "cost": [
         | 
| 493 | 
            -
                    0
         | 
| 494 | 
            -
                  ],
         | 
| 495 | 
            -
                  "costBurn": "0",
         | 
| 496 | 
            -
                  "range": [
         | 
| 497 | 
            -
                    1250
         | 
| 498 | 
            -
                  ],
         | 
| 499 | 
            -
                  "rangeBurn": "1250",
         | 
| 500 | 
            -
                  "cooldown": [
         | 
| 501 | 
            -
                    210
         | 
| 502 | 
            -
                  ],
         | 
| 503 | 
            -
                  "cooldownBurn": "210"
         | 
| 504 | 
            -
                },
         | 
| 505 | 
            -
                "SummonerRevive": {
         | 
| 506 | 
            -
                  "id": "SummonerRevive",
         | 
| 507 | 
            -
                  "summonerLevel": 1,
         | 
| 508 | 
            -
                  "name": "Revive",
         | 
| 509 | 
            -
                  "description": "Instantly revives your champion at your team's Summoner Platform and increases their Movement Speed for a short duration.",
         | 
| 510 | 
            -
                  "key": "10",
         | 
| 511 | 
            -
                  "image": {
         | 
| 512 | 
            -
                    "full": "SummonerRevive.png",
         | 
| 513 | 
            -
                    "sprite": "spell0.png",
         | 
| 514 | 
            -
                    "group": "spell",
         | 
| 515 | 
            -
                    "x": 192,
         | 
| 516 | 
            -
                    "y": 48,
         | 
| 517 | 
            -
                    "w": 48,
         | 
| 518 | 
            -
                    "h": 48
         | 
| 519 | 
            -
                  },
         | 
| 520 | 
            -
                  "tooltip": "Instantly revives your champion at your team's Summoner Platform and grants +{{ f3 }}% Movement Speed that decays over 12 seconds.",
         | 
| 521 | 
            -
                  "resource": "No Cost",
         | 
| 522 | 
            -
                  "maxrank": 1,
         | 
| 523 | 
            -
                  "modes": [
         | 
| 524 | 
            -
                    "CLASSIC",
         | 
| 525 | 
            -
                    "TUTORIAL",
         | 
| 526 | 
            -
                    "ODIN"
         | 
| 527 | 
            -
                  ],
         | 
| 528 | 
            -
                  "costType": "NoCost",
         | 
| 529 | 
            -
                  "cost": [
         | 
| 530 | 
            -
                    0
         | 
| 531 | 
            -
                  ],
         | 
| 532 | 
            -
                  "costBurn": "0",
         | 
| 533 | 
            -
                  "range": "self",
         | 
| 534 | 
            -
                  "rangeBurn": "self",
         | 
| 535 | 
            -
                  "cooldown": [
         | 
| 536 | 
            -
                    0
         | 
| 537 | 
            -
                  ],
         | 
| 538 | 
            -
                  "cooldownBurn": "0",
         | 
| 539 | 
            -
                  "vars": [
         | 
| 540 | 
            -
                    {
         | 
| 541 | 
            -
                      "key": "f3",
         | 
| 542 | 
            -
                      "coeff": 0.0
         | 
| 543 | 
            -
                    }
         | 
| 544 | 
            -
                  ]
         | 
| 545 | 
            -
                },
         | 
| 546 | 
            -
                "SummonerSmite": {
         | 
| 547 | 
            -
                  "id": "SummonerSmite",
         | 
| 548 | 
            -
                  "summonerLevel": 3,
         | 
| 549 | 
            -
                  "name": "Smite",
         | 
| 550 | 
            -
                  "description": "Deals 390-1000 true damage (depending on champion level) to target monster or enemy minion.",
         | 
| 551 | 
            -
                  "key": "11",
         | 
| 552 | 
            -
                  "image": {
         | 
| 553 | 
            -
                    "full": "SummonerSmite.png",
         | 
| 554 | 
            -
                    "sprite": "spell0.png",
         | 
| 555 | 
            -
                    "group": "spell",
         | 
| 556 | 
            -
                    "x": 240,
         | 
| 557 | 
            -
                    "y": 48,
         | 
| 558 | 
            -
                    "w": 48,
         | 
| 559 | 
            -
                    "h": 48
         | 
| 560 | 
            -
                  },
         | 
| 561 | 
            -
                  "tooltip": "Deals <span class=\"colorFEFCFF\">{{ f1 }}</span> true damage to target enemy minion or pet.",
         | 
| 562 | 
            -
                  "resource": "No Cost",
         | 
| 563 | 
            -
                  "maxrank": 1,
         | 
| 564 | 
            -
                  "modes": [
         | 
| 565 | 
            -
                    "CLASSIC",
         | 
| 566 | 
            -
                    "TUTORIAL",
         | 
| 567 | 
            -
                    "ODIN"
         | 
| 568 | 
            -
                  ],
         | 
| 569 | 
            -
                  "costType": "NoCost",
         | 
| 570 | 
            -
                  "cost": [
         | 
| 571 | 
            -
                    0
         | 
| 572 | 
            -
                  ],
         | 
| 573 | 
            -
                  "costBurn": "0",
         | 
| 574 | 
            -
                  "range": [
         | 
| 575 | 
            -
                    760
         | 
| 576 | 
            -
                  ],
         | 
| 577 | 
            -
                  "rangeBurn": "760",
         | 
| 578 | 
            -
                  "cooldown": [
         | 
| 579 | 
            -
                    0
         | 
| 580 | 
            -
                  ],
         | 
| 581 | 
            -
                  "cooldownBurn": "0",
         | 
| 582 | 
            -
                  "vars": [
         | 
| 583 | 
            -
                    {
         | 
| 584 | 
            -
                      "key": "f1",
         | 
| 585 | 
            -
                      "link": "@player.level",
         | 
| 586 | 
            -
                      "coeff": [
         | 
| 587 | 
            -
                        445.0,
         | 
| 588 | 
            -
                        470.0,
         | 
| 589 | 
            -
                        495.0,
         | 
| 590 | 
            -
                        520.0,
         | 
| 591 | 
            -
                        545.0,
         | 
| 592 | 
            -
                        570.0,
         | 
| 593 | 
            -
                        595.0,
         | 
| 594 | 
            -
                        620.0,
         | 
| 595 | 
            -
                        645.0,
         | 
| 596 | 
            -
                        670.0,
         | 
| 597 | 
            -
                        695.0,
         | 
| 598 | 
            -
                        720.0,
         | 
| 599 | 
            -
                        745.0,
         | 
| 600 | 
            -
                        770.0,
         | 
| 601 | 
            -
                        795.0,
         | 
| 602 | 
            -
                        820.0,
         | 
| 603 | 
            -
                        845.0,
         | 
| 604 | 
            -
                        870.0
         | 
| 605 | 
            -
                      ]
         | 
| 606 | 
            -
                    }
         | 
| 607 | 
            -
                  ]
         | 
| 608 | 
            -
                },
         | 
| 609 | 
            -
                "SummonerTeleport": {
         | 
| 610 | 
            -
                  "id": "SummonerTeleport",
         | 
| 611 | 
            -
                  "summonerLevel": 2,
         | 
| 612 | 
            -
                  "name": "Teleport",
         | 
| 613 | 
            -
                  "description": "After casting for 4 seconds, teleports your champion to target allied minion, turret, or ward.",
         | 
| 614 | 
            -
                  "key": "12",
         | 
| 615 | 
            -
                  "image": {
         | 
| 616 | 
            -
                    "full": "SummonerTeleport.png",
         | 
| 617 | 
            -
                    "sprite": "spell0.png",
         | 
| 618 | 
            -
                    "group": "spell",
         | 
| 619 | 
            -
                    "x": 288,
         | 
| 620 | 
            -
                    "y": 48,
         | 
| 621 | 
            -
                    "w": 48,
         | 
| 622 | 
            -
                    "h": 48
         | 
| 623 | 
            -
                  },
         | 
| 624 | 
            -
                  "tooltip": "After casting for {{ f1 }} seconds, your champion teleports to target allied minion, turret, or ward.<br><br>Cast again to cancel, putting Teleport on a reduced {{ f3 }} second cooldown.",
         | 
| 625 | 
            -
                  "resource": "No Cost",
         | 
| 626 | 
            -
                  "maxrank": 1,
         | 
| 627 | 
            -
                  "modes": [
         | 
| 628 | 
            -
                    "CLASSIC",
         | 
| 629 | 
            -
                    "TUTORIAL"
         | 
| 630 | 
            -
                  ],
         | 
| 631 | 
            -
                  "costType": "NoCost",
         | 
| 632 | 
            -
                  "cost": [
         | 
| 633 | 
            -
                    0
         | 
| 634 | 
            -
                  ],
         | 
| 635 | 
            -
                  "costBurn": "0",
         | 
| 636 | 
            -
                  "range": [
         | 
| 637 | 
            -
                    25000
         | 
| 638 | 
            -
                  ],
         | 
| 639 | 
            -
                  "rangeBurn": "25000",
         | 
| 640 | 
            -
                  "cooldown": [
         | 
| 641 | 
            -
                    300
         | 
| 642 | 
            -
                  ],
         | 
| 643 | 
            -
                  "cooldownBurn": "300",
         | 
| 644 | 
            -
                  "vars": [
         | 
| 645 | 
            -
                    {
         | 
| 646 | 
            -
                      "key": "f1",
         | 
| 647 | 
            -
                      "link": "@text",
         | 
| 648 | 
            -
                      "coeff": 4.0
         | 
| 649 | 
            -
                    },
         | 
| 650 | 
            -
                    {
         | 
| 651 | 
            -
                      "key": "f3",
         | 
| 652 | 
            -
                      "coeff": 0.0
         | 
| 653 | 
            -
                    }
         | 
| 654 | 
            -
                  ]
         | 
| 655 | 
            -
                }
         | 
| 656 | 
            -
              }
         | 
| 657 | 
            -
            }
         |