diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..cc5c18a --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +token = # Replace this with your API token +base_url = # Proxy server to handle requests to API due to IP limitations \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 703a4a3..b3920dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,30 @@ # Change Log All notable changes to this project will be documented in this file. -## [3.0.3] - 3/8/20 +## [4.0.0] - TBD +### Added +- `reason` attribute for `NotFoundError` +### Removed +- BrawlAPI client +### Changed +- `Client.get_datetime` moved to utils +- `get_rankings` now requires all arguments to be keyword arguments +### Fixed +- Brawler leaderboard now works + +## [3.0.4] - 3/8/20 +### Changed +- Leaderboard functions reverted to one function for all types of leaderboards/rankings + +## [3.0.3] - 2/17/20 ### Added - `invalid_chars` attribute for `NotFoundError` when applicable - `url` attribute for all errors that have requested a URL - `str(error)` will return the message attribute of the error. ### Changed - The `error` attribute for all errors have been renamed to `message` +- For BrawlAPI: `get_leaderboard` split up into `get_player_leaderboard`, `get_club_leaderboard`, and `get_brawler_leaderboard` +- For the official API: `get_rankings` split up into `get_player_rankings`, `get_club_rankings`, and `get_brawler_rankings` ## [3.0.2] - 12/22/19 ### Fixed diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 199355a..2cccfa4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,8 +8,8 @@ 6. Add the necessary tests in the `tests` folder 7. Add the necessary documentation and docstrings 8. Add the necessary points to `CHANGELOG.md` -9. Fill up the `tests/.env` file with the suitable token(s) -10. Run `tox` from the root folder and ensure the tests are configured correctly and they return OK. `ServerError` and `MaintenanceError` can be disregarded. +9. Fill up the `.env` file +10. Run `tox` from the root folder and ensure the tests are configured correctly and they return OK. `ServerError` can be disregarded. 11. Open your PR Do not increment version numbers but update `CHANGELOG.md` \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index f6a7273..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,4 +0,0 @@ -include README.md -include LICENSE -include requirements.txt -include brawlstats/constants.json \ No newline at end of file diff --git a/README.rst b/README.rst index e13f342..d31f59e 100644 --- a/README.rst +++ b/README.rst @@ -20,17 +20,18 @@ Brawl Stats :target: https://github.com/SharpBit/brawlstats/blob/master/LICENSE :alt: MIT License -- This library is a sync and async wrapper for https://api.starlist.pro (BrawlAPI) and the official Brawl Stars API. +- This library is a sync and async wrapper for the Brawl Stars API. - Python 3.5.3 or later is required. Features ~~~~~~~~ -- Covers all of the endpoints of both APIs. -- Use the same client for sync and async usage. -- Choose which API you want to use! -- Access game constants such as maps, brawlers, and images. - Easy to use with an object oriented design. +- Use the same client for sync and async usage. +- Get a player profile and battlelog. +- Get a club and its members. +- Get the top 200 rankings for players, clubs, or a specific brawler. +- Get information about maps, brawlers, and more! Installation ~~~~~~~~~~~~ @@ -45,7 +46,7 @@ Install the development build: :: - pip install git+https://github.com/SharpBit/brawlstats + pip install git+https://github.com/SharpBit/brawlstats@development Documentation ~~~~~~~~~~~~~ @@ -54,7 +55,7 @@ Documentation is being hosted on `Read the Docs`_. Examples ~~~~~~~~ -Examples are in the `examples folder`_. Within each folder, you will find: +Examples are in the `examples folder`_. - ``sync.py`` shows you basic sync usage - ``async.py`` shows you basic async usage @@ -64,9 +65,8 @@ Misc ~~~~ - If you are currently using this wrapper, please star this repository :) -- If you come across an issue in the wrapper, please `create an issue`_. Do **not** PM me on Discord for help. -- If you need an API Key for BrawlAPI, create one using the `dashboard`_. If you need one for the official API, visit https://developer.brawlstars.com -- To receive help for using the BrawlAPI, I recommend you join BrawlAPI's `discord server`_. +- If you come across an issue in the wrapper, please `create an issue`_. +- If you need an API key, visit https://developer.brawlstars.com Contributing ~~~~~~~~~~~~ @@ -83,12 +83,10 @@ Special thanks to this project's contributors ❤️ If you want to contribute, whether it be a bug fix or new feature, make sure to follow the `contributing guidelines`_. .. _create an issue: https://github.com/SharpBit/brawlstats/issues -.. _discord server: https://discord.gg/vbbHXNf .. _Read the Docs: https://brawlstats.rtfd.io/ .. _examples folder: https://github.com/SharpBit/brawlstats/tree/master/examples .. _discord.py: https://github.com/rapptz/discord.py .. _contributing guidelines: https://github.com/SharpBit/brawlstats/blob/master/CONTRIBUTING.md -.. _dashboard: https://api.starlist.pro/dashboard .. _4JR: https://github.com/fourjr .. _OrangutanGaming: https://github.com/OrangutanGaming diff --git a/brawlstats/__init__.py b/brawlstats/__init__.py index 76ed503..d9d802e 100644 --- a/brawlstats/__init__.py +++ b/brawlstats/__init__.py @@ -1,5 +1,5 @@ -from .brawlapi import Client as BrawlAPI -from .officialapi import Client as OfficialAPI +from .core import Client +from .models import * from .errors import * @@ -8,7 +8,7 @@ ############ -__version__ = 'v3.0.4' +__version__ = 'v4.0.0' __title__ = 'brawlstats' __license__ = 'MIT' __author__ = 'SharpBit' diff --git a/brawlstats/brawlapi/__init__.py b/brawlstats/brawlapi/__init__.py deleted file mode 100644 index 298642c..0000000 --- a/brawlstats/brawlapi/__init__.py +++ /dev/null @@ -1,2 +0,0 @@ -from .core import Client -from .models import * diff --git a/brawlstats/brawlapi/core.py b/brawlstats/brawlapi/core.py deleted file mode 100644 index 453d9c2..0000000 --- a/brawlstats/brawlapi/core.py +++ /dev/null @@ -1,373 +0,0 @@ -import asyncio -import json -import logging -import sys -import time -from datetime import datetime - -import aiohttp -import requests -from cachetools import TTLCache - -from ..errors import (Forbidden, MaintenanceError, NotFoundError, - RateLimitError, ServerError, Unauthorized, UnexpectedError) -from .models import BattleLog, Club, Constants, Events, Leaderboard, MiscData, PartialClub, Player -from .utils import API, bstag, typecasted - -log = logging.getLogger(__name__) - - -class Client: - """ - This is a sync/async client class that lets you access the unofficial BrawlAPI. - - Parameters - ------------ - token: str - The API Key that you can get from https://api.starlist.pro/dashboard - timeout: Optional[int] = 30 - How long to wait in seconds before shutting down requests. - is_async: Optional[bool] = False - Setting this to ``True`` makes the client async. Default is ``False`` - session: Optional[Union[requests.Session, aiohttp.ClientSession]] = None - Use a current session or a make new one. - loop: Optional[asyncio.window_events._WindowsSelectorEventLoop] - The event loop to use for asynchronous operations. Defaults to ``None``, - in which case the default event loop is ``asyncio.get_event_loop()``. - connector: Optional[aiohttp.TCPConnector] - Pass a TCPConnector into the client (aiohttp). Defaults to ``None``. - debug: Optional[bool] = False - Whether or not to log info for debugging. - prevent_ratelimit: Optional[bool] = False - Whether or not to wait between requests to prevent being ratelimited. - base_url: Optional[str] = None - Sets a different base URL to make request to. - """ - REQUEST_LOG = '{method} {url} recieved {text} has returned {status}' - - def __init__(self, token, timeout=30, is_async=False, **options): - # Async options - self.is_async = is_async - self.loop = options.get('loop', asyncio.get_event_loop()) if self.is_async else None - self.connector = options.get('connector') - - # Session and requesting options - self.session = options.get('session') or ( - aiohttp.ClientSession(loop=self.loop, connector=self.connector) if self.is_async else requests.Session() - ) - self.timeout = timeout - self.prevent_ratelimit = options.get('prevent_ratelimit', False) - self.lock = asyncio.Lock() if options.get('prevent_ratelimit') else None - self.api = API(options.get('base_url'), version=1) - - self.debug = options.get('debug', False) - self.cache = TTLCache(540, 180) # 3 requests/sec, 3 min cache time - - # Request/response headers - self.headers = { - 'Authorization': token, - 'User-Agent': 'brawlstats/{0} (Python {1[0]}.{1[1]})'.format(self.api.VERSION, sys.version_info), - 'Accept-Encoding': 'gzip' - } - self.ratelimit = [3, 3, 0] # [requests/sec, requests remaining, time of next reset (unix time, int)] - - def __repr__(self): - return ''.format(self.is_async, self.timeout, self.debug) - - def close(self): - return self.session.close() - - def _raise_for_status(self, resp, text): - """ - Checks for invalid error codes returned by the API. - """ - try: - data = json.loads(text) - except json.JSONDecodeError: - data = text - - code = getattr(resp, 'status', None) or getattr(resp, 'status_code') - url = resp.url - - if self.debug: - log.debug(self.REQUEST_LOG.format(method='GET', url=url, text=text, status=code)) - - if 300 > code >= 200: - if resp.headers.get('x-ratelimit-limit'): - # Set new rate limit info - self.ratelimit = [ - int(resp.headers['x-ratelimit-limit']), - int(resp.headers['x-ratelimit-remaining']), - int(resp.headers.get('x-ratelimit-reset', 0)) - ] - return data - if code == 401: - raise Unauthorized(code, url) - if code == 403: - raise Forbidden(code, url, data['message']) - if code in (400, 404): - # Tag not found - raise NotFoundError(code) - if code == 429: - raise RateLimitError(code, url, int(resp.headers.get('x-ratelimit-reset')) - time.time()) - if code >= 500: - # Cloudflare error - if isinstance(data, str): - raise ServerError(code, url) - # Maintenance break - if data.get('maintenance'): - raise MaintenanceError(code, url) - - raise ServerError(code, url) - - raise UnexpectedError(code, url, data) - - def _resolve_cache(self, url): - """Find any cached response for the same requested url.""" - data = self.cache.get(url) - if not data: - return None - if self.debug: - log.debug('GET {} got result from cache.'.format(url)) - return data - - async def _arequest(self, url): - """Async method to request a url.""" - # Try and retrieve from cache - cache = self._resolve_cache(url) - if cache is not None: - return cache - - # Raise RateLimitError before request - if self.ratelimit[1] == 0 and time.time() < self.ratelimit[2]: - raise RateLimitError(429, url, self.ratelimit[2] - time.time()) - - try: - async with self.session.get(url, timeout=self.timeout, headers=self.headers) as resp: - data = self._raise_for_status(resp, await resp.text()) - except asyncio.TimeoutError: - raise ServerError(503, url) - else: - # Cache the data if successful - self.cache[url] = data - - return data - - def _request(self, url): - """Sync method to request a url.""" - # Try and retrieve from cache - cache = self._resolve_cache(url) - if cache is not None: - return cache - - # Raise RateLimitError before request - if self.ratelimit[1] == 0 and time.time() < self.ratelimit[2]: - raise RateLimitError(429, url, self.ratelimit[2] - time.time()) - - try: - with self.session.get(url, timeout=self.timeout, headers=self.headers) as resp: - data = self._raise_for_status(resp, resp.text) - except requests.Timeout: - raise ServerError(503, url) - else: - # Cache the data if successful - self.cache[url] = data - - return data - - async def _aget_model(self, url, model, key=None): - """Method to turn the response data into a Model class for the async client.""" - if self.lock is not None: - # Use asyncio.Lock() if prevent_ratelimit=True - async with self.lock: - data = await self._arequest(url) - await asyncio.sleep(1 / self.ratelimit[0]) - else: - data = await self._arequest(url) - - # Club search should return a list of PartialClub classes - if model == PartialClub and isinstance(data, list): - return [model(self, data) for club in data] - - if model == Constants: - if key: - if data.get(key): - return model(self, data.get(key)) - else: - raise KeyError('No such Constants key "{}"'.format(key)) - - return model(self, data) - - def _get_model(self, url, model, key=None): - """Method to turn the response data into a Model class for the sync client.""" - if self.is_async: - # Calls the async function - return self._aget_model(url, model=model, key=key) - - data = self._request(url) - if self.prevent_ratelimit: - time.sleep(1 / self.ratelimit[0]) - - # Club search should return a list of PartialClub classes - if model == PartialClub and isinstance(data, list): - return [model(self, data) for club in data] - - if model == Constants: - if key: - if data.get(key): - return model(self, data.get(key)) - else: - raise KeyError('No such Constants key "{}"'.format(key)) - - return model(self, data) - - @typecasted - def get_player(self, tag: bstag): - """ - Get a player's stats. - - Parameters - ---------- - tag: str - A valid player tag. - Valid characters: 0289PYLQGRJCUV - - Returns Player - """ - url = '{}?tag={}'.format(self.api.PROFILE, tag) - return self._get_model(url, model=Player) - - # Set alias for get_player - get_profile = get_player - - @typecasted - def get_club(self, tag: bstag): - """ - Get a club's stats. - - Parameters - ---------- - tag: str - A valid club tag. - Valid characters: 0289PYLQGRJCUV - - Returns Club - """ - url = '{}?tag={}'.format(self.api.CLUB, tag) - return self._get_model(url, model=Club) - - def get_leaderboard(self, lb_type: str, limit: int=200, region='global', brawler=None): - """ - Get the top count players/clubs/brawlers. - - Parameters - ---------- - lb_type: str - The type of leaderboard. Must be "players", "clubs", "brawlers". - Anything else will return a ValueError. - limit: Optional[int] = 200 - The number of top players or clubs to fetch. - If count > 200, it will return a ValueError. - region: Optional[str] = "global" - The region to retrieve from. Must be a 2 letter country code or "global" - brawler: Optional[Union[str, int]] = None - The brawler name or ID. - - Returns Leaderboard - """ - if brawler: - brawler = brawler.lower() - if brawler not in self.api.BRAWLERS.keys(): - raise ValueError('Invalid brawler.') - - # Check for invalid parameters - if lb_type not in ('players', 'clubs', 'brawlers'): - raise ValueError("'lb_type' must be 'players', 'clubs' or 'brawlers'.") - if not 0 < limit <= 200: - raise ValueError('Make sure limit is between 1 and 200.') - - # Construct URL - url = '{}/{}?count={}®ion={}'.format(self.api.LEADERBOARD, lb_type, limit, region) - if lb_type == 'brawlers': - url = '{}/players?count={}&brawlers={}®ion={}'.format(self.api.LEADERBOARD, limit, brawler, region) - - return self._get_model(url, model=Leaderboard) - - def get_events(self): - """ - Get current and upcoming events. - - Returns Events""" - return self._get_model(self.api.EVENTS, model=Events) - - @typecasted - def get_battle_logs(self, tag: bstag): - """ - Get a player's battle logs. - - Parameters - ---------- - tag: str - A valid player tag. - Valid characters: 0289PYLQGRJCUV - - Returns BattleLog - """ - url = '{}?tag={}'.format(self.api.BATTLELOG, tag) - return self._get_model(url, model=BattleLog) - - def search_club(self, club_name: str): - """ - Searches for bands of the provided club name. - - Parameters - ---------- - club_name: str - The query for the club search. - - Returns List[PartialClub] - """ - url = self.api.CLUB_SEARCH + '?name=' + club_name - return self._get_model(url, model=PartialClub) - - def get_constants(self, key=None): - """ - Gets Brawl Stars constants extracted from the app. - - Parameters - ---------- - key: Optional[str] = None - Any key to get specific data. - - Returns Constants - """ - return self._get_model(self.api.CONSTANTS, model=Constants, key=key) - - def get_misc(self): - """ - Gets misc data such as shop and season info. - - Returns MiscData - """ - return self._get_model(self.api.MISC, model=MiscData) - - def get_datetime(self, timestamp: str, unix=True): - """ - Converts a %Y%m%dT%H%M%S.%fZ to a UNIX timestamp - or a datetime.datetime object - - Parameters - ---------- - timestamp: str - A timestamp in the %Y-%m-%dT%H:%M:%S.%fZ format, usually returned by the API - in the ``created_time`` field for example (eg. 2018-07-18T14:59:06.000Z) - unix: Optional[bool] = True - Whether to return a POSIX timestamp (seconds since epoch) or not - - Returns Union[int, datetime.datetime] - """ - time = datetime.strptime(timestamp, '%Y-%m-%dT%H:%M:%S.%fZ') - if unix: - return int(time.timestamp()) - else: - return time diff --git a/brawlstats/brawlapi/models.py b/brawlstats/brawlapi/models.py deleted file mode 100644 index 67a99d5..0000000 --- a/brawlstats/brawlapi/models.py +++ /dev/null @@ -1,143 +0,0 @@ -from box import Box, BoxList -from .utils import bstag - - -class BaseBox: - def __init__(self, client, data): - self.client = client - self.from_data(data) - - def from_data(self, data): - self.raw_data = data - if isinstance(data, list): - self._boxed_data = BoxList( - data, camel_killer_box=True - ) - else: - self._boxed_data = Box( - data, camel_killer_box=True - ) - return self - - def __getattr__(self, attr): - try: - return getattr(self._boxed_data, attr) - except AttributeError: - try: - return super().__getattr__(attr) - except AttributeError: - return None # users can use an if statement rather than try/except to find a missing attribute - - def __getitem__(self, item): - try: - return self._boxed_data[item] - except IndexError: - raise IndexError('No such index: {}'.format(item)) - - -class Player(BaseBox): - """ - Returns a full player object with all of its attributes. - """ - - def __repr__(self): - return "".format(self) - - def __str__(self): - return '{0.name} (#{0.tag})'.format(self) - - def get_club(self, full=True): - """ - Gets the player's club. - - Parameters - ---------- - full: Optional[bool] = True - Whether or not to get the player's full club stats or not. - - Returns Optional[Union[PartialClub, Club]] - """ - if not self.club: - return None - if full: - url = '{}?tag={}'.format(self.client.api.CLUB, bstag(self.club.tag)) - club = self.client._get_model(url, model=Club) - else: - club = PartialClub(self.client, self.club) - return club - - -class PartialClub(BaseBox): - """ - Returns a simple club object with some of its attributes. - """ - - def __repr__(self): - return "".format(self) - - def __str__(self): - return '{0.name} (#{0.tag})'.format(self) - - def get_full(self): - """ - Gets the full club statistics. - - Returns Club - """ - url = '{}?tag={}'.format(self.client.api.CLUB, self.tag) - return self.client._get_model(url, model=Club) - - -class Club(BaseBox): - """ - Returns a full club object with all of its attributes. - """ - - def __repr__(self): - return "".format(self) - - def __str__(self): - return '{0.name} (#{0.tag})'.format(self) - - -class Leaderboard(BaseBox): - """ - Returns a player or club leaderboard that contains a list of players or clubs. - """ - - def __len__(self): - return sum(1 for i in self) - - def __repr__(self): - return "".format(len(self)) - - def __str__(self): - return 'Leaderboard containing {} items'.format(len(self)) - -class Events(BaseBox): - """ - Returns current and upcoming events. - """ - pass - - -class Constants(BaseBox): - """ - Returns some Brawl Stars constants. - """ - pass - - -class MiscData(BaseBox): - """ - Misc data such as shop and season info. - """ - pass - -class BattleLog(BaseBox): - """ - Returns a full player battle object with all of its attributes. - """ - - def __init__(self, client, data): - super().__init__(client, data['items']) diff --git a/brawlstats/brawlapi/utils.py b/brawlstats/brawlapi/utils.py deleted file mode 100644 index 675246e..0000000 --- a/brawlstats/brawlapi/utils.py +++ /dev/null @@ -1,81 +0,0 @@ -import inspect -import json -import os -import re -import urllib.request -from functools import wraps - -from ..errors import NotFoundError - - -class API: - def __init__(self, base_url, version=1): - self.BASE = base_url or 'https://api.starlist.pro/v{}'.format(version) - self.PROFILE = self.BASE + '/player' - self.CLUB = self.BASE + '/club' - self.LEADERBOARD = self.BASE + '/leaderboards' - self.EVENTS = self.BASE + '/events' - self.MISC = self.BASE + '/misc' - self.BATTLELOG = self.PROFILE + '/battlelog' - self.CLUB_SEARCH = self.CLUB + '/search' - self.CONSTANTS = 'https://fourjr.herokuapp.com/bs/constants' - - # Get package version from __init__.py - path = os.path.join(os.path.dirname(__file__), os.path.pardir) - with open(os.path.join(path, '__init__.py')) as f: - self.VERSION = re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1) - - # Get current brawlers and their IDs - try: - data = json.loads(urllib.request.urlopen(self.CONSTANTS + '/characters').read()) - except (TypeError, urllib.error.HTTPError, urllib.error.URLError): - self.BRAWLERS = {} - else: - if data: - self.BRAWLERS = { - b['tID'].lower(): str(b['scId'])[:2] + '0' + str(b['scId'])[2:] - for b in data if b['tID'] - } - else: - self.BRAWLERS = {} - - -def bstag(tag): - tag = tag.strip('#').upper().replace('O', '0') - allowed = '0289PYLQGRJCUV' - print(tag) - if len(tag) < 3: - print(f'Less than 3 {tag}') - raise NotFoundError('Tag less than 3 characters.', 404) - invalid = [c for c in tag if c not in allowed] - if invalid: - raise NotFoundError(404, invalid) - return tag - -def typecasted(func): - """Decorator that converts arguments via annotations. - Source: https://github.com/cgrok/clashroyale/blob/master/clashroyale/official_api/utils.py#L11""" - signature = inspect.signature(func).parameters.items() - - @wraps(func) - def wrapper(*args, **kwargs): - args = list(args) - new_args = [] - new_kwargs = {} - for _, param in signature: - converter = param.annotation - if converter is inspect._empty: - converter = lambda a: a # do nothing - if param.kind is param.POSITIONAL_OR_KEYWORD: - if args: - to_conv = args.pop(0) - new_args.append(converter(to_conv)) - elif param.kind is param.VAR_POSITIONAL: - for a in args: - new_args.append(converter(a)) - else: - for k, v in kwargs.items(): - nk, nv = converter(k, v) - new_kwargs[nk] = nv - return func(*new_args, **new_kwargs) - return wrapper diff --git a/brawlstats/constants.json b/brawlstats/constants.json deleted file mode 100644 index 02e3649..0000000 --- a/brawlstats/constants.json +++ /dev/null @@ -1 +0,0 @@ -{"animations": [{"name": "Turret", "fileName": "turret_jessie_geo.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 24}, {"name": "TurretSpawn", "fileName": "turret_jessie_spawn.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 3, "id": 25}, {"name": "TurretIdle", "fileName": "turret_jessie_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 26}, {"name": "TurretAttack", "fileName": "turret_jessie_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 4, "id": 27}, {"name": "GunslingerIdle", "fileName": "colt_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 28}, {"name": "GunslingerWalk", "fileName": "colt_walk.scw", "startFrame": null, "endFrame": -1, "speed": 125, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 29}, {"name": "GunslingerPrimary", "fileName": "colt_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#3", "id": 30}, {"name": "GunslingerSecondary", "fileName": "colt_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#3", "id": 31}, {"name": "GunslingerRecoil", "fileName": "colt_recoil1.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#4", "id": 32}, {"name": "GunslingerRecoil2", "fileName": "colt_recoil2.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#4", "id": 33}, {"name": "GunslingerReload", "fileName": "colt_idle.scw", "startFrame": 1, "endFrame": 3, "speed": null, "transitionInMs": 800, "transitionOutMs": 800, "autoFadeMs": 800, "looping": null, "priority": "spine_lower_s#4", "id": 34}, {"name": "GunslingerPushback", "fileName": "colt_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 35}, {"name": "GunslingerWin", "fileName": "colt_win.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 36}, {"name": "GunslingerWinloop", "fileName": "colt_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 37}, {"name": "GunslingerLose", "fileName": "colt_loseloop.scw", "startFrame": null, "endFrame": 47, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 38}, {"name": "GunslingerLoseloop", "fileName": "colt_loseloop.scw", "startFrame": 48, "endFrame": 85, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": true, "priority": null, "id": 39}, {"name": "GunslingerProfile", "fileName": "colt_win.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 40}, {"name": "TntguyIdle", "fileName": "dynamike_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 0, "id": 41}, {"name": "TntguyWalk", "fileName": "dynamike_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 42}, {"name": "TntguyPrimary", "fileName": "dynamike_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "hips_s#3", "id": 43}, {"name": "TntguySecondary", "fileName": "dynamike_super.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "hips_s#3", "id": 44}, {"name": "TntguyRecoil", "fileName": "dynamike_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#3", "id": 45}, {"name": "TntguyReload", "fileName": "dynamike_walk.scw", "startFrame": 1, "endFrame": 5, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#0", "id": 46}, {"name": "TntguyUlti", "fileName": "dynamike_super.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#3", "id": 47}, {"name": "TntguyPushback", "fileName": "dynamike_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 48}, {"name": "TntguyWin", "fileName": "dynamike_win.scw", "startFrame": 1, "endFrame": 62, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 49}, {"name": "TntguyWinloop", "fileName": "dynamike_win.scw", "startFrame": 62, "endFrame": 89, "speed": 80, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 50}, {"name": "TntguyLose", "fileName": "dynamike_lose.scw", "startFrame": null, "endFrame": 41, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 51}, {"name": "TntguyLoseloop", "fileName": "dynamike_lose.scw", "startFrame": 41, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 52}, {"name": "TntguyProfile", "fileName": "dynamike_idle.scw", "startFrame": 20, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 53}, {"name": "UndertakerIdle", "fileName": "mortis_idle.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": null, "id": 54}, {"name": "UndertakerAttack", "fileName": "mortis_attack.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": 1, "id": 55}, {"name": "UndertakerWalk", "fileName": "mortis_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 56}, {"name": "UndertakerRecoil1", "fileName": "mortis_attack.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 1, "id": 57}, {"name": "UndertakerUltiRecoil1", "fileName": "mortis_ulti.scw", "startFrame": null, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 58}, {"name": "UndertakerUltiAttack", "fileName": "mortis_ulti.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 59}, {"name": "UndertakerPushback", "fileName": "mortis_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 60}, {"name": "UndertakerWin", "fileName": "mortis_win.scw", "startFrame": 1, "endFrame": 77, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 61}, {"name": "UndertakerWinloop", "fileName": "mortis_win.scw", "startFrame": 77, "endFrame": 106, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 62}, {"name": "UndertakerLose", "fileName": "mortis_lose.scw", "startFrame": 1, "endFrame": 54, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 63}, {"name": "UndertakerLoseloop", "fileName": "mortis_lose.scw", "startFrame": 54, "endFrame": 60, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 64}, {"name": "UndertakerProfile", "fileName": "mortis_win.scw", "startFrame": 49, "endFrame": 49, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 65}, {"name": "MariachiIdle", "fileName": "mariachi_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 66}, {"name": "MariachiWalk", "fileName": "mariachi_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 140, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 67}, {"name": "MariachiAttack", "fileName": "mariachi_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 300, "looping": null, "priority": "ChestBone#3", "id": 68}, {"name": "MariachiSecondary", "fileName": "mariachi_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#3", "id": 69}, {"name": "MariachiRecoil", "fileName": "mariachi_recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 150, "looping": null, "priority": "ChestBone#4", "id": 70}, {"name": "MariachiReload", "fileName": "mariachi_reload.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 71}, {"name": "MariachiPushback", "fileName": "mariachi_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 72}, {"name": "MariachiWin", "fileName": "mariachi_win1.scw", "startFrame": -1, "endFrame": -1, "speed": 50, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 73}, {"name": "MariachiWinloop", "fileName": "mariachi_winloop1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 74}, {"name": "MariachiLose", "fileName": "mariachi_lose1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 75}, {"name": "MariachiLoseloop", "fileName": "mariachi_loseloop1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 76}, {"name": "CrowIdle", "fileName": "crow_idle1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 77}, {"name": "CrowWalk", "fileName": "crow_walk1.scw", "startFrame": null, "endFrame": -1, "speed": 200, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 78}, {"name": "CrowPrimary", "fileName": "crow_attack1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 300, "autoFadeMs": 600, "looping": null, "priority": "ChestBone#3", "id": 79}, {"name": "CrowSecondary", "fileName": "crow_attack2.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 10, "looping": null, "priority": 5, "id": 80}, {"name": "CrowRecoil", "fileName": "crow_recoil1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#4", "id": 81}, {"name": "CrowReload", "fileName": "crow_idle1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 82}, {"name": "CrowPushback", "fileName": "crow_idle1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 83}, {"name": "CrowWin", "fileName": "crow_win1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 84}, {"name": "CrowWinloop", "fileName": "crow_winloop1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 85}, {"name": "CrowLose", "fileName": "crow_lose1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 86}, {"name": "CrowLoseloop", "fileName": "crow_loseloop1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 87}, {"name": "CrowProfile", "fileName": "crow_win1.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 88}, {"name": "BowGuyIdle", "fileName": "bo_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 89}, {"name": "BowGuyWalk", "fileName": "bo_walk.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 90}, {"name": "BowGuyAttack", "fileName": "bo_attack.scw", "startFrame": 1, "endFrame": 12, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 350, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 91}, {"name": "BowGuySecondary", "fileName": "bo_ult.scw", "startFrame": 1, "endFrame": 12, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 350, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 92}, {"name": "BowGuyRecoil", "fileName": "bo_attack.scw", "startFrame": 13, "endFrame": 30, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 350, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 93}, {"name": "BowGuyRecoil2", "fileName": "bo_ult.scw", "startFrame": 13, "endFrame": 30, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 350, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 94}, {"name": "BowGuyWin", "fileName": "bo_win.scw", "startFrame": -1, "endFrame": 79, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 500, "looping": null, "priority": null, "id": 95}, {"name": "BowGuyWinloop", "fileName": "bo_win.scw", "startFrame": 80, "endFrame": 120, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": true, "priority": null, "id": 96}, {"name": "BowGuyLose", "fileName": "bo_lose.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": null, "id": 97}, {"name": "BowGuyLoseloop", "fileName": "bo_lose.scw", "startFrame": 30, "endFrame": 79, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": true, "priority": null, "id": 98}, {"name": "BowGuyProfile", "fileName": "bo_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 99}, {"name": "RicoIdle", "fileName": "rico_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 100}, {"name": "RicoWalk", "fileName": "rico_walk.scw", "startFrame": null, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 101}, {"name": "RicoPrimary", "fileName": "rico_attack.scw", "startFrame": 5, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 102}, {"name": "RicoSecondary", "fileName": "rico_attack.scw", "startFrame": 5, "endFrame": 30, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 103}, {"name": "RicoRecoil", "fileName": "rico_attack.scw", "startFrame": 5, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 104}, {"name": "RicoReload", "fileName": "rico_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": null, "id": 105}, {"name": "RicoPushback", "fileName": "rico_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 106}, {"name": "RicoWin", "fileName": "rico_win.scw", "startFrame": 1, "endFrame": 149, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 107}, {"name": "RicoWinloop", "fileName": "rico_win.scw", "startFrame": 150, "endFrame": 210, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 108}, {"name": "RicoLose", "fileName": "rico_lose.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 109}, {"name": "RicoLoseloop", "fileName": "rico_lose.scw", "startFrame": 70, "endFrame": 75, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 110}, {"name": "RicoProfile", "fileName": "rico_win.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 111}, {"name": "RicoPopcornIdle", "fileName": "rico_popcorn_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 112}, {"name": "RicoPopcornWalk", "fileName": "rico_walk.scw", "startFrame": null, "endFrame": -1, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 113}, {"name": "RicoPopcornPrimary", "fileName": "rico_attack.scw", "startFrame": 5, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 114}, {"name": "RicoPopcornSecondary", "fileName": "rico_attack.scw", "startFrame": 5, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 100, "looping": true, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 115}, {"name": "RicoPopcornRecoil", "fileName": "rico_attack.scw", "startFrame": 5, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 116}, {"name": "RicoPopcornReload", "fileName": "rico_popcorn_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": null, "id": 117}, {"name": "RicoPopcornPushback", "fileName": "rico_popcorn_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 118}, {"name": "RicoPopcornWin", "fileName": "rico_popcorn_win.scw", "startFrame": 1, "endFrame": 149, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 119}, {"name": "RicoPopcornWinloop", "fileName": "rico_popcorn_win.scw", "startFrame": 150, "endFrame": 210, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 120}, {"name": "RicoPopcornLose", "fileName": "rico_popcorn_lose.scw", "startFrame": 1, "endFrame": 46, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 121}, {"name": "RicoPopcornLoseloop", "fileName": "rico_popcorn_lose.scw", "startFrame": 46, "endFrame": 138, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 122}, {"name": "RicoGoldIdle", "fileName": "rico_gold_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 123}, {"name": "RicoGoldWalk", "fileName": "rico_gold_walk.scw", "startFrame": null, "endFrame": 25, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 124}, {"name": "RicoGoldPrimary", "fileName": "rico_gold_attack.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 125}, {"name": "RicoGoldSecondary", "fileName": "rico_gold_attack.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 126}, {"name": "RicoGoldRecoil", "fileName": "rico_gold_attack.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 25, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 127}, {"name": "RicoGoldReload", "fileName": "rico_gold_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": null, "id": 128}, {"name": "RicoGoldPushback", "fileName": "rico_gold_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 129}, {"name": "RicoGoldWin", "fileName": "rico_gold_win.scw", "startFrame": 1, "endFrame": 150, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 130}, {"name": "RicoGoldWinloop", "fileName": "rico_gold_win.scw", "startFrame": 150, "endFrame": 210, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 131}, {"name": "RicoGoldLose", "fileName": "rico_gold_lose.scw", "startFrame": 1, "endFrame": 82, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 132}, {"name": "RicoGoldLoseloop", "fileName": "rico_gold_lose.scw", "startFrame": 82, "endFrame": 85, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 133}, {"name": "JunkerIdle", "fileName": "jessie_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 134}, {"name": "JunkerWalk", "fileName": "jessie_walk.scw", "startFrame": null, "endFrame": -1, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 135}, {"name": "JunkerPrimary", "fileName": "jessie_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 136}, {"name": "JunkerUltiAttack", "fileName": "jessie_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 10, "looping": true, "priority": 5, "id": 137}, {"name": "JunkerRecoil", "fileName": "jessie_attack.scw", "startFrame": 5, "endFrame": 15, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 138}, {"name": "JunkerUltiRecoil", "fileName": "jessie_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 139}, {"name": "JunkerReload", "fileName": "jessie_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 140}, {"name": "JunkerPushback", "fileName": "jessie_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 141}, {"name": "JunkerWin", "fileName": "jessie_win.scw", "startFrame": 1, "endFrame": 107, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 142}, {"name": "JunkerWinloop", "fileName": "jessie_win.scw", "startFrame": 107, "endFrame": 139, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 143}, {"name": "JunkerLose", "fileName": "jessie_lose.scw", "startFrame": 1, "endFrame": 56, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 144}, {"name": "JunkerLoseloop", "fileName": "jessie_lose.scw", "startFrame": 56, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 145}, {"name": "JunkerProfile", "fileName": "jessie_portrait.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 146}, {"name": "BarkeepIdle", "fileName": "barkeep_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 250, "looping": true, "priority": null, "id": 147}, {"name": "BarkeepWalk", "fileName": "barkeep_walk.scw", "startFrame": null, "endFrame": 19, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 148}, {"name": "BarkeepPrimary", "fileName": "barkeep_attack1.scw", "startFrame": 3, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "ChestBone#3", "id": 149}, {"name": "BarkeepSecondary", "fileName": "barkeep_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 50, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#3", "id": 150}, {"name": "BarkeepRecoil", "fileName": "barkeep_attack1.scw", "startFrame": 3, "endFrame": 12, "speed": null, "transitionInMs": 10, "transitionOutMs": 10, "autoFadeMs": 10, "looping": null, "priority": "ChestBone#4", "id": 151}, {"name": "BarkeepReload", "fileName": "barkeep_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 152}, {"name": "BarkeepPushback", "fileName": "barley_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 153}, {"name": "BarkeepWin", "fileName": "barkeep_win1.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": 50, "transitionOutMs": 250, "autoFadeMs": 250, "looping": null, "priority": null, "id": 154}, {"name": "BarkeepWinloop", "fileName": "barkeep_win1.scw", "startFrame": 30, "endFrame": 80, "speed": null, "transitionInMs": 25, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 155}, {"name": "BarkeepLose", "fileName": "barkeep_lose1.scw", "startFrame": -1, "endFrame": -1, "speed": 130, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 156}, {"name": "BarkeepLoseloop", "fileName": "barkeep_loseloop1.scw", "startFrame": -1, "endFrame": -1, "speed": 120, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 157}, {"name": "BarkeepWinidleloop", "fileName": "barkeep_winidleloop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 158}, {"name": "BarkeepProfile", "fileName": "barkeep_win1.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 159}, {"name": "SpikeIdle", "fileName": "spike_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 160}, {"name": "SpikeWalk", "fileName": "spike_walk.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 161}, {"name": "SpikePrimary", "fileName": "spike_attack.scw", "startFrame": 8, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 162}, {"name": "SpikeSecondary", "fileName": "spike_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 163}, {"name": "SpikeRecoil", "fileName": "spike_attack.scw", "startFrame": 8, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 164}, {"name": "SpikeRecoil2", "fileName": "spike_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 165}, {"name": "SpikeReload", "fileName": "spike_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 166}, {"name": "SpikeWin", "fileName": "spike_win.scw", "startFrame": 1, "endFrame": 43, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 167}, {"name": "SpikeWinloop", "fileName": "spike_win.scw", "startFrame": 43, "endFrame": 63, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 168}, {"name": "SpikeLose", "fileName": "spike_lose.scw", "startFrame": 1, "endFrame": 79, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 169}, {"name": "SpikeLoseloop", "fileName": "spike_loseloop.scw", "startFrame": 80, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 170}, {"name": "SpikeProfile", "fileName": "spike_win.scw", "startFrame": 34, "endFrame": 34, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 171}, {"name": "LouchadorIdle", "fileName": "primo_idle.scw", "startFrame": 1, "endFrame": 49, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": null, "id": 172}, {"name": "LouchadorWalk", "fileName": "primo_walk.scw", "startFrame": 1, "endFrame": 27, "speed": 120, "transitionInMs": 150, "transitionOutMs": 150, "autoFadeMs": null, "looping": true, "priority": 1, "id": 173}, {"name": "LouchadorPrimary", "fileName": "primo_attack.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 174}, {"name": "LouchadorSecondary", "fileName": "primo_super.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": null, "priority": 5, "id": 175}, {"name": "LouchadorRecoil", "fileName": "primo_attack.scw", "startFrame": 5, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "hips_s#5+L_upperLeg_s#0+R_upperLeg_s#0", "id": 176}, {"name": "LouchadorPushback", "fileName": "primo_idle.scw", "startFrame": null, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 400, "looping": null, "priority": 5, "id": 177}, {"name": "LouchadorRecoil2", "fileName": "primo_attack.scw", "startFrame": 16, "endFrame": 24, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 178}, {"name": "LouchadorWin", "fileName": "primo_win.scw", "startFrame": 1, "endFrame": 111, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 179}, {"name": "LouchadorWinloop", "fileName": "primo_win.scw", "startFrame": 112, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 180}, {"name": "LouchadorLose", "fileName": "primo_lose.scw", "startFrame": 1, "endFrame": 41, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 181}, {"name": "LouchadorLoseloop", "fileName": "primo_lose.scw", "startFrame": 42, "endFrame": 89, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 182}, {"name": "LouchadorProfile", "fileName": "primo_portrait.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 183}, {"name": "ShamanIdle", "fileName": "nita_idle.scw", "startFrame": 1, "endFrame": 34, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 184}, {"name": "ShamanWalk", "fileName": "nita_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 170, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 185}, {"name": "ShamanAttack", "fileName": "nita_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 186}, {"name": "ShamanSecondary", "fileName": "nita_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 187}, {"name": "ShamanRecoil", "fileName": "nita_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#4", "id": 188}, {"name": "ShamanReload", "fileName": "nita_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#2", "id": 189}, {"name": "ShamanPushback", "fileName": "nita_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 190}, {"name": "ShamanWin", "fileName": "nita_win.scw", "startFrame": 1, "endFrame": 79, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 191}, {"name": "ShamanWinloop", "fileName": "nita_win.scw", "startFrame": 80, "endFrame": 113, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 192}, {"name": "ShamanLose", "fileName": "nita_lose.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 193}, {"name": "ShamanLoseloop", "fileName": "nita_lose.scw", "startFrame": 30, "endFrame": 35, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 194}, {"name": "ShamanProfile", "fileName": "nita_win.scw", "startFrame": 88, "endFrame": 88, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 195}, {"name": "ShellyIdle", "fileName": "shelly_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 196}, {"name": "ShellyWalk", "fileName": "shelly_walk.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 197}, {"name": "ShellyPrimary", "fileName": "shelly_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 198}, {"name": "ShellySecondary", "fileName": "shelly_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 199}, {"name": "ShellyRecoil", "fileName": "shelly_attack.scw", "startFrame": 6, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 200}, {"name": "ShellyReload", "fileName": "shelly_reload.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#0+L_upperLeg_s#0+R_upperLeg_s#0+R_clavicle_s#4+R_shoulder_s#4+R_elbow_s#4+R_forearm_twist_s#4+R_wrist_s#4+L_clavicle_s#4+L_shoulder_s#4+L_elbow_s#4+L_forearm_twist_s#4+L_wrist_s#4", "id": 201}, {"name": "ShellyPushback", "fileName": "shelly_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 202}, {"name": "ShellyWin", "fileName": "shelly_win.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 203}, {"name": "ShellyWinloop", "fileName": "shelly_win.scw", "startFrame": 60, "endFrame": 102, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 204}, {"name": "ShellyLose", "fileName": "shelly_lose.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 205}, {"name": "ShellyLoseloop", "fileName": "shelly_lose.scw", "startFrame": 50, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 206}, {"name": "ShellyProfile", "fileName": "shelly_win.scw", "startFrame": 80, "endFrame": 80, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 207}, {"name": "BearIdle", "fileName": "nita_bear_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 208}, {"name": "BearWalk", "fileName": "nita_bear_walk.scw", "startFrame": 1, "endFrame": 40, "speed": 170, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 209}, {"name": "BearAttack", "fileName": "nita_bear_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 150, "looping": null, "priority": "spine_lower_s#4", "id": 210}, {"name": "BearRecoil", "fileName": "nita_bear_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 1, "autoFadeMs": 50, "looping": null, "priority": "spine_lower_s#4", "id": 211}, {"name": "BearPushback", "fileName": "nita_bear_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 212}, {"name": "BearWin", "fileName": "nita_bear_win.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 213}, {"name": "BrockIdle", "fileName": "brock_idle1.scw", "startFrame": -1, "endFrame": -1, "speed": 135, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 214}, {"name": "BrockWalk", "fileName": "brock_walk1.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 215}, {"name": "BrockPrimary", "fileName": "brock_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 300, "autoFadeMs": 300, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 216}, {"name": "BrockSecondary", "fileName": "brock_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 217}, {"name": "BrockRecoil", "fileName": "brock_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 218}, {"name": "BrockRecoil2", "fileName": "brock_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 219}, {"name": "BrockPushback", "fileName": "brock_pushback1.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 220}, {"name": "BrockWin", "fileName": "brock_win1.scw", "startFrame": null, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": 500, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 221}, {"name": "BrockWinloop", "fileName": "brock_winloop1.scw", "startFrame": null, "endFrame": 59, "speed": null, "transitionInMs": 500, "transitionOutMs": null, "autoFadeMs": 500, "looping": true, "priority": 5, "id": 222}, {"name": "BrockLose", "fileName": "brock_lose1.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 223}, {"name": "BrockLoseloop", "fileName": "brock_lose1.scw", "startFrame": 70, "endFrame": 110, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 224}, {"name": "BrockHero", "fileName": "brock_win1.scw", "startFrame": null, "endFrame": 35, "speed": null, "transitionInMs": null, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 225}, {"name": "BrockProfile", "fileName": "brock_win1.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 226}, {"name": "BrockBoomboxProfile", "fileName": "brock_boombox_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 227}, {"name": "BrockBoomboxWin", "fileName": "brock_boombox_win.scw", "startFrame": 1, "endFrame": 56, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 228}, {"name": "BrockBoomboxWinIntro", "fileName": "brock_boombox_win_intro.scw", "startFrame": 1, "endFrame": 95, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 229}, {"name": "BrockCnyWalk", "fileName": "brock_cny_walk.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 230}, {"name": "BullRockIdle", "fileName": "bull_idle.scw", "startFrame": null, "endFrame": 29, "speed": null, "transitionInMs": 150, "transitionOutMs": 150, "autoFadeMs": null, "looping": true, "priority": null, "id": 231}, {"name": "BullRockWalk", "fileName": "bull_walk.scw", "startFrame": null, "endFrame": 21, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 232}, {"name": "BullRockPrimary", "fileName": "bull_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 233}, {"name": "BullRockSecondary", "fileName": "bull_super.scw", "startFrame": null, "endFrame": 21, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": true, "priority": 5, "id": 234}, {"name": "BullRockRecoil", "fileName": "bull_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": 50, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 235}, {"name": "BullRockReload", "fileName": "bull_idle.scw", "startFrame": 1, "endFrame": 10, "speed": 200, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": 500, "looping": null, "priority": "ChestBone#2", "id": 236}, {"name": "BullRockPushback", "fileName": "bull_rock_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 237}, {"name": "BullRockWin", "fileName": "bull_win.scw", "startFrame": null, "endFrame": 54, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 238}, {"name": "BullRockWinloop", "fileName": "bull_win.scw", "startFrame": 55, "endFrame": 91, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 239}, {"name": "BullRockLose", "fileName": "bull_lose.scw", "startFrame": null, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 240}, {"name": "BullRockLoseloop", "fileName": "bull_lose.scw", "startFrame": 30, "endFrame": 36, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 241}, {"name": "BullRockProfile", "fileName": "bull_win.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 242}, {"name": "BullVikingIdle", "fileName": "bull_viking_idle.scw", "startFrame": null, "endFrame": 29, "speed": null, "transitionInMs": 150, "transitionOutMs": 150, "autoFadeMs": 150, "looping": true, "priority": null, "id": 243}, {"name": "BullVikingWalk", "fileName": "bull_viking_walk.scw", "startFrame": null, "endFrame": 21, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 244}, {"name": "BullVikingPrimary", "fileName": "bull_viking_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 245}, {"name": "BullVikingSecondary", "fileName": "bull_viking_walk.scw", "startFrame": null, "endFrame": 21, "speed": 150, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": true, "priority": 1, "id": 246}, {"name": "BullVikingRecoil", "fileName": "bull_viking_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": 25, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 247}, {"name": "BullVikingReload", "fileName": "bull_viking_attack.scw", "startFrame": 1, "endFrame": 10, "speed": 200, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": 500, "looping": null, "priority": "ChestBone#2", "id": 248}, {"name": "BullVikingPushback", "fileName": "bull_viking_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 249}, {"name": "BullVikingWin", "fileName": "bull_viking_win.scw", "startFrame": null, "endFrame": 54, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 250}, {"name": "BullVikingWinloop", "fileName": "bull_viking_win.scw", "startFrame": 55, "endFrame": 91, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 251}, {"name": "BullVikingLose", "fileName": "bull_viking_lose.scw", "startFrame": null, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 252}, {"name": "BullVikingLoseloop", "fileName": "bull_viking_lose.scw", "startFrame": 30, "endFrame": 36, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 253}, {"name": "BullFootbullLose", "fileName": "bull_footbull_lose.scw", "startFrame": null, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 254}, {"name": "BullFootbullLoseloop", "fileName": "bull_footbull_lose.scw", "startFrame": 30, "endFrame": 65, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 255}, {"name": "BullFootbullWin", "fileName": "bull_footbull_win.scw", "startFrame": null, "endFrame": 54, "speed": null, "transitionInMs": null, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 256}, {"name": "BullFootbullWinloop", "fileName": "bull_footbull_win.scw", "startFrame": 55, "endFrame": 91, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 257}, {"name": "SniperIdle", "fileName": "piper_idle.scw", "startFrame": 1, "endFrame": 41, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 258}, {"name": "SniperWalk", "fileName": "piper_walk.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 259}, {"name": "SniperAttack", "fileName": "piper_attack.scw", "startFrame": 1, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0+R_dress_01_s#0+L_dress_01_s#0+F_dress_01_s#0+B_dress_01_s#0", "id": 260}, {"name": "SniperSecondary", "fileName": "piper_super.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 50, "looping": null, "priority": 5, "id": 261}, {"name": "SniperRecoil", "fileName": "piper_attack.scw", "startFrame": 1, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0+R_dress_01_s#0+L_dress_01_s#0+F_dress_01_s#0+B_dress_01_s#0", "id": 262}, {"name": "SniperReload", "fileName": "piper_idle.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 500, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0+R_dress_01_s#0+L_dress_01_s#0+F_dress_01_s#0+B_dress_01_s#0", "id": 263}, {"name": "SniperPushback", "fileName": "piper_pushback.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 264}, {"name": "SniperWin", "fileName": "piper_win.scw", "startFrame": 1, "endFrame": 114, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 265}, {"name": "SniperWinloop", "fileName": "piper_win.scw", "startFrame": 115, "endFrame": 155, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 266}, {"name": "SniperLose", "fileName": "piper_lose.scw", "startFrame": 1, "endFrame": 61, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 267}, {"name": "SniperLoseloop", "fileName": "piper_lose.scw", "startFrame": 62, "endFrame": 104, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 268}, {"name": "SniperProfile", "fileName": "piper_portrait.scw", "startFrame": null, "endFrame": null, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 269}, {"name": "MinigunnerIdle", "fileName": "minigunner_idle.scw", "startFrame": null, "endFrame": 39, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": "PelvisBone#4", "id": 270}, {"name": "MinigunnerWalk", "fileName": "minigunner_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 140, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": 1, "id": 271}, {"name": "MinigunnerPrimary", "fileName": "minigunner_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#3", "id": 272}, {"name": "MinigunnerSecondary", "fileName": "minigunner_ulti1.scw", "startFrame": null, "endFrame": 3, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": true, "priority": "ChestBone#4", "id": 273}, {"name": "MinigunnerRecoil", "fileName": "minigunner_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#4", "id": 274}, {"name": "MinigunnerRecoil2", "fileName": "minigunner_ulti1.scw", "startFrame": null, "endFrame": 15, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#4", "id": 275}, {"name": "MinigunnerReload", "fileName": "minigunner_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 600, "looping": null, "priority": "ChestBone#2", "id": 276}, {"name": "MinigunnerPushback", "fileName": "minigunner_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 400, "looping": null, "priority": 5, "id": 277}, {"name": "MinigunnerWin", "fileName": "minigunner_win1.scw", "startFrame": null, "endFrame": 32, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 278}, {"name": "MinigunnerWinloop", "fileName": "minigunner_win1.scw", "startFrame": 33, "endFrame": 57, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 279}, {"name": "MinigunnerLose", "fileName": "minigunner_lose1.scw", "startFrame": null, "endFrame": 40, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 280}, {"name": "MinigunnerLoseloop", "fileName": "minigunner_lose1.scw", "startFrame": 40, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 281}, {"name": "MinigunnerProfile", "fileName": "minigunner_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": "PelvisBone#4", "id": 282}, {"name": "HealingStation", "fileName": "healstation_geo.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 283}, {"name": "BarrelbotIdle", "fileName": "barrelbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 284}, {"name": "BarrelbotWalk", "fileName": "barrelbot_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 285}, {"name": "BarrelbotPrimary", "fileName": "barrelbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#3", "id": 286}, {"name": "BarrelbotSecondary", "fileName": "darryl_super.scw", "startFrame": null, "endFrame": 29, "speed": null, "transitionInMs": 1, "transitionOutMs": 1, "autoFadeMs": 1, "looping": true, "priority": 5, "id": 287}, {"name": "BarrelbotRecoil", "fileName": "barrelbot_recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#4", "id": 288}, {"name": "BarrelbotRecoil2", "fileName": "barrelbot_recoil2.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#4", "id": 289}, {"name": "BarrelbotReload", "fileName": "barrelbot_recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 800, "transitionOutMs": 800, "autoFadeMs": 800, "looping": null, "priority": "ChestBone#2", "id": 290}, {"name": "BarrelbotPushback", "fileName": "barrelbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 291}, {"name": "BarrelbotWin", "fileName": "darryl_win.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 292}, {"name": "BarrelbotWinloop", "fileName": "darryl_winloop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 293}, {"name": "BarrelbotLose", "fileName": "darryl_lose.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 294}, {"name": "BarrelbotHide", "fileName": "barrelbot_signature.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": true, "priority": null, "id": 295}, {"name": "BarrelbotLoseloop", "fileName": "darryl_lose.scw", "startFrame": 45, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 296}, {"name": "BarrelbotShipLoop", "fileName": "darryl_ship_loop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 297}, {"name": "RangedBotIdle", "fileName": "rangedbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 298}, {"name": "RangedBotWalk", "fileName": "rangedbot_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 100, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 299}, {"name": "RangedBotPrimary", "fileName": "rangedbot_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 300, "autoFadeMs": 600, "looping": null, "priority": "ChestBone#3", "id": 300}, {"name": "RangedBotSecondary", "fileName": "rangedbot_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 300, "autoFadeMs": 600, "looping": null, "priority": "ChestBone#3", "id": 301}, {"name": "RangedBotRecoil", "fileName": "rangedbot_recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 400, "looping": null, "priority": "ChestBone#4", "id": 302}, {"name": "RangedBotReload", "fileName": "rangedbot_reload.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 303}, {"name": "RangedBotPushback", "fileName": "rangedbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 304}, {"name": "RangedBotWin", "fileName": "rangedbot_win1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 305}, {"name": "RangedBotWinloop", "fileName": "rangedbot_winloop1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 306}, {"name": "RangedBotLose", "fileName": "rangedbot_lose1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 307}, {"name": "RangedBotLoseloop", "fileName": "rangedbot_loseloop1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 308}, {"name": "FastMeleeBotIdle", "fileName": "fastmeleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": null, "id": 309}, {"name": "FastMeleeBotWalk", "fileName": "fastmeleebot_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 120, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": 1, "id": 310}, {"name": "FastMeleeBotRecoil", "fileName": "fastmeleebot_recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "PelvisBone#4+RLegBone#0+LLegBone#0", "id": 311}, {"name": "FastMeleeBotPushback", "fileName": "fastmeleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 400, "looping": null, "priority": 5, "id": 312}, {"name": "FastMeleeBotWin", "fileName": "fastmeleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 313}, {"name": "FastMeleeBotWinloop", "fileName": "fastmeleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 314}, {"name": "FastMeleeBotLose", "fileName": "fastmeleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 315}, {"name": "FastMeleeBotLoseloop", "fileName": "fastmeleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 316}, {"name": "MeleeBotIdle", "fileName": "meleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": null, "id": 317}, {"name": "MeleeBotWalk", "fileName": "meleebot_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 120, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": 1, "id": 318}, {"name": "MeleeBotRecoil", "fileName": "recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "PelvisBone#4+RLegBone#0+LLegBone#0", "id": 319}, {"name": "MeleeBotPushback", "fileName": "meleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 400, "looping": null, "priority": 5, "id": 320}, {"name": "MeleeBotRecoil2", "fileName": "recoil_2.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "PelvisBone#4+RLegBone#0+LLegBone#0", "id": 321}, {"name": "MeleeBotWin", "fileName": "meleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 322}, {"name": "MeleeBotWinloop", "fileName": "meleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 323}, {"name": "MeleeBotLose", "fileName": "meleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 324}, {"name": "MeleeBotLoseloop", "fileName": "meleebot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 325}, {"name": "BossBotIdle", "fileName": "bossbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": null, "id": 326}, {"name": "BossBotWalk", "fileName": "bossbot_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 120, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": 1, "id": 327}, {"name": "BossBotPrimary", "fileName": "bossbot_shoot_recoil.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#3", "id": 328}, {"name": "BossBotRecoil", "fileName": "bossbot_recoil_1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "PelvisBone#4+RLegBone#0+LLegBone#0", "id": 329}, {"name": "BossBotPushback", "fileName": "bossbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 400, "looping": null, "priority": 5, "id": 330}, {"name": "BossBotRecoil2", "fileName": "bossbot_recoil_2.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "PelvisBone#4+RLegBone#0+LLegBone#0", "id": 331}, {"name": "BossBotWin", "fileName": "bossbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 332}, {"name": "BossBotWinloop", "fileName": "bossbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 333}, {"name": "BossBotLose", "fileName": "bossbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 334}, {"name": "BossBotLoseloop", "fileName": "bossbot_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 335}, {"name": "ArtilleryGalIdle", "fileName": "mari_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 336}, {"name": "ArtilleryGalWalk", "fileName": "mari_walk.scw", "startFrame": null, "endFrame": 28, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 337}, {"name": "ArtilleryGalPrimary", "fileName": "mari_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 338}, {"name": "ArtilleryGalUltiAttack", "fileName": "mari_ult.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 339}, {"name": "ArtilleryGalRecoil", "fileName": "mari_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 150, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 340}, {"name": "ArtilleryGalUltiRecoil", "fileName": "mari_ult.scw", "startFrame": 5, "endFrame": 22, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 250, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 341}, {"name": "ArtilleryGalReload", "fileName": "mari_idle.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": null, "id": 342}, {"name": "ArtilleryGalPushback", "fileName": "mari_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 343}, {"name": "ArtilleryGalWin", "fileName": "mari_win.scw", "startFrame": 1, "endFrame": 62, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 344}, {"name": "ArtilleryGalWinloop", "fileName": "mari_win.scw", "startFrame": 63, "endFrame": 92, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 345}, {"name": "ArtilleryGalLose", "fileName": "mari_lose.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 346}, {"name": "ArtilleryGalLoseloop", "fileName": "mari_lose.scw", "startFrame": 40, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 347}, {"name": "ArtilleryGalProfile", "fileName": "mari_win.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 348}, {"name": "FrankIdle", "fileName": "frank_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": null, "id": 349}, {"name": "FrankWalk", "fileName": "frank_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 120, "transitionInMs": 300, "transitionOutMs": 300, "autoFadeMs": null, "looping": true, "priority": 5, "id": 350}, {"name": "FrankPrimary", "fileName": "frank_attack.scw", "startFrame": 1, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 351}, {"name": "FrankSecondary", "fileName": "frank_ulti.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": null, "priority": 5, "id": 352}, {"name": "FrankRecoil", "fileName": "frank_attack.scw", "startFrame": 22, "endFrame": 35, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 353}, {"name": "FrankPushback", "fileName": "frank_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 120, "transitionOutMs": 120, "autoFadeMs": 400, "looping": null, "priority": 5, "id": 354}, {"name": "FrankRecoil2", "fileName": "frank_ulti.scw", "startFrame": 36, "endFrame": 50, "speed": null, "transitionInMs": 1, "transitionOutMs": 1, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 355}, {"name": "FrankWin", "fileName": "frank_win.scw", "startFrame": 1, "endFrame": 22, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 356}, {"name": "FrankWinloop", "fileName": "frank_win.scw", "startFrame": 23, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 357}, {"name": "FrankLose", "fileName": "frank_lose.scw", "startFrame": 1, "endFrame": 74, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 358}, {"name": "FrankLoseloop", "fileName": "frank_lose.scw", "startFrame": 75, "endFrame": 119, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 359}, {"name": "FrankProfile", "fileName": "frank_idle.scw", "startFrame": 44, "endFrame": 44, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 360}, {"name": "FrankMortuary", "fileName": "frank_mortuary_env_loop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 361}, {"name": "ArtillerySpawn", "fileName": "turret_spawn.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 3, "id": 362}, {"name": "ArtilleryIdle", "fileName": "turret_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 363}, {"name": "ArtilleryAttack", "fileName": "turret_attack.scw", "startFrame": -1, "endFrame": -1, "speed": 100, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 4, "id": 364}, {"name": "JunkerKnightWalk", "fileName": "jessie_knight_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 365}, {"name": "JunkerKnightIdle", "fileName": "jessie_knight_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 366}, {"name": "JunkerKnightPrimary", "fileName": "jessie_knight_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": "spine_lower_s#3", "id": 367}, {"name": "JunkerKnightUltiAttack", "fileName": "jessie_knight_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 10, "looping": null, "priority": 5, "id": 368}, {"name": "JunkerKnightRecoil", "fileName": "jessie_knight_attack.scw", "startFrame": 5, "endFrame": 15, "speed": null, "transitionInMs": 25, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#4", "id": 369}, {"name": "JunkerKnightUltiRecoil", "fileName": "jessie_knight_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 370}, {"name": "JunkerKnightReload", "fileName": "jessie_knight_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 371}, {"name": "JunkerKnightPushback", "fileName": "jessie_knight_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 372}, {"name": "JunkerKnightWin", "fileName": "jessie_knight_win.scw", "startFrame": 1, "endFrame": 100, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 373}, {"name": "JunkerKnightWinloop", "fileName": "jessie_knight_win.scw", "startFrame": 100, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 374}, {"name": "JunkerKnightBattleWin", "fileName": "jessie_knight_battlewin.scw", "startFrame": 1, "endFrame": 107, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 375}, {"name": "JunkerKnightBattleWinloop", "fileName": "jessie_knight_battlewin.scw", "startFrame": 107, "endFrame": 139, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 376}, {"name": "JunkerKnightLose", "fileName": "jessie_knight_lose.scw", "startFrame": 1, "endFrame": 56, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 377}, {"name": "JunkerKnightLoseloop", "fileName": "jessie_knight_lose.scw", "startFrame": 56, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 378}, {"name": "JunkerSummertimeWalk", "fileName": "jessie_summertime_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 379}, {"name": "CrowPheonixIdle", "fileName": "crow_pheonix_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 380}, {"name": "CrowPheonixWalk", "fileName": "crow_pheonix_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 381}, {"name": "CrowPheonixPrimary", "fileName": "crow_pheonix_attack.scw", "startFrame": 1, "endFrame": 5, "speed": 150, "transitionInMs": 100, "transitionOutMs": 300, "autoFadeMs": 600, "looping": null, "priority": "spine_lower_s#4", "id": 382}, {"name": "CrowPheonixUltiAttack", "fileName": "crow_pheonix_ulti.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": 5, "id": 383}, {"name": "CrowPheonixRecoil", "fileName": "crow_pheonix_attack.scw", "startFrame": 5, "endFrame": 20, "speed": 150, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#4", "id": 384}, {"name": "CrowPheonixReload", "fileName": "crow_pheonix_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#4", "id": 385}, {"name": "CrowPheonixPushback", "fileName": "crow_pheonix_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 386}, {"name": "CrowPheonixWin", "fileName": "crow_pheonix_win.scw", "startFrame": 1, "endFrame": 89, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 387}, {"name": "CrowPheonixWinloop", "fileName": "crow_pheonix_win.scw", "startFrame": 90, "endFrame": 112, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 388}, {"name": "CrowPheonixLose", "fileName": "crow_pheonix_lose.scw", "startFrame": 1, "endFrame": 49, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 389}, {"name": "CrowPheonixLoseloop", "fileName": "crow_pheonix_lose.scw", "startFrame": 50, "endFrame": 75, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 390}, {"name": "CrowPheonixProfile", "fileName": "crow_pheonix_win.scw", "startFrame": 66, "endFrame": 66, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 391}, {"name": "TurretWin", "fileName": "turret_dragon_win.scw", "startFrame": 1, "endFrame": 100, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 392}, {"name": "TurretWinloop", "fileName": "turret_dragon_win.scw", "startFrame": 100, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 393}, {"name": "UndertakerGreaserWin", "fileName": "mortis_greaser_win.scw", "startFrame": null, "endFrame": 80, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 394}, {"name": "UndertakerGreaserWinloop", "fileName": "mortis_greaser_win.scw", "startFrame": 80, "endFrame": 110, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 395}, {"name": "UndertakerGreaserLose", "fileName": "mortis_greaser_lose.scw", "startFrame": null, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 396}, {"name": "UndertakerGreaserLoseloop", "fileName": "mortis_greaser_lose.scw", "startFrame": 12, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 397}, {"name": "UndertakerGreaserIdle", "fileName": "mortis_greaser_idle.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 398}, {"name": "ShellyPreregIdle", "fileName": "shelly_prereg_idle.scw", "startFrame": null, "endFrame": 39, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 399}, {"name": "ShellyPreregWalk", "fileName": "shelly_prereg_walk.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 400}, {"name": "ShellyPreregPrimary", "fileName": "shelly_prereg_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 401}, {"name": "ShellyPreregSecondary", "fileName": "shelly_prereg_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 402}, {"name": "ShellyPreregRecoil", "fileName": "shelly_prereg_attack.scw", "startFrame": 6, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 403}, {"name": "ShellyPreregReload", "fileName": "shelly_prereg_reload.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#0+L_upperLeg_s#0+R_upperLeg_s#0+R_clavicle_s#4+R_shoulder_s#4+R_elbow_s#4+R_forearm_twist_s#4+R_wrist_s#4+L_clavicle_s#4+L_shoulder_s#4+L_elbow_s#4+L_forearm_twist_s#4+L_wrist_s#4", "id": 404}, {"name": "ShellyPreregPushback", "fileName": "shelly_prereg_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 405}, {"name": "ShellyPreregWin", "fileName": "shelly_prereg_win.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 406}, {"name": "ShellyPreregWinloop", "fileName": "shelly_prereg_win.scw", "startFrame": 60, "endFrame": 102, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 407}, {"name": "ShellyPreregLose", "fileName": "shelly_prereg_lose.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 408}, {"name": "ShellyPreregLoseloop", "fileName": "shelly_prereg_lose.scw", "startFrame": 50, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 409}, {"name": "BarkeepBankerIdle", "fileName": "barley_banker_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 250, "looping": true, "priority": null, "id": 410}, {"name": "BarkeepBankerWalk", "fileName": "barley_banker_walk.scw", "startFrame": null, "endFrame": 19, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 411}, {"name": "BarkeepBankerPrimary", "fileName": "barley_banker_attack1.scw", "startFrame": 3, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "ChestBone#3", "id": 412}, {"name": "BarkeepBankerSecondary", "fileName": "barley_banker_attack1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 50, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#3", "id": 413}, {"name": "BarkeepBankerRecoil", "fileName": "barley_banker_attack1.scw", "startFrame": 3, "endFrame": 12, "speed": null, "transitionInMs": 10, "transitionOutMs": 10, "autoFadeMs": 10, "looping": null, "priority": "ChestBone#4", "id": 414}, {"name": "BarkeepBankerReload", "fileName": "barley_banker_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 415}, {"name": "BarkeepBankerPushback", "fileName": "barley_banker_knockback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 416}, {"name": "BarkeepBankerWin", "fileName": "barley_banker_win1.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": 50, "transitionOutMs": 250, "autoFadeMs": 250, "looping": null, "priority": null, "id": 417}, {"name": "BarkeepBankerWinloop", "fileName": "barley_banker_win1.scw", "startFrame": 30, "endFrame": 80, "speed": null, "transitionInMs": 25, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 418}, {"name": "BarkeepBankerLose", "fileName": "barley_banker_lose1.scw", "startFrame": -1, "endFrame": -1, "speed": 130, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 419}, {"name": "BarkeepBankerLoseloop", "fileName": "barley_banker_lose1.scw", "startFrame": 60, "endFrame": 150, "speed": 120, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 420}, {"name": "BarkeepBankerWinidleloop", "fileName": "barley_banker_winidleloop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 421}, {"name": "BarkeepBankerProfile", "fileName": "barley_banker_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 422}, {"name": "ShellyBanditaIdle", "fileName": "shelly_bandita_idle.scw", "startFrame": null, "endFrame": 39, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 423}, {"name": "ShellyBanditaWalk", "fileName": "shelly_bandita_walk.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 424}, {"name": "ShellyBanditaPrimary", "fileName": "shelly_bandita_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 425}, {"name": "ShellyBanditaSecondary", "fileName": "shelly_bandita_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 426}, {"name": "ShellyBanditaRecoil", "fileName": "shelly_bandita_attack.scw", "startFrame": 6, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 427}, {"name": "ShellyBanditaReload", "fileName": "shelly_bandita_reload.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#0+L_upperLeg_s#0+R_upperLeg_s#0+R_clavicle_s#4+R_shoulder_s#4+R_elbow_s#4+R_forearm_twist_s#4+R_wrist_s#4+L_clavicle_s#4+L_shoulder_s#4+L_elbow_s#4+L_forearm_twist_s#4+L_wrist_s#4", "id": 428}, {"name": "ShellyBanditaPushback", "fileName": "shelly_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 429}, {"name": "ShellyBanditaWin", "fileName": "shelly_bandita_win.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 430}, {"name": "ShellyBanditaWinloop", "fileName": "shelly_bandita_win.scw", "startFrame": 60, "endFrame": 102, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 431}, {"name": "ShellyBanditaLose", "fileName": "shelly_bandita_lose.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 432}, {"name": "ShellyBanditaLoseloop", "fileName": "shelly_bandita_lose.scw", "startFrame": 50, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 433}, {"name": "LeonIdle", "fileName": "leon_idle.scw", "startFrame": 1, "endFrame": 28, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 434}, {"name": "LeonWalk", "fileName": "leon_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 170, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 435}, {"name": "LeonAttack", "fileName": "leon_attack.scw", "startFrame": 1, "endFrame": 3, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 436}, {"name": "LeonSecondary", "fileName": "leon_idle.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 437}, {"name": "LeonRecoil", "fileName": "leon_attack.scw", "startFrame": 3, "endFrame": 7, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 438}, {"name": "LeonRecoil2", "fileName": "leon_attack.scw", "startFrame": 7, "endFrame": 11, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 439}, {"name": "LeonReload", "fileName": "leon_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#2", "id": 440}, {"name": "LeonPushback", "fileName": "leon_pushback.scw", "startFrame": 1, "endFrame": 34, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 441}, {"name": "LeonWin", "fileName": "leon_win.scw", "startFrame": 1, "endFrame": 84, "speed": null, "transitionInMs": null, "transitionOutMs": 10, "autoFadeMs": null, "looping": null, "priority": 5, "id": 442}, {"name": "LeonWinloop", "fileName": "leon_win.scw", "startFrame": 84, "endFrame": 111, "speed": null, "transitionInMs": 10, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 443}, {"name": "LeonLose", "fileName": "leon_lose.scw", "startFrame": 1, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 444}, {"name": "LeonLoseloop", "fileName": "leon_lose.scw", "startFrame": 45, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 445}, {"name": "LeonProfile", "fileName": "leon_base_cam.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 446}, {"name": "BarkeepWizardIdle", "fileName": "barley_wizard_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 447}, {"name": "BarkeepWizardWalk", "fileName": "barley_wizard_walk.scw", "startFrame": null, "endFrame": 19, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 448}, {"name": "BarkeepWizardPrimary", "fileName": "barley_wizard_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 449}, {"name": "BarkeepWizardSecondary", "fileName": "barley_wizard_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 450}, {"name": "BarkeepWizardRecoil", "fileName": "barley_wizard_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "spine_lower_s#4", "id": 451}, {"name": "BarkeepWizardReload", "fileName": "barley_wizard_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "ChestBone#2", "id": 452}, {"name": "BarkeepWizardPushback", "fileName": "barley_wizard_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 453}, {"name": "BarkeepWizardWin", "fileName": "barley_wizard_win.scw", "startFrame": null, "endFrame": 40, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 454}, {"name": "BarkeepWizardWinloop", "fileName": "barley_wizard_win.scw", "startFrame": 40, "endFrame": 120, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 455}, {"name": "BarkeepWizardLose", "fileName": "barley_wizard_lose.scw", "startFrame": -1, "endFrame": -1, "speed": 130, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 456}, {"name": "BarkeepWizardLoseloop", "fileName": "barley_wizard_lose.scw", "startFrame": 60, "endFrame": 150, "speed": 120, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 457}, {"name": "BarkeepWizardProfile", "fileName": "barley_wizard_portrait.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 458}, {"name": "BearReindeerIdle", "fileName": "bear_reindeer_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 459}, {"name": "BearReindeerWalk", "fileName": "bear_reindeer_walk.scw", "startFrame": 1, "endFrame": 40, "speed": 170, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 460}, {"name": "BearReindeerAttack", "fileName": "bear_reindeer_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 150, "looping": null, "priority": "spine_lower_s#4", "id": 461}, {"name": "BearReindeerRecoil", "fileName": "bear_reindeer_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 1, "autoFadeMs": 50, "looping": null, "priority": "spine_lower_s#4", "id": 462}, {"name": "BearReindeerPushback", "fileName": "bear_reindeer_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 463}, {"name": "BearReindeerWin", "fileName": "bear_reindeer_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 464}, {"name": "PocoIdle", "fileName": "poco_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 465}, {"name": "PocoWalk", "fileName": "poco_walk.scw", "startFrame": -1, "endFrame": -1, "speed": 160, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 466}, {"name": "PocoAttack", "fileName": "poco_attack.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#3", "id": 467}, {"name": "PocoSecondary", "fileName": "poco_attack.scw", "startFrame": 4, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#3", "id": 468}, {"name": "PocoRecoil", "fileName": "poco_attack.scw", "startFrame": 4, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#4", "id": 469}, {"name": "PocoReload", "fileName": "poco_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#2", "id": 470}, {"name": "PocoPushback", "fileName": "poco_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 471}, {"name": "PocoWin", "fileName": "poco_win.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 472}, {"name": "PocoWinloop", "fileName": "poco_win.scw", "startFrame": 30, "endFrame": 90, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 473}, {"name": "PocoLose", "fileName": "poco_lose.scw", "startFrame": 1, "endFrame": 15, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 474}, {"name": "PocoLoseloop", "fileName": "poco_lose.scw", "startFrame": 15, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 475}, {"name": "PocoProfile", "fileName": "poco_win.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 476}, {"name": "GeneIdle", "fileName": "gene_anim_idle.scw", "startFrame": null, "endFrame": 79, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 477}, {"name": "GeneWalk", "fileName": "gene_anim_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 478}, {"name": "GeneAttack", "fileName": "gene_anim_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 479}, {"name": "GeneAttackRecoil", "fileName": "gene_anim_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": 50, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 480}, {"name": "GeneSecondary", "fileName": "gene_anim_super2.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 481}, {"name": "GeneSecondaryRecoil", "fileName": "gene_anim_super2.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 482}, {"name": "GeneReload", "fileName": "gene_anim_reload.scw", "startFrame": 1, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#2", "id": 483}, {"name": "GenePushback", "fileName": "gene_anim_idle.scw", "startFrame": null, "endFrame": 20, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 484}, {"name": "GeneWin", "fileName": "gene_anim_win.scw", "startFrame": 1, "endFrame": 119, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 485}, {"name": "GeneWinloop", "fileName": "gene_anim_win.scw", "startFrame": 120, "endFrame": 204, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 486}, {"name": "GeneLose", "fileName": "gene_anim_lose.scw", "startFrame": null, "endFrame": 129, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 487}, {"name": "GeneLoseloop", "fileName": "gene_anim_lose.scw", "startFrame": 130, "endFrame": 224, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 488}, {"name": "GeneProfile", "fileName": "gene_base_cam.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 489}, {"name": "DarrylIdle", "fileName": "darryl_cny_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 490}, {"name": "DarrylWalk", "fileName": "darryl_cny_walk.scw", "startFrame": null, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 491}, {"name": "DarrylPrimary", "fileName": "darryl_cny_attack.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 492}, {"name": "DarrylSecondary", "fileName": "darryl_cny_super.scw", "startFrame": null, "endFrame": 29, "speed": null, "transitionInMs": 1, "transitionOutMs": 1, "autoFadeMs": 1, "looping": true, "priority": 5, "id": 493}, {"name": "DarrylRecoil", "fileName": "darryl_cny_recoil1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 494}, {"name": "DarrylRecoil2", "fileName": "darryl_cny_recoil2.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 495}, {"name": "DarrylReload", "fileName": "darryl_cny_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 800, "transitionOutMs": 800, "autoFadeMs": 800, "looping": null, "priority": "ChestBone#2", "id": 496}, {"name": "DarrylPushback", "fileName": "darryl_cny_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 497}, {"name": "DarrylWin", "fileName": "darryl_cny_win.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 498}, {"name": "DarrylWinloop", "fileName": "darryl_cny_winloop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 499}, {"name": "DarrylLose", "fileName": "darryl_cny_lose.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": null, "id": 500}, {"name": "DarrylHide", "fileName": "darryl_cny_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": true, "priority": null, "id": 501}, {"name": "DarrylLoseloop", "fileName": "darryl_cny_lose.scw", "startFrame": 45, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 502}, {"name": "DarrylProfile", "fileName": "darryl_win.scw", "startFrame": 44, "endFrame": 44, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 503}, {"name": "UndertakerNightwitchWin", "fileName": "mortis_nightwitch_win.scw", "startFrame": 1, "endFrame": 77, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 504}, {"name": "UndertakerNightwitchWinloop", "fileName": "mortis_nightwitch_win.scw", "startFrame": 77, "endFrame": 106, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 505}, {"name": "RoboWarsBaseIdle", "fileName": "siege_base.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 506}, {"name": "RoboWarsBaseAttack", "fileName": "siege_base_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 4, "id": 507}, {"name": "CarlIdle", "fileName": "carl_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 508}, {"name": "CarlWalk", "fileName": "carl_walk.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 509}, {"name": "CarlAttack", "fileName": "carl_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 510}, {"name": "CarlAttackRecoil", "fileName": "carl_attack.scw", "startFrame": 5, "endFrame": 35, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 511}, {"name": "CarlSecondary", "fileName": "carl_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": true, "priority": 5, "id": 512}, {"name": "CarlSecondaryRecoil", "fileName": "carl_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 513}, {"name": "CarlReload", "fileName": "carl_attack.scw", "startFrame": 17, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 514}, {"name": "CarlPushback", "fileName": "carl_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 515}, {"name": "CarlWin", "fileName": "carl_win.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 1000, "autoFadeMs": 500, "looping": null, "priority": null, "id": 516}, {"name": "CarlWinloop", "fileName": "carl_winloop.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 2000, "transitionOutMs": 100, "autoFadeMs": 500, "looping": true, "priority": null, "id": 517}, {"name": "CarlLose", "fileName": "carl_lose.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 1000, "autoFadeMs": 500, "looping": null, "priority": null, "id": 518}, {"name": "CarlLoseloop", "fileName": "carl_loseloop.scw", "startFrame": 1, "endFrame": 80, "speed": null, "transitionInMs": 2000, "transitionOutMs": 100, "autoFadeMs": 500, "looping": true, "priority": null, "id": 519}, {"name": "CarlProfile", "fileName": "carl_base_cam.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 520}, {"name": "ShamanShibaIdle", "fileName": "nita_shiba_idle.scw", "startFrame": 1, "endFrame": 34, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 521}, {"name": "ShamanShibaWalk", "fileName": "nita_shiba_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 170, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 522}, {"name": "ShamanShibaAttack", "fileName": "nita_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 523}, {"name": "ShamanShibaSecondary", "fileName": "nita_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 524}, {"name": "ShamanShibaRecoil", "fileName": "nita_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#4", "id": 525}, {"name": "ShamanShibaReload", "fileName": "nita_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#2", "id": 526}, {"name": "ShamanShibaPushback", "fileName": "nita_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 527}, {"name": "ShamanShibaWin", "fileName": "nita_shiba_win.scw", "startFrame": 1, "endFrame": 64, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 528}, {"name": "ShamanShibaWinloop", "fileName": "nita_shiba_win.scw", "startFrame": 65, "endFrame": 104, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": true, "priority": 1, "id": 529}, {"name": "ShamanShibaLose", "fileName": "nita_lose.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 530}, {"name": "ShamanShibaLoseloop", "fileName": "nita_lose.scw", "startFrame": 30, "endFrame": 35, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 531}, {"name": "BearShibaIdle", "fileName": "bear_shiba_idle.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 532}, {"name": "RosaIdle", "fileName": "rosa_idle.scw", "startFrame": 1, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 533}, {"name": "RosaWalk", "fileName": "rosa_walk.scw", "startFrame": 1, "endFrame": 24, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 534}, {"name": "RosaAttack", "fileName": "rosa_attack.scw", "startFrame": 1, "endFrame": 11, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 535}, {"name": "RosaAttackRecoil", "fileName": "rosa_attack.scw", "startFrame": 12, "endFrame": 19, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 536}, {"name": "RosaAttackRecoil2", "fileName": "rosa_attack.scw", "startFrame": 20, "endFrame": 28, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 537}, {"name": "RosaUltRecoil", "fileName": "rosa_ult.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 538}, {"name": "RosaUltRecoil2", "fileName": "rosa_detransform.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 539}, {"name": "RosaWin", "fileName": "rosa_win.scw", "startFrame": 1, "endFrame": 39, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 500, "looping": null, "priority": null, "id": 540}, {"name": "RosaWinloop", "fileName": "rosa_win.scw", "startFrame": 40, "endFrame": 79, "speed": null, "transitionInMs": 500, "transitionOutMs": 100, "autoFadeMs": 300, "looping": true, "priority": null, "id": 541}, {"name": "RosaLose", "fileName": "rosa_lose.scw", "startFrame": 1, "endFrame": 49, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": null, "id": 542}, {"name": "RosaLoseloop", "fileName": "rosa_lose.scw", "startFrame": 50, "endFrame": 79, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 200, "looping": true, "priority": null, "id": 543}, {"name": "RosaIdle_transform", "fileName": "rosa_idle_transform.scw", "startFrame": 1, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 544}, {"name": "RosaWalk_transform", "fileName": "rosa_walk_transform.scw", "startFrame": 1, "endFrame": 24, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 545}, {"name": "RosaAttack_transform", "fileName": "rosa_attack_transform.scw", "startFrame": 1, "endFrame": 11, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 546}, {"name": "RosaAttackRecoil_transform", "fileName": "rosa_attack_transform.scw", "startFrame": 12, "endFrame": 19, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 547}, {"name": "RosaAttackRecoil2_transform", "fileName": "rosa_attack_transform.scw", "startFrame": 20, "endFrame": 28, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 548}, {"name": "RosaProfile", "fileName": "rosa_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 549}, {"name": "ArtilleryBunnySpawn", "fileName": "bunny_turret_anim_spawn.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 3, "id": 550}, {"name": "ArtilleryBunnyIdle", "fileName": "bunny_turret_anim_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 551}, {"name": "ArtilleryBunnyIdleMenu", "fileName": "bunny_turret_anim_idlemenu.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 552}, {"name": "ArtilleryBunnyAttack", "fileName": "bunny_turret_anim_attack.scw", "startFrame": -1, "endFrame": -1, "speed": 100, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 4, "id": 553}, {"name": "ArtilleryGalBunnyWalk", "fileName": "penny_bunny_walk.scw", "startFrame": 1, "endFrame": 28, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 554}, {"name": "ArtilleryGalBunnyWin", "fileName": "penny_bunny_win.scw", "startFrame": 1, "endFrame": 62, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 555}, {"name": "ArtilleryGalBunnyWinloop", "fileName": "penny_bunny_win.scw", "startFrame": 63, "endFrame": 92, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 556}, {"name": "ArtilleryGalBunnyLose", "fileName": "penny_bunny_win.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 557}, {"name": "ArtilleryGalBunnyLoseloop", "fileName": "mari_lose.scw", "startFrame": 40, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 558}, {"name": "BarkeepMsIdle", "fileName": "barley_ms_idle.scw", "startFrame": 1, "endFrame": 60, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 350, "looping": true, "priority": null, "id": 559}, {"name": "BarkeepMsWalk", "fileName": "barley_ms_walk.scw", "startFrame": null, "endFrame": 16, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": true, "priority": 1, "id": 560}, {"name": "BarkeepMsWin", "fileName": "barley_ms_win.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 250, "autoFadeMs": 250, "looping": null, "priority": null, "id": 561}, {"name": "BarkeepMsPrimary", "fileName": "barley_ms_attack.scw", "startFrame": 3, "endFrame": 24, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 562}, {"name": "BarkeepMsReload", "fileName": "barley_ms_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 563}, {"name": "BarkeepMsSecondary", "fileName": "barley_ms_attack.scw", "startFrame": 3, "endFrame": 24, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 564}, {"name": "BarkeepMsLose", "fileName": "barley_ms_lose.scw", "startFrame": -1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": null, "id": 565}, {"name": "BarkeepMsLoseloop", "fileName": "barley_ms_lose.scw", "startFrame": 30, "endFrame": 90, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": true, "priority": null, "id": 566}, {"name": "BarkeepMsProfile", "fileName": "barley_ms_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 350, "looping": true, "priority": null, "id": 567}, {"name": "BrockHotrodIdle", "fileName": "brock_hotrod_idle.scw", "startFrame": -1, "endFrame": -1, "speed": 135, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 568}, {"name": "BrockHotrodWalk", "fileName": "brock_hotrod_run.scw", "startFrame": -1, "endFrame": -1, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 569}, {"name": "BrockHotrodPrimary", "fileName": "brock_hotrod_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 300, "autoFadeMs": 300, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 570}, {"name": "BrockHotrodSecondary", "fileName": "brock_hotrod_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 571}, {"name": "BrockHotrodRecoil", "fileName": "brock_hotrod_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 572}, {"name": "BrockHotrodRecoil2", "fileName": "brock_hotrod_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 573}, {"name": "BrockHotrodPushback", "fileName": "brock_pushback1.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 574}, {"name": "BrockHotrodWin", "fileName": "brock_hotrod_win.scw", "startFrame": null, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": 500, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 575}, {"name": "BrockHotrodWinloop", "fileName": "brock_hotrod_winloop.scw", "startFrame": null, "endFrame": 59, "speed": null, "transitionInMs": 500, "transitionOutMs": null, "autoFadeMs": 500, "looping": true, "priority": 5, "id": 576}, {"name": "BrockHotrodLose", "fileName": "brock_hotrod_lose.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 577}, {"name": "BrockHotrodLoseloop", "fileName": "brock_hotrod_lose.scw", "startFrame": 70, "endFrame": 110, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 578}, {"name": "BibiIdle", "fileName": "bibi_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 579}, {"name": "BibiWalk", "fileName": "bibi_run.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 120, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": 1, "id": 580}, {"name": "BibiPrimary", "fileName": "bibi_attack.scw", "startFrame": 1, "endFrame": 51, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 581}, {"name": "BibiSecondary", "fileName": "bibi_attack.scw", "startFrame": 1, "endFrame": 51, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 582}, {"name": "BibiRecoil", "fileName": "bibi_attack.scw", "startFrame": 22, "endFrame": 51, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 583}, {"name": "BibiPushback", "fileName": "bibi_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 584}, {"name": "BibiRecoil2", "fileName": "bibi_attack.scw", "startFrame": 17, "endFrame": 51, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 585}, {"name": "BibiWin", "fileName": "bibi_win.scw", "startFrame": 1, "endFrame": 163, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 586}, {"name": "BibiWinloop", "fileName": "bibi_win.scw", "startFrame": 164, "endFrame": 262, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 587}, {"name": "BibiLose", "fileName": "bibi_lose.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 588}, {"name": "BibiLoseloop", "fileName": "bibi_lose.scw", "startFrame": 30, "endFrame": 89, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 589}, {"name": "BibiProfile", "fileName": "bibi_win.scw", "startFrame": 108, "endFrame": 108, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 590}, {"name": "CarlHotrodIdle", "fileName": "carl_hotrod_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 591}, {"name": "CarlHotrodWalk", "fileName": "carl_hotrod_walk.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 592}, {"name": "CarlHotrodAttack", "fileName": "carl_hotrod_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 593}, {"name": "CarlHotrodAttackRecoil", "fileName": "carl_hotrod_attack.scw", "startFrame": 5, "endFrame": 35, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 594}, {"name": "CarlHotrodSecondary", "fileName": "carl_hotrod_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": true, "priority": 5, "id": 595}, {"name": "CarlHotrodSecondaryRecoil", "fileName": "carl_hotrod_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 596}, {"name": "CarlHotrodReload", "fileName": "carl_hotrod_attack.scw", "startFrame": 17, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 597}, {"name": "CarlHotrodPushback", "fileName": "carl_hotrod_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 598}, {"name": "CarlHotrodWin", "fileName": "carl_hotrod_win.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 1000, "autoFadeMs": 500, "looping": null, "priority": null, "id": 599}, {"name": "CarlHotrodWinloop", "fileName": "carl_hotrod_winloop.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 2000, "transitionOutMs": 100, "autoFadeMs": 500, "looping": true, "priority": null, "id": 600}, {"name": "CarlHotrodLose", "fileName": "carl_hotrod_lose.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 1000, "autoFadeMs": 500, "looping": null, "priority": null, "id": 601}, {"name": "CarlHotrodLoseloop", "fileName": "carl_hotrod_loseloop.scw", "startFrame": 1, "endFrame": 80, "speed": null, "transitionInMs": 2000, "transitionOutMs": 100, "autoFadeMs": 500, "looping": true, "priority": null, "id": 602}, {"name": "BarkeepLumberjackIdle", "fileName": "barley_lumberjack_idle.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 250, "looping": true, "priority": null, "id": 603}, {"name": "BarkeepLumberjackWalk", "fileName": "barley_lumberjack_run.scw", "startFrame": null, "endFrame": 19, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": true, "priority": 1, "id": 604}, {"name": "BarkeepLumberjackPrimary", "fileName": "barley_lumberjack_attack.scw", "startFrame": 3, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 605}, {"name": "BarkeepLumberjackSecondary", "fileName": "barley_lumberjack_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 50, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 606}, {"name": "BarkeepLumberjackRecoil", "fileName": "barley_lumberjack_attack.scw", "startFrame": 3, "endFrame": 12, "speed": null, "transitionInMs": 10, "transitionOutMs": 10, "autoFadeMs": 10, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 607}, {"name": "BarkeepLumberjackReload", "fileName": "barley_lumberjack_idle.scw", "startFrame": 1, "endFrame": 2, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 608}, {"name": "BarkeepLumberjackPushback", "fileName": "barley_lumberjack_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 609}, {"name": "BarkeepLumberjackWin", "fileName": "barley_lumberjack_win.scw", "startFrame": null, "endFrame": 70, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": null, "id": 610}, {"name": "BarkeepLumberjackWinloop", "fileName": "barley_lumberjack_idle.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": true, "priority": null, "id": 611}, {"name": "BarkeepLumberjackLose", "fileName": "barley_lumberjack_lose.scw", "startFrame": 1, "endFrame": 59, "speed": 120, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 612}, {"name": "BarkeepLumberjackLoseloop", "fileName": "barley_lumberjack_lose.scw", "startFrame": 60, "endFrame": 149, "speed": 120, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 613}, {"name": "BarkeepLumberjackProfile", "fileName": "barley_lumberjack_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 614}, {"name": "BrockBoomboxIdle", "fileName": "brock_boombox_idle.scw", "startFrame": null, "endFrame": -1, "speed": 135, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 615}, {"name": "BrockBoomboxWalk", "fileName": "brock_boombox_walk.scw", "startFrame": null, "endFrame": 30, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 616}, {"name": "BrockBoomboxPrimary", "fileName": "brock_boombox_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 300, "autoFadeMs": 300, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 617}, {"name": "BrockBoomboxSecondary", "fileName": "brock_boombox_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 618}, {"name": "BrockBoomboxRecoil", "fileName": "brock_boombox_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 619}, {"name": "BrockBoomboxRecoil2", "fileName": "brock_boombox_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 620}, {"name": "BrockBoomboxLose", "fileName": "brock_boombox_lose.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 621}, {"name": "BrockBoomboxLoseloop", "fileName": "brock_boombox_lose.scw", "startFrame": 70, "endFrame": 110, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 622}, {"name": "CrowMechaIdle", "fileName": "crow_mecha_idle.scw", "startFrame": 1, "endFrame": 34, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 623}, {"name": "CrowMechaWalk", "fileName": "crow_mecha_run.scw", "startFrame": 1, "endFrame": 24, "speed": 100, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 624}, {"name": "CrowMechaPrimary", "fileName": "crow_mecha_attack.scw", "startFrame": 1, "endFrame": 3, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 625}, {"name": "CrowMechaSecondary", "fileName": "crow_mecha_ult.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 626}, {"name": "CrowMechaRecoil", "fileName": "crow_mecha_attack.scw", "startFrame": 4, "endFrame": 20, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 627}, {"name": "CrowMechaReload", "fileName": "crow_mecha_idle.scw", "startFrame": 1, "endFrame": 3, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 628}, {"name": "CrowMechaPushback", "fileName": "crow_mecha_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 629}, {"name": "CrowMechaWin", "fileName": "crow_mecha_win.scw", "startFrame": 1, "endFrame": 143, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 630}, {"name": "CrowMechaWinloop", "fileName": "crow_mecha_win.scw", "startFrame": 144, "endFrame": 202, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 631}, {"name": "CrowMechaLose", "fileName": "crow_mecha_lose.scw", "startFrame": 1, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 632}, {"name": "CrowMechaLoseloop", "fileName": "crow_mecha_lose.scw", "startFrame": 45, "endFrame": 45, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 633}, {"name": "CrowMechaProfile", "fileName": "crow_mecha_win.scw", "startFrame": 21, "endFrame": 21, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 634}, {"name": "BoMechaIdle", "fileName": "bo_mecha_idle.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 635}, {"name": "BoMechaWalk", "fileName": "bo_mecha_run.scw", "startFrame": 1, "endFrame": 20, "speed": 80, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": 1, "id": 636}, {"name": "BoMechaAttack", "fileName": "bo_mecha_attack.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 637}, {"name": "BoMechaSecondary", "fileName": "bo_mecha_ult.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 350, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 638}, {"name": "BoMechaRecoil", "fileName": "bo_mecha_attack.scw", "startFrame": 8, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 350, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 639}, {"name": "BoMechaRecoil2", "fileName": "bo_mecha_ult.scw", "startFrame": 5, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 640}, {"name": "BoMechaWin", "fileName": "bo_mecha_win.scw", "startFrame": 1, "endFrame": 144, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 641}, {"name": "BoMechaWinloop", "fileName": "bo_mecha_win.scw", "startFrame": 145, "endFrame": 202, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 642}, {"name": "BoMechaLose", "fileName": "bo_mecha_lose.scw", "startFrame": 1, "endFrame": 36, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 643}, {"name": "BoMechaLoseloop", "fileName": "bo_mecha_lose.scw", "startFrame": 36, "endFrame": 36, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 644}, {"name": "BoMechaPushback", "fileName": "bo_mecha_pushback.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 50, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 5, "id": 645}, {"name": "BoMechaProfile", "fileName": "bo_mecha_win.scw", "startFrame": 93, "endFrame": 93, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 646}, {"name": "SpikeMechaWalk", "fileName": "spike_mecha_walk.scw", "startFrame": null, "endFrame": 20, "speed": 125, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 647}, {"name": "SpikeMechaWin", "fileName": "spike_mecha_win.scw", "startFrame": null, "endFrame": 43, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 648}, {"name": "SpikeMechaWinloop", "fileName": "spike_mecha_win.scw", "startFrame": 43, "endFrame": 63, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 649}, {"name": "SpikeMechaLose", "fileName": "spike_mecha_lose.scw", "startFrame": null, "endFrame": 79, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 650}, {"name": "SpikeMechaLoseloop", "fileName": "spike_mecha_lose.scw", "startFrame": 80, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 1, "id": 651}, {"name": "TickIdle", "fileName": "tick_idle.scw", "startFrame": 1, "endFrame": 47, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 652}, {"name": "TickWalk", "fileName": "tick_walk.scw", "startFrame": 1, "endFrame": 21, "speed": 125, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 653}, {"name": "TickWin", "fileName": "tick_win.scw", "startFrame": 1, "endFrame": 97, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 654}, {"name": "TickWinloop", "fileName": "tick_win.scw", "startFrame": 97, "endFrame": 143, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 655}, {"name": "TickProfile", "fileName": "tick_idle.scw", "startFrame": 16, "endFrame": 16, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 656}, {"name": "TickPrimary", "fileName": "tick_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 25, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 657}, {"name": "TickSecondary", "fileName": "tick_ult.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 25, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 658}, {"name": "TickRecoil", "fileName": "tick_attack.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 659}, {"name": "TickUltRecoil", "fileName": "tick_ult.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 300, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 660}, {"name": "TickLose", "fileName": "tick_lose.scw", "startFrame": 1, "endFrame": 74, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 661}, {"name": "TickLoseloop", "fileName": "tick_lose.scw", "startFrame": 74, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 662}, {"name": "BombheadIdle", "fileName": "bombhead_idle.scw", "startFrame": 1, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 663}, {"name": "TntDudeMechaIdle", "fileName": "dynamike_mecha_idle.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 664}, {"name": "TntDudeMechaWalk", "fileName": "dynamike_mecha_walk.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 665}, {"name": "TntDudeMechaPrimary", "fileName": "dynamike_mecha_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "chest_s#4", "id": 666}, {"name": "TntDudeMechaRecoil", "fileName": "dynamike_mecha_attack.scw", "startFrame": 5, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "chest_s#4", "id": 667}, {"name": "TntDudeMechaSecondary", "fileName": "dynamike_mecha_ult.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "chest_s#4", "id": 668}, {"name": "TntDudeMechaSecondaryRecoil", "fileName": "dynamike_mecha_ult.scw", "startFrame": 5, "endFrame": 25, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "chest_s#4", "id": 669}, {"name": "TntDudeMechaWin", "fileName": "dynamike_mecha_win.scw", "startFrame": 1, "endFrame": 44, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 670}, {"name": "TntDudeMechaWinloop", "fileName": "dynamike_mecha_win.scw", "startFrame": 45, "endFrame": 74, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 671}, {"name": "TntDudeMechaLose", "fileName": "dynamike_mecha_lose.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 672}, {"name": "TntDudeMechaLoseloop", "fileName": "dynamike_mecha_lose.scw", "startFrame": 70, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 673}, {"name": "CarlHogriderIdle", "fileName": "carl_hogrider_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 674}, {"name": "CarlHogriderWalk", "fileName": "carl_hogrider_walk.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 675}, {"name": "CarlHogriderAttack", "fileName": "carl_hogrider_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 676}, {"name": "CarlHogriderAttackRecoil", "fileName": "carl_hogrider_attack.scw", "startFrame": 5, "endFrame": 35, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 677}, {"name": "CarlHogriderSecondary", "fileName": "carl_hogrider_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": true, "priority": 5, "id": 678}, {"name": "CarlHogriderSecondaryRecoil", "fileName": "carl_hogrider_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 679}, {"name": "CarlHogriderReload", "fileName": "carl_hogrider_attack.scw", "startFrame": 17, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 680}, {"name": "CarlHogriderPushback", "fileName": "carl_hogrider_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 300, "autoFadeMs": 500, "looping": null, "priority": 5, "id": 681}, {"name": "CarlHogriderWin", "fileName": "carl_hogrider_win.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": 1000, "autoFadeMs": 500, "looping": null, "priority": null, "id": 682}, {"name": "CarlHogriderWinloop", "fileName": "carl_hogrider_winloop.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 2000, "transitionOutMs": 100, "autoFadeMs": 500, "looping": true, "priority": null, "id": 683}, {"name": "CarlHogriderLose", "fileName": "carl_hogrider_lose.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 1000, "autoFadeMs": 500, "looping": null, "priority": null, "id": 684}, {"name": "CarlHogriderLoseloop", "fileName": "carl_hogrider_loseloop.scw", "startFrame": 1, "endFrame": 80, "speed": null, "transitionInMs": 2000, "transitionOutMs": 100, "autoFadeMs": 500, "looping": true, "priority": null, "id": 685}, {"name": "CarlHogriderProfile", "fileName": "carl_hogrider_cam.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 686}, {"name": "TaraIdle", "fileName": "tara_idle.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": 200, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 687}, {"name": "TaraWalk", "fileName": "tara_walk.scw", "startFrame": 1, "endFrame": 20, "speed": 80, "transitionInMs": 200, "transitionOutMs": null, "autoFadeMs": 200, "looping": true, "priority": 1, "id": 688}, {"name": "TaraPrimary", "fileName": "tara_attack.scw", "startFrame": 1, "endFrame": 4, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 689}, {"name": "TaraRecoil", "fileName": "tara_attack.scw", "startFrame": 4, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 690}, {"name": "TaraReload", "fileName": "tara_idle.scw", "startFrame": 1, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 691}, {"name": "TaraSecondary", "fileName": "tara_ult.scw", "startFrame": 1, "endFrame": 4, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 692}, {"name": "TaraSecondaryRecoil", "fileName": "tara_ult.scw", "startFrame": 4, "endFrame": 22, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 693}, {"name": "TaraWin", "fileName": "tara_win.scw", "startFrame": 1, "endFrame": 74, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 694}, {"name": "TaraWinloop", "fileName": "tara_win.scw", "startFrame": 75, "endFrame": 125, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 695}, {"name": "TaraLose", "fileName": "tara_lose.scw", "startFrame": 1, "endFrame": 97, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 696}, {"name": "TaraLoseloop", "fileName": "tara_lose.scw", "startFrame": 98, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 697}, {"name": "TaraProfile", "fileName": "tara_win.scw", "startFrame": 34, "endFrame": 34, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 698}, {"name": "BullGuyHairProfile", "fileName": "bull_viking_win.scw", "startFrame": 91, "endFrame": 91, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 699}, {"name": "TurretRedDragonIdle", "fileName": "turret_jessie_red_dragon_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 700}, {"name": "TurretRedDragon", "fileName": "turret_jessie_red_dragon_geo.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 701}, {"name": "TurretRedDragonAttack", "fileName": "turret_jessie_red_dragon_attack.scw", "startFrame": null, "endFrame": -1, "speed": 80, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 4, "id": 702}, {"name": "TurretRedDragonSpawn", "fileName": "turret_jessie_red_dragon_spawn.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": 3, "id": 703}, {"name": "8bitIdle", "fileName": "8bit_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 704}, {"name": "8BitWalk", "fileName": "8bit_walk.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 705}, {"name": "8bitAttack", "fileName": "8bit_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": 50, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 706}, {"name": "8bitRecoil", "fileName": "8bit_attack.scw", "startFrame": 5, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 250, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 707}, {"name": "8bitReload", "fileName": "8bit_reload.scw", "startFrame": null, "endFrame": 13, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 150, "looping": null, "priority": "hips_s#1+L_upperLeg_s#0+R_upperLeg_s#0+L_clavicle_s#4+L_shoulder_s#4+L_elbow_s#4+L_forearm_twist_s#4+L_wrist_s#4+R_clavicle_s#0+R_shoulder_s#0+R_elbow_s#0", "id": 708}, {"name": "8bitPushback", "fileName": "8bit_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": null, "id": 709}, {"name": "8bitWin", "fileName": "8bit_win.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 710}, {"name": "8bitWinloop", "fileName": "8bit_win.scw", "startFrame": 71, "endFrame": 99, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 711}, {"name": "8bitProfile", "fileName": "8bit_base_cam.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 712}, {"name": "8bitLose", "fileName": "8bit_lose.scw", "startFrame": 1, "endFrame": 99, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 713}, {"name": "8bitLoseloop", "fileName": "8bit_lose.scw", "startFrame": 100, "endFrame": 139, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 714}, {"name": "8bitTurretIdle", "fileName": "8bit_turret_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 715}, {"name": "8bitTurretSpawn", "fileName": "8bit_turret_spawn.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 716}, {"name": "FrankReloading", "fileName": "frank_idle.scw", "startFrame": null, "endFrame": 6, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": null, "id": 717}, {"name": "SandyIdle", "fileName": "sandy_idle.scw", "startFrame": 1, "endFrame": 128, "speed": null, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": 5, "id": 718}, {"name": "LouchadorRudoPortrait", "fileName": "primo_elrudo_portrait.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 719}, {"name": "SandyWalk", "fileName": "sandy_walk.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": 500, "transitionOutMs": 500, "autoFadeMs": null, "looping": true, "priority": 1, "id": 720}, {"name": "SandyAttack", "fileName": "sandy_attack.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 721}, {"name": "SandyRecoil", "fileName": "sandy_attack.scw", "startFrame": null, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 722}, {"name": "SandyReload", "fileName": "sandy_idle.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 723}, {"name": "LuchadorRudoWin", "fileName": "primo_elrudo_win.scw", "startFrame": null, "endFrame": 117, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 724}, {"name": "SandyWin", "fileName": "sandy_win.scw", "startFrame": 1, "endFrame": 192, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 725}, {"name": "SandyWinloop", "fileName": "sandy_win.scw", "startFrame": 193, "endFrame": 320, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 726}, {"name": "LuchadorReyWin", "fileName": "primo_rey_win.scw", "startFrame": null, "endFrame": 153, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 727}, {"name": "LuchadorReyWinloop", "fileName": "primo_rey_win.scw", "startFrame": 154, "endFrame": 198, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 728}, {"name": "LuchadorRudoWinloop", "fileName": "primo_elrudo_win.scw", "startFrame": 118, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 729}, {"name": "LuchadorReyIdle", "fileName": "primo_rey_idle.scw", "startFrame": 1, "endFrame": 49, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": null, "id": 730}, {"name": "LuchadorReyWalk", "fileName": "primo_rey_walk.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": 150, "transitionOutMs": 150, "autoFadeMs": null, "looping": true, "priority": 1, "id": 731}, {"name": "LuchadorReyPrimary", "fileName": "primo_rey_attack.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": 1, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 732}, {"name": "LuchadorReyRecoil", "fileName": "primo_rey_attack.scw", "startFrame": 5, "endFrame": 12, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 733}, {"name": "LuchadorReyRecoil2", "fileName": "primo_rey_attack.scw", "startFrame": 16, "endFrame": 24, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 734}, {"name": "LuchadorReySecondary", "fileName": "primo_rey_super.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": null, "priority": null, "id": 735}, {"name": "SandyLose", "fileName": "sandy_win.scw", "startFrame": 193, "endFrame": 320, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 736}, {"name": "SandyPushBack", "fileName": "sandy_pushback.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": null, "id": 737}, {"name": "LuchadorReyLose", "fileName": "primo_rey_lose.scw", "startFrame": 1, "endFrame": 41, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 738}, {"name": "LuchadorReyLoseloop", "fileName": "primo_rey_lose.scw", "startFrame": 42, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 739}, {"name": "SandyProfile", "fileName": "sandy_win.scw", "startFrame": 220, "endFrame": 220, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 740}, {"name": "TntDudeMechaProfile", "fileName": "dynamike_mecha_idle.scw", "startFrame": null, "endFrame": null, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 741}, {"name": "EmzIdle", "fileName": "emz_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 742}, {"name": "EmzWalk", "fileName": "emz_walk.scw", "startFrame": null, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 743}, {"name": "EmzPrimary", "fileName": "emz_attack.scw", "startFrame": 2, "endFrame": 6, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#5+L_upperLeg_s#0+R_upperLeg_s#0", "id": 744}, {"name": "EmzRecoil", "fileName": "emz_attack.scw", "startFrame": 7, "endFrame": 22, "speed": null, "transitionInMs": 50, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#5+L_upperLeg_s#0+R_upperLeg_s#0", "id": 745}, {"name": "EmzReload", "fileName": "emz_reload.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#1+L_upperLeg_s#0+R_upperLeg_s#0+L_clavicle_s#4+L_shoulder_s#4+L_elbow_s#4+L_forearm_twist_s#4+L_wrist_s#4+R_clavicle_s#0+R_shoulder_s#0+R_elbow_s#0", "id": 746}, {"name": "EmzPushback", "fileName": "emz_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": null, "id": 747}, {"name": "EmzSecondary", "fileName": "emz_idle.scw", "startFrame": null, "endFrame": null, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 748}, {"name": "EmzSecondaryRecoil", "fileName": "emz_idle.scw", "startFrame": null, "endFrame": null, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 749}, {"name": "EmzWin", "fileName": "emz_win.scw", "startFrame": null, "endFrame": 171, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 750}, {"name": "EmzWinloop", "fileName": "emz_win.scw", "startFrame": 172, "endFrame": 231, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 751}, {"name": "EmzLose", "fileName": "emz_lose.scw", "startFrame": null, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 752}, {"name": "EmzLoseloop", "fileName": "emz_lose.scw", "startFrame": 50, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 753}, {"name": "EmzProfile", "fileName": "emz_win.scw", "startFrame": 77, "endFrame": 77, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 754}, {"name": "ShellyWitchIdle", "fileName": "shelly_witch_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 755}, {"name": "ShellyWitchWalk", "fileName": "shelly_witch_walk.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 756}, {"name": "ShellyWitchPrimarySkill", "fileName": "shelly_witch_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 757}, {"name": "ShellyWitchSecondarySkill", "fileName": "shelly_witch_attack.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 758}, {"name": "ShellyWitchRecoil", "fileName": "shelly_witch_attack.scw", "startFrame": 6, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 759}, {"name": "ShellyWitchReload", "fileName": "shelly_witch_reload.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#0+L_upperLeg_s#0+R_upperLeg_s#0+R_clavicle_s#4+R_shoulder_s#4+R_elbow_s#4+R_forearm_twist_s#4+R_wrist_s#4+L_clavicle_s#4+L_shoulder_s#4+L_elbow_s#4+L_forearm_twist_s#4+L_wrist_s#4", "id": 760}, {"name": "ShellyWitchHappy", "fileName": "shelly_witch_win.scw", "startFrame": null, "endFrame": 180, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 761}, {"name": "ShellyWitchHappyLoop", "fileName": "shelly_witch_win.scw", "startFrame": 181, "endFrame": 220, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 762}, {"name": "ShellyWitchLose", "fileName": "shelly_witch_lose.scw", "startFrame": 1, "endFrame": 50, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 763}, {"name": "ShellyWitchLoseloop", "fileName": "shelly_witch_lose.scw", "startFrame": 50, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 764}, {"name": "ShellyWitchProfile", "fileName": "shelly_witch_win.scw", "startFrame": 200, "endFrame": 200, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 765}, {"name": "JunkerKnightDarkIdle", "fileName": "jessie_knightdark_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 766}, {"name": "JunkerKnightDarkPrimary", "fileName": "jessie_knight_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 1, "looping": null, "priority": "spine_lower_s#3", "id": 767}, {"name": "JunkerKnightDarkUltiAttack", "fileName": "jessie_knightdark_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 10, "looping": null, "priority": 5, "id": 768}, {"name": "JunkerKnightDarkRecoil", "fileName": "jessie_knight_attack.scw", "startFrame": 5, "endFrame": 15, "speed": null, "transitionInMs": 25, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#4", "id": 769}, {"name": "JunkerKnightDarkUltiRecoil", "fileName": "jessie_knightdark_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 770}, {"name": "JunkerKnightDarkReload", "fileName": "jessie_knightdark_idle.scw", "startFrame": 1, "endFrame": 29, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "ChestBone#2", "id": 771}, {"name": "JunkerKnightDarkPushback", "fileName": "jessie_knight_pushback.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 772}, {"name": "JunkerKnightDarkWin", "fileName": "jessie_knightdark_win.scw", "startFrame": 1, "endFrame": 100, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 773}, {"name": "JunkerKnightDarkWinloop", "fileName": "jessie_knightdark_win.scw", "startFrame": 100, "endFrame": 130, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 774}, {"name": "JunkerKnightDarkBattleWin", "fileName": "jessie_knightdark_battlewin.scw", "startFrame": 1, "endFrame": 107, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 775}, {"name": "JunkerKnightDarkBattleWinloop", "fileName": "jessie_knightdark_battlewin.scw", "startFrame": 107, "endFrame": 139, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 776}, {"name": "JunkerKnightDarkLose", "fileName": "jessie_knight_lose.scw", "startFrame": 1, "endFrame": 56, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 777}, {"name": "JunkerKnightDarkLoseloop", "fileName": "jessie_knight_lose.scw", "startFrame": 56, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 778}, {"name": "JunkerKnightDarkPortrait", "fileName": "jessie_knightdark_idle.scw", "startFrame": 1, "endFrame": 1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 779}, {"name": "LeonWolfWin", "fileName": "leon_wolf_win.scw", "startFrame": null, "endFrame": 145, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 780}, {"name": "LeonWolfIdle", "fileName": "leon_wolf_idle.scw", "startFrame": null, "endFrame": 29, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 781}, {"name": "LeonWolfWalk", "fileName": "leon_wolf_walk.scw", "startFrame": null, "endFrame": 29, "speed": 150, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 782}, {"name": "LeonWolfHappyLoop", "fileName": "leon_wolf_win.scw", "startFrame": 146, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 783}, {"name": "LeonWolfAttack", "fileName": "leon_wolf_attack.scw", "startFrame": 1, "endFrame": 3, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 784}, {"name": "LeonWolfSecondary", "fileName": "leon_wolf_idle.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 785}, {"name": "LeonWolfRecoil", "fileName": "leon_wolf_attack.scw", "startFrame": 3, "endFrame": 7, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 786}, {"name": "LeonWolfRecoil2", "fileName": "leon_wolf_attack.scw", "startFrame": 7, "endFrame": 11, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 10, "looping": null, "priority": "spine_lower_s#4", "id": 787}, {"name": "LeonWolfReload", "fileName": "leon_wolf_idle.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "ChestBone#2", "id": 788}, {"name": "LeonWolfPushBack", "fileName": "leon_wolf_pushback.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 789}, {"name": "LeonWolfLose", "fileName": "leon_wolf_lose.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 790}, {"name": "LeonWolfLoseLoop", "fileName": "leon_wolf_lose.scw", "startFrame": 39, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 791}, {"name": "LeonWolfProfile", "fileName": "leon_wolf_portrait.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 792}, {"name": "LuchadorBrownIdle", "fileName": "primo_brown_idle.scw", "startFrame": 1, "endFrame": 49, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": null, "id": 793}, {"name": "LuchadorBrownWalk", "fileName": "primo_brown_walk.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": 150, "transitionOutMs": 150, "autoFadeMs": null, "looping": true, "priority": 1, "id": 794}, {"name": "LuchadorBrownPrimary", "fileName": "primo_brown_attack.scw", "startFrame": null, "endFrame": 5, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 795}, {"name": "LuchadorBrownRecoil1", "fileName": "primo_brown_attack.scw", "startFrame": 5, "endFrame": 12, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 796}, {"name": "LuchadorBrownRecoil2", "fileName": "primo_brown_attack.scw", "startFrame": 17, "endFrame": 24, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 50, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 797}, {"name": "LuchadorBrownPushback", "fileName": "primo_brown_pushback.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 50, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 798}, {"name": "LuchadorBrownSecondary", "fileName": "primo_brown_super.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": null, "priority": 5, "id": 799}, {"name": "LuchadorBrownWin", "fileName": "primo_brown_win.scw", "startFrame": null, "endFrame": 98, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 800}, {"name": "LuchadorBrownWinloop", "fileName": "primo_brown_win.scw", "startFrame": 99, "endFrame": 159, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 801}, {"name": "LuchadorBrownLose", "fileName": "primo_brown_lose.scw", "startFrame": null, "endFrame": 44, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 802}, {"name": "LuchadorBrownLoseloop", "fileName": "primo_brown_lose.scw", "startFrame": 45, "endFrame": 143, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 803}, {"name": "LeonSallyWin", "fileName": "leon_sally_win.scw", "startFrame": 1, "endFrame": 84, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 804}, {"name": "LeonSallyWinloop", "fileName": "leon_sally_win.scw", "startFrame": 84, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 805}, {"name": "LuchadorBrownProfile", "fileName": "primo_brown_portrait.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 806}, {"name": "CarlHotrodProfile", "fileName": "carl_hotrod_cam.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 807}, {"name": "GenePirateIdle", "fileName": "gene_pirate_anim_idle.scw", "startFrame": null, "endFrame": 79, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 808}, {"name": "GenePirateWalk", "fileName": "gene_pirate_anim_walk.scw", "startFrame": 1, "endFrame": 29, "speed": 120, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 809}, {"name": "GenePirateAttack", "fileName": "gene_pirate_anim_attack.scw", "startFrame": 1, "endFrame": 5, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 810}, {"name": "GenePirateAttackRecoil", "fileName": "gene_pirate_anim_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": 50, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 811}, {"name": "GenePirateSecondary", "fileName": "gene_pirate_anim_super.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 812}, {"name": "GenePirateSecondaryRecoil", "fileName": "gene_pirate_anim_super.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 813}, {"name": "GenePirateReload", "fileName": "gene_pirate_anim_reload.scw", "startFrame": 1, "endFrame": 25, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#2", "id": 814}, {"name": "GenePirateWin", "fileName": "gene_pirate_anim_win.scw", "startFrame": 1, "endFrame": 119, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 815}, {"name": "GenePirateWinloop", "fileName": "gene_pirate_anim_win.scw", "startFrame": 120, "endFrame": 204, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 816}, {"name": "GenePirateLose", "fileName": "gene_pirate_anim_lose.scw", "startFrame": null, "endFrame": 129, "speed": null, "transitionInMs": 100, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 817}, {"name": "GenePirateLoseloop", "fileName": "gene_pirate_anim_lose.scw", "startFrame": 130, "endFrame": 224, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 818}, {"name": "TntDudeSantaRopeLoop", "fileName": "dynamike_santa_rope_loop.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 819}, {"name": "CarlPirateIdle", "fileName": "carl_pirate_idle.scw", "startFrame": null, "endFrame": 111, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": null, "id": 820}, {"name": "CarlPirateWalk", "fileName": "carl_pirate_walk.scw", "startFrame": null, "endFrame": 62, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": null, "looping": true, "priority": 1, "id": 821}, {"name": "CarlPirateAttack", "fileName": "carl_pirate_attack.scw", "startFrame": 2, "endFrame": 6, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 822}, {"name": "CarlPirateAttackRecoil", "fileName": "carl_pirate_attack.scw", "startFrame": 7, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 823}, {"name": "CarlPirateSecondary", "fileName": "carl_pirate_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": 200, "transitionOutMs": 200, "autoFadeMs": 200, "looping": true, "priority": 5, "id": 824}, {"name": "CarlPirateSecondaryRecoil", "fileName": "carl_pirate_super.scw", "startFrame": 1, "endFrame": 59, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 5, "id": 825}, {"name": "CarlPirateReload", "fileName": "carl_pirate_reload.scw", "startFrame": 1, "endFrame": 15, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 826}, {"name": "CarlPiratePushback", "fileName": "carl_pirate_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 827}, {"name": "CarlPirateWin", "fileName": "carl_pirate_win.scw", "startFrame": null, "endFrame": 100, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 828}, {"name": "CarlPirateWinloop", "fileName": "carl_pirate_win.scw", "startFrame": 101, "endFrame": 200, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 829}, {"name": "CarlPirateLose", "fileName": "carl_pirate_lose.scw", "startFrame": null, "endFrame": 113, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 830}, {"name": "CarlPirateLoseloop", "fileName": "carl_pirate_lose.scw", "startFrame": 114, "endFrame": 175, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 831}, {"name": "CarlPirateProfile", "fileName": "carl_pirate_idle.scw", "startFrame": 30, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 832}, {"name": "BeaIdle", "fileName": "bea_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 833}, {"name": "BeaWalk", "fileName": "bea_walk.scw", "startFrame": 1, "endFrame": 26, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 834}, {"name": "BeaAttack", "fileName": "bea_attack.scw", "startFrame": null, "endFrame": 4, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 835}, {"name": "BeaRecoil", "fileName": "bea_attack.scw", "startFrame": 5, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 836}, {"name": "BeaReload", "fileName": "bea_reload.scw", "startFrame": null, "endFrame": 20, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#0+L_clavicle_s#2+R_clavicle_s#2", "id": 837}, {"name": "BeaPushback", "fileName": "bea_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 25, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": null, "id": 838}, {"name": "GunslingerPirateWin", "fileName": "colt_pirate_win.scw", "startFrame": null, "endFrame": 58, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 839}, {"name": "GunslingerPirateWinloop", "fileName": "colt_pirate_win.scw", "startFrame": 59, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 840}, {"name": "BeaWin", "fileName": "bea_win.scw", "startFrame": null, "endFrame": 120, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 841}, {"name": "BeaWinloop", "fileName": "bea_win.scw", "startFrame": 121, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 842}, {"name": "BeaPortrait", "fileName": "bea_portrait.scw", "startFrame": null, "endFrame": null, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 843}, {"name": "MaxIdle", "fileName": "max_idle.scw", "startFrame": 1, "endFrame": 30, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": null, "looping": true, "priority": null, "id": 844}, {"name": "MaxWalk", "fileName": "max_walk.scw", "startFrame": 1, "endFrame": 20, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": null, "looping": true, "priority": 1, "id": 845}, {"name": "MaxPrimary", "fileName": "max_attack.scw", "startFrame": null, "endFrame": 4, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 846}, {"name": "MaxRecoil", "fileName": "max_attack.scw", "startFrame": 5, "endFrame": 21, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 847}, {"name": "MaxSecondary", "fileName": "max_super.scw", "startFrame": null, "endFrame": null, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": "hips_s#3+L_upperLeg_s#0+R_upperLeg_s#0", "id": 848}, {"name": "MaxSecondaryRecoil", "fileName": "max_super.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 50, "transitionOutMs": 50, "autoFadeMs": 50, "looping": null, "priority": "hips_s#4+L_upperLeg_s#0+R_upperLeg_s#0", "id": 849}, {"name": "BeeSmallIdle", "fileName": "bee_small_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 850}, {"name": "BeeBigIdle", "fileName": "bee_big_idle.scw", "startFrame": -1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 851}, {"name": "BeeSmallReload", "fileName": "bee_small_reload.scw", "startFrame": 1, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 852}, {"name": "BeeBigReload", "fileName": "bee_big_reload.scw", "startFrame": 1, "endFrame": 13, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 200, "looping": null, "priority": 5, "id": 853}, {"name": "PocoPirateIdle", "fileName": "poco_pirate_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 854}, {"name": "PocoPirateWalk", "fileName": "poco_pirate_walk.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 855}, {"name": "PocoPirateHappy", "fileName": "poco_pirate_win.scw", "startFrame": null, "endFrame": 30, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 856}, {"name": "PocoPirateHappyLoop", "fileName": "poco_pirate_win.scw", "startFrame": 30, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 857}, {"name": "PocoPirateProfile", "fileName": "poco_pirate_idle.scw", "startFrame": 20, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 858}, {"name": "GunslingerPirateIdle", "fileName": "colt_pirate_idle.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": null, "id": 859}, {"name": "GunslingerPirateWalk", "fileName": "colt_pirate_walk.scw", "startFrame": null, "endFrame": -1, "speed": 125, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": null, "looping": true, "priority": 1, "id": 860}, {"name": "GunslingerPirateLose", "fileName": "colt_pirate_lose.scw", "startFrame": null, "endFrame": 67, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 861}, {"name": "GunslingerPirateLoseloop", "fileName": "colt_pirate_lose.scw", "startFrame": 68, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 862}, {"name": "GunslingerPirateProfile", "fileName": "colt_pirate_idle.scw", "startFrame": 90, "endFrame": 90, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 863}, {"name": "MaxWin", "fileName": "max_win.scw", "startFrame": null, "endFrame": 152, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": 5, "id": 864}, {"name": "MaxWinloop", "fileName": "max_win.scw", "startFrame": 153, "endFrame": 181, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": 1, "id": 865}, {"name": "BeaLose", "fileName": "bea_lose.scw", "startFrame": null, "endFrame": 21, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 866}, {"name": "BeaLoseloop", "fileName": "bea_lose.scw", "startFrame": 22, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 867}, {"name": "MaxLose", "fileName": "max_lose.scw", "startFrame": 1, "endFrame": 70, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 868}, {"name": "MaxLoseloop", "fileName": "max_lose.scw", "startFrame": 71, "endFrame": 100, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 869}, {"name": "MaxPortrait", "fileName": "max_portrait.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 870}, {"name": "MaxReload", "fileName": "max_reload.scw", "startFrame": 3, "endFrame": 20, "speed": null, "transitionInMs": null, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": "spine_lower_s#0+L_clavicle_s#2+R_clavicle_s#2", "id": 871}, {"name": "MaxPushback", "fileName": "max_pushback.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": 50, "transitionOutMs": 100, "autoFadeMs": 50, "looping": null, "priority": null, "id": 872}, {"name": "GunslingerPirateReload", "fileName": "colt_pirate_idle.scw", "startFrame": null, "endFrame": 10, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": 100, "looping": null, "priority": null, "id": 873}, {"name": "PocoPirateLose", "fileName": "poco_pirate_lose.scw", "startFrame": null, "endFrame": 15, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": null, "priority": null, "id": 874}, {"name": "PocoPirateLoseloop", "fileName": "poco_pirate_lose.scw", "startFrame": 15, "endFrame": -1, "speed": null, "transitionInMs": null, "transitionOutMs": null, "autoFadeMs": null, "looping": true, "priority": null, "id": 875}, {"name": "GunslingerPiratePrimary", "fileName": "colt_pirate_attack.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 200, "autoFadeMs": 100, "looping": null, "priority": "spine_lower_s#3", "id": 876}, {"name": "GunslingerPirateRecoil", "fileName": "colt_pirate_recoil1.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#4", "id": 877}, {"name": "GunslingerPirateRecoil2", "fileName": "colt_pirate_recoil2.scw", "startFrame": 1, "endFrame": 10, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 200, "looping": null, "priority": "spine_lower_s#4", "id": 878}, {"name": "GunslingerPiratePushBack", "fileName": "colt_pirate_pushback.scw", "startFrame": null, "endFrame": -1, "speed": null, "transitionInMs": 100, "transitionOutMs": 100, "autoFadeMs": 100, "looping": null, "priority": 5, "id": 879}], "billing_packages": [{"name": "com.supercell.laser.gempack0", "tID": "Fistful of Gems", "type": 1, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 30, "uSD": 199, "order": 1, "iconExportName": "shop_gem_0", "frameNumber": 0, "starterPackNumber": null, "bigBoxCount": null, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": null, "coins": null, "refundGemValue": 30, "brawlPassSeason": null, "id": 2, "rawTID": "SHOP_GEM_PACK_1_TITLE"}, {"name": "com.supercell.laser.gempack1", "tID": "Pouch of Gems", "type": 1, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 80, "uSD": 499, "order": 2, "iconExportName": "shop_gem_1", "frameNumber": 1, "starterPackNumber": null, "bigBoxCount": null, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": null, "coins": null, "refundGemValue": 80, "brawlPassSeason": null, "id": 3, "rawTID": "SHOP_GEM_PACK_2_TITLE"}, {"name": "com.supercell.laser.gempack2", "tID": "Satchel of Gems", "type": 1, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 170, "uSD": 999, "order": 3, "iconExportName": "shop_gem_2", "frameNumber": 2, "starterPackNumber": null, "bigBoxCount": null, "xpLevelReq": null, "valueFactor": null, "labelTID": "POPULAR", "labelValue": null, "bg": null, "decor": null, "isPromotion": null, "coins": null, "refundGemValue": 170, "brawlPassSeason": null, "id": 4, "rawTID": "SHOP_GEM_PACK_3_TITLE", "rawLabelTID": "SHOP_LABEL_POPULAR"}, {"name": "com.supercell.laser.gempack3", "tID": "Bucket of Gems", "type": 1, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 360, "uSD": 1999, "order": 4, "iconExportName": "shop_gem_3", "frameNumber": 3, "starterPackNumber": null, "bigBoxCount": null, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": null, "coins": null, "refundGemValue": 360, "brawlPassSeason": null, "id": 5, "rawTID": "SHOP_GEM_PACK_4_TITLE"}, {"name": "com.supercell.laser.gempack4", "tID": "Crate of Gems", "type": 1, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 950, "uSD": 4999, "order": 5, "iconExportName": "shop_gem_4", "frameNumber": 4, "starterPackNumber": null, "bigBoxCount": null, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": null, "coins": null, "refundGemValue": 950, "brawlPassSeason": null, "id": 6, "rawTID": "SHOP_GEM_PACK_5_TITLE"}, {"name": "com.supercell.laser.gempack5", "tID": "Haul of Gems", "type": 1, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 2000, "uSD": 9999, "order": 6, "iconExportName": "shop_gem_5", "frameNumber": 5, "starterPackNumber": null, "bigBoxCount": null, "xpLevelReq": null, "valueFactor": null, "labelTID": "BEST VALUE", "labelValue": null, "bg": null, "decor": null, "isPromotion": null, "coins": null, "refundGemValue": 2000, "brawlPassSeason": null, "id": 7, "rawTID": "SHOP_GEM_PACK_6_TITLE", "rawLabelTID": "SHOP_LABEL_BEST_VALUE"}, {"name": "com.supercell.laser.starterpack1", "tID": "Level 5 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 299, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 1, "bigBoxCount": 1, "xpLevelReq": 5, "valueFactor": 2, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 150, "refundGemValue": 98, "brawlPassSeason": null, "id": 8, "rawTID": "STARTER_PACK_1"}, {"name": "com.supercell.laser.starterpack2", "tID": "Level 15 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 399, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 2, "bigBoxCount": 1, "xpLevelReq": 15, "valueFactor": 2, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 450, "refundGemValue": 133, "brawlPassSeason": null, "id": 9, "rawTID": "STARTER_PACK_2"}, {"name": "com.supercell.laser.starterpack3", "tID": "Level 25 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 30, "uSD": 499, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 3, "bigBoxCount": 2, "xpLevelReq": 25, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 500, "refundGemValue": 249, "brawlPassSeason": null, "id": 10, "rawTID": "STARTER_PACK_3"}, {"name": "com.supercell.laser.starterpack4", "tID": "Level 35 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 30, "uSD": 599, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 4, "bigBoxCount": 2, "xpLevelReq": 35, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 900, "refundGemValue": 296, "brawlPassSeason": null, "id": 11, "rawTID": "STARTER_PACK_4"}, {"name": "com.supercell.laser.xmas2018pack", "tID": "Holiday Pack", "type": 3, "disabled": true, "existsApple": true, "existsAndroid": true, "diamonds": 170, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 3, "decor": 1, "isPromotion": null, "coins": null, "refundGemValue": 330, "brawlPassSeason": null, "id": 12, "rawTID": "IAP_XMAS2018_PACK"}, {"name": "com.supercell.laser.starterpackx", "tID": "Welcome Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 170, "uSD": 499, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 0, "bigBoxCount": 2, "xpLevelReq": 0, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 3, "isPromotion": null, "coins": null, "refundGemValue": 330, "brawlPassSeason": null, "id": 13, "rawTID": "STARTER_PACK_0"}, {"name": "com.supercell.laser.starterpack5", "tID": "Level 50 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 30, "uSD": 699, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 5, "bigBoxCount": 3, "xpLevelReq": 50, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 700, "refundGemValue": 352, "brawlPassSeason": null, "id": 14, "rawTID": "STARTER_PACK_5"}, {"name": "com.supercell.laser.starterpack6", "tID": "Level 75 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 80, "uSD": 799, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 6, "bigBoxCount": 3, "xpLevelReq": 75, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 1800, "refundGemValue": 532, "brawlPassSeason": null, "id": 15, "rawTID": "STARTER_PACK_6"}, {"name": "com.supercell.laser.starterpack7", "tID": "Level 100 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 350, "uSD": 899, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 7, "bigBoxCount": 0, "xpLevelReq": 100, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 2100, "refundGemValue": 597, "brawlPassSeason": null, "id": 16, "rawTID": "STARTER_PACK_7"}, {"name": "com.supercell.laser.lny2019pack", "tID": "Lunar Brawl Offer", "type": 3, "disabled": true, "existsApple": true, "existsAndroid": true, "diamonds": 170, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 2, "isPromotion": null, "coins": 1500, "refundGemValue": 506, "brawlPassSeason": null, "id": 17, "rawTID": "IAP_LNY2019_PACK"}, {"name": "com.supercell.laser.march2019pack", "tID": "Refresher Pack", "type": 3, "disabled": true, "existsApple": true, "existsAndroid": true, "diamonds": 111, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 3, "isPromotion": null, "coins": 1111, "refundGemValue": 322, "brawlPassSeason": null, "id": 18, "rawTID": "IAP_REFRESHER_PACK"}, {"name": "com.supercell.laser.starterpack8", "tID": "Level 125 Pack", "type": 2, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 350, "uSD": 999, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": 8, "bigBoxCount": 0, "xpLevelReq": 125, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 0, "isPromotion": null, "coins": 2700, "refundGemValue": 668, "brawlPassSeason": null, "id": 19, "rawTID": "STARTER_PACK_8"}, {"name": "com.supercell.laser.goldenweek", "tID": "Golden Week Pack", "type": 3, "disabled": true, "existsApple": true, "existsAndroid": true, "diamonds": 170, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 4, "decor": 4, "isPromotion": null, "coins": 1500, "refundGemValue": 506, "brawlPassSeason": null, "id": 20, "rawTID": "IAP_GOLDENWEEK_PACK"}, {"name": "com.supercell.laser.retropolisgempack", "tID": "Retropolis Gem Pack", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 170, "uSD": 499, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 4, "decor": 5, "isPromotion": null, "coins": null, "refundGemValue": 250, "brawlPassSeason": null, "id": 21, "rawTID": "IAP_RETROPOLIS_PACK"}, {"name": "com.supercell.laser.retropoliscoins1", "tID": "Coin Pack (1/3)", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 0, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 5, "isPromotion": null, "coins": 2100, "refundGemValue": 247, "brawlPassSeason": null, "id": 22, "rawTID": "IAP_RETROCOIN_PACK_1"}, {"name": "com.supercell.laser.retropoliscoins2", "tID": "Coin Pack (2/3)", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 1, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 5, "isPromotion": null, "coins": 2100, "refundGemValue": 247, "brawlPassSeason": null, "id": 23, "rawTID": "IAP_RETROCOIN_PACK_2"}, {"name": "com.supercell.laser.retropoliscoins3", "tID": "Coin Pack (3/3)", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 2, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 5, "isPromotion": null, "coins": 2100, "refundGemValue": 247, "brawlPassSeason": null, "id": 24, "rawTID": "IAP_RETROCOIN_PACK_3"}, {"name": "com.supercell.laser.sprinkle0", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 25, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle1", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 1, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 26, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle2", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 27, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle3", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 28, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle4", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 29, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle5", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 30, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle6", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 31, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle7", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 32, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle8", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 33, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.sprinkle9", "tID": "Promo Code Pack", "type": 4, "disabled": null, "existsApple": false, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": null, "labelValue": null, "bg": null, "decor": null, "isPromotion": true, "coins": 0, "refundGemValue": 0, "brawlPassSeason": null, "id": 34, "rawTID": "PROMOCODE_PACK"}, {"name": "com.supercell.laser.som1", "tID": "Summer Offer", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 2, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 1700, "refundGemValue": 200, "brawlPassSeason": null, "id": 35, "rawTID": "IAP_SOM_PACK_1"}, {"name": "com.supercell.laser.som2", "tID": "Summer Offer", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 2, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 4200, "refundGemValue": 494, "brawlPassSeason": null, "id": 36, "rawTID": "IAP_SOM_PACK_2"}, {"name": "com.supercell.laser.som3", "tID": "Summer Offer", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 500, "uSD": 1999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 4, "xpLevelReq": null, "valueFactor": 2, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 820, "brawlPassSeason": null, "id": 37, "rawTID": "IAP_SOM_PACK_3"}, {"name": "com.supercell.laser.som4", "tID": "Summer Offer", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 250, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 4, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 2000, "refundGemValue": 805, "brawlPassSeason": null, "id": 38, "rawTID": "IAP_SOM_PACK_4"}, {"name": "com.supercell.laser.august1", "tID": "Summer Offer", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 50, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 4, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 2000, "refundGemValue": 605, "brawlPassSeason": null, "id": 39, "rawTID": "IAP_AUGUST_PACK_1"}, {"name": "com.supercell.laser.august2", "tID": "FAREWELL, SUMMER!", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 150, "uSD": 1999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 8, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 2000, "refundGemValue": 1025, "brawlPassSeason": null, "id": 40, "rawTID": "IAP_AUGUST_PACK_2"}, {"name": "com.supercell.laser.flash1", "tID": "A LITTLE EXTRA", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 100, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": "%\\nEXTRA", "labelValue": 25, "bg": 4, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 100, "brawlPassSeason": null, "id": 41, "rawTID": "IAP_FLASH_PACK_1", "rawLabelTID": "BEST_VALUE_EXTRA"}, {"name": "com.supercell.laser.flash2", "tID": "BIG VALUE", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 300, "uSD": 2999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 10, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 8000, "refundGemValue": 2041, "brawlPassSeason": null, "id": 42, "rawTID": "IAP_FLASH_PACK_2"}, {"name": "com.supercell.laser.moon191", "tID": "MOON FESTIVAL", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 100, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 2000, "refundGemValue": 495, "brawlPassSeason": null, "id": 43, "rawTID": "IAP_MOON_19_PACK_1"}, {"name": "com.supercell.laser.moon192", "tID": "MOON FESTIVAL", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 1250, "uSD": 4999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": "%\\nEXTRA", "labelValue": 30, "bg": 4, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 1250, "brawlPassSeason": null, "id": 44, "rawTID": "IAP_MOON_19_PACK_2", "rawLabelTID": "BEST_VALUE_EXTRA"}, {"name": "com.supercell.laser.b2s191", "tID": "BACK TO SCHOOL!", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 100, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 3, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 1500, "refundGemValue": 516, "brawlPassSeason": null, "id": 45, "rawTID": "IAP_B2S_19_PACK_1"}, {"name": "com.supercell.laser.b2s192", "tID": "BACK TO SCHOOL!", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 3500, "refundGemValue": 412, "brawlPassSeason": null, "id": 46, "rawTID": "IAP_B2S_19_PACK_2"}, {"name": "com.supercell.laser.b2s193", "tID": "BACK TO SCHOOL!", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 45, "uSD": 199, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": "%\\nEXTRA", "labelValue": 50, "bg": 4, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 45, "brawlPassSeason": null, "id": 47, "rawTID": "IAP_B2S_19_PACK_3", "rawLabelTID": "BEST_VALUE_EXTRA"}, {"name": "com.supercell.laser.cw191", "tID": "CYBER WEEK DEAL", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 199, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": null, "labelTID": "%\\nOFF!", "labelValue": 60, "bg": 1, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 80, "brawlPassSeason": null, "id": 48, "rawTID": "IAP_CYBER_WEEK_19_1", "rawLabelTID": "BEST_VALUE_DISCOUNT"}, {"name": "com.supercell.laser.cw192", "tID": "CYBER WEEK DEAL", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 2100, "refundGemValue": 247, "brawlPassSeason": null, "id": 49, "rawTID": "IAP_CYBER_WEEK_19_2"}, {"name": "com.supercell.laser.cw193", "tID": "CYBER WEEK DEAL", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 30, "uSD": 299, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 500, "refundGemValue": 249, "brawlPassSeason": null, "id": 50, "rawTID": "IAP_CYBER_WEEK_19_3"}, {"name": "com.supercell.laser.gstar2019", "tID": "WORLD FINALS PACK", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 150, "uSD": 4999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 12, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 6, "decor": 4, "isPromotion": null, "coins": 12000, "refundGemValue": 2522, "brawlPassSeason": null, "id": 51, "rawTID": "IAP_GSTAR2019_FINALS"}, {"name": "com.supercell.laser.bow191", "tID": "IT'S BRAWL-O-WEEN!", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 100, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 4, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 2100, "refundGemValue": 667, "brawlPassSeason": null, "id": 52, "rawTID": "IAP_BRAWLOWEEN_19_1"}, {"name": "com.supercell.laser.bow192", "tID": "TRICK OR ... COINS?", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 699, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 3000, "refundGemValue": 353, "brawlPassSeason": null, "id": 53, "rawTID": "IAP_BRAWLOWEEN_19_2"}, {"name": "com.supercell.laser.bow193", "tID": "ALL THE SKINS!", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 380, "uSD": 1499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": null, "labelTID": "%\\nOFF!", "labelValue": 25, "bg": 4, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 380, "brawlPassSeason": null, "id": 54, "rawTID": "IAP_BRAWLOWEEN_19_3", "rawLabelTID": "BEST_VALUE_DISCOUNT"}, {"name": "com.supercell.laser.arabic01", "tID": "PLAY IN ARABIC", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 30, "uSD": 199, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 480, "refundGemValue": 166, "brawlPassSeason": null, "id": 55, "rawTID": "IAP_ARABIC_19_1"}, {"name": "com.supercell.laser.arabic02", "tID": "PLAY IN ARABIC", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 2800, "refundGemValue": 329, "brawlPassSeason": null, "id": 56, "rawTID": "IAP_ARABIC_19_2"}, {"name": "com.supercell.laser.xmas190", "tID": "TIS THE SEASON", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 200, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 1200, "refundGemValue": 501, "brawlPassSeason": null, "id": 57, "rawTID": "IAP_XMAS_19_0"}, {"name": "com.supercell.laser.xmas191", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 80, "brawlPassSeason": null, "id": 58, "rawTID": "IAP_XMAS_19_1"}, {"name": "com.supercell.laser.xmas192", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 100, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 3, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 600, "refundGemValue": 411, "brawlPassSeason": null, "id": 59, "rawTID": "IAP_XMAS_19_2"}, {"name": "com.supercell.laser.xmas193", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 350, "uSD": 999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 2700, "refundGemValue": 828, "brawlPassSeason": null, "id": 60, "rawTID": "IAP_XMAS_19_3"}, {"name": "com.supercell.laser.xmas194", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 450, "uSD": 1999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 6, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 6000, "refundGemValue": 1636, "brawlPassSeason": null, "id": 61, "rawTID": "IAP_XMAS_19_4"}, {"name": "com.supercell.laser.cp1119", "tID": "COINS, COINS, COINS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 299, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 1250, "refundGemValue": 147, "brawlPassSeason": null, "id": 62, "rawTID": "IAP_COINPACK_11_19"}, {"name": "com.supercell.laser.xmas195", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 199, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 0, "refundGemValue": 160, "brawlPassSeason": null, "id": 63, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas196", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 150, "uSD": 699, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 4, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 900, "refundGemValue": 576, "brawlPassSeason": null, "id": 64, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas197", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 400, "uSD": 1299, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 3, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 3500, "refundGemValue": 1052, "brawlPassSeason": null, "id": 65, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas198", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 500, "uSD": 2499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 8, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 8000, "refundGemValue": 2081, "brawlPassSeason": null, "id": 66, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas199", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 299, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 2, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 700, "refundGemValue": 242, "brawlPassSeason": null, "id": 67, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas200", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 150, "uSD": 799, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 4, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 1700, "refundGemValue": 670, "brawlPassSeason": null, "id": 68, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas201", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 400, "uSD": 1499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 3, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 5100, "refundGemValue": 1240, "brawlPassSeason": null, "id": 69, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.xmas202", "tID": "HAPPY BRAWLIDAYS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 500, "uSD": 2999, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 8, "xpLevelReq": null, "valueFactor": 5, "labelTID": null, "labelValue": null, "bg": 7, "decor": 4, "isPromotion": null, "coins": 11500, "refundGemValue": 2493, "brawlPassSeason": null, "id": 70, "rawTID": "IAP_XMAS_19_GENERIC"}, {"name": "com.supercell.laser.ny201", "tID": "HAPPY NEW YEAR", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 100, "uSD": 499, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 1, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 1, "decor": 4, "isPromotion": null, "coins": 600, "refundGemValue": 251, "brawlPassSeason": null, "id": 71, "rawTID": "IAP_NEW_YEAR_20"}, {"name": "com.supercell.laser.cp0120", "tID": "COINS, COINS, COINS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 99, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 4, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 550, "refundGemValue": 65, "brawlPassSeason": null, "id": 72, "rawTID": "IAP_COINPACK_GENERIC"}, {"name": "com.supercell.laser.cp0121", "tID": "COINS, COINS, COINS", "type": 3, "disabled": null, "existsApple": true, "existsAndroid": true, "diamonds": 0, "uSD": 199, "order": 9, "iconExportName": null, "frameNumber": null, "starterPackNumber": null, "bigBoxCount": 0, "xpLevelReq": null, "valueFactor": 3, "labelTID": null, "labelValue": null, "bg": 3, "decor": 4, "isPromotion": null, "coins": 1400, "refundGemValue": 165, "brawlPassSeason": null, "id": 73, "rawTID": "IAP_COINPACK_GENERIC"}], "client_globals": [{"name": "FEEDBACK_EMAIL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 9}, {"name": "FEEDBACK_EMAIL_ANDROID", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": [90, 90], "stringArray": ["HD1900", "HD1901"], "altStringArray": ["Gem Grab", "Heist"], "id": 10}, {"name": "GAME_FACEBOOK_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 11}, {"name": "GAME_WEIBO_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 12}, {"name": "GAME_APPBANK_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 13}, {"name": "GAME_EXTERNAL_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 14}, {"name": "GAME_TWITTER_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 15}, {"name": "GAME_TWITTER_URL_JP", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 16}, {"name": "TOS_URL", "numberValue": null, "booleanValue": null, "textValue": "http://www.supercell.net/terms-of-service", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 17}, {"name": "PRIVACY_POLICY_URL_JP", "numberValue": null, "booleanValue": null, "textValue": "http://supercell.co.jp/privacy-policy.html", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 18}, {"name": "TOS_URL_JP", "numberValue": null, "booleanValue": null, "textValue": "http://supercell.co.jp/terms-of-service.html", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 19}, {"name": "PRIVACY_POLICY_URL_KR", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 20}, {"name": "TOS_URL_KR", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 21}, {"name": "HELP_CENTER_LANGUAGES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["EN", "DE", "IT", "FR", "ES", "PT", "NL", "CN", "JP", "KR", "TR", "NO", "RU", "GM1917"], "altStringArray": null, "id": 22}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "FAQ_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 35}, {"name": "FORUMS_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 36}, {"name": "PRIVACY_POLICY_URL", "numberValue": null, "booleanValue": null, "textValue": "http://www.supercell.net/privacy-policy", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 37}, {"name": "FEEDBACK_CATEGORIES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["Purchasing Issue", "Connection Issue", "Report Problem", "Feedback", "Lost Village", "Account Locked"], "altStringArray": null, "id": 38}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "FEEDBACK_CATEGORY_BANNED", "numberValue": null, "booleanValue": null, "textValue": "Banned", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 44}, {"name": "APP_RATE_XP_LEVEL", "numberValue": 11, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 45}, {"name": "COME_BACK_NOTIFICATION_DELAY_HOURS_SMALL", "numberValue": 48, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 46}, {"name": "COME_BACK_NOTIFICATION_DELAY_HOURS_MEDIUM", "numberValue": 120, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 47}, {"name": "COME_BACK_NOTIFICATION_DELAY_HOURS_LARGE", "numberValue": 336, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 48}, {"name": "GAMECENTER_REAUTHORIZE", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 49}, {"name": "BILLING_PACK_NAMES_FROM_CSV", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 50}, {"name": "LOW_MEM_DEVICES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["iPod1", "iPod2", "iPod3", "iPod4", "iPad1", "iPhone2", "st25i"], "altStringArray": null, "id": 51}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "MEDIUM_GFX_DEVICES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["iPad2,1", "iPad2,2", "iPad2,3", "iPad2,4", "iPod5"], "altStringArray": null, "id": 58}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "LOW_GFX_DEVICES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["iPod1", "iPod2", "iPod3", "iPod4", "iPad1", "iPhone2", "iPhone3", "iPhone4", "iPad2,5", "iPad2,6", "iPad2,7"], "altStringArray": null, "id": 63}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "DROID_SANS_FALLBACK_ON_LOW_MEM_DEVICES", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 74}, {"name": "GOOGLE_SERVICE_ACHIEVEMENTS_BUTTON", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 75}, {"name": "ASH_CNT", "numberValue": 250, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 76}, {"name": "ASH_CNT_LOW", "numberValue": 120, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 77}, {"name": "ASH_CNT_COMBAT", "numberValue": 40, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 78}, {"name": "ASH_CNT_COMBAT_LOW", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 79}, {"name": "SNOWFLAKE_CNT", "numberValue": 200, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 80}, {"name": "SNOWFLAKE_CNT_LOW", "numberValue": 100, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 81}, {"name": "SNOWFLAKE_CNT_COMBAT", "numberValue": 100, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 82}, {"name": "SNOWFLAKE_CNT_COMBAT_LOW", "numberValue": 50, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 83}, {"name": "PARTNER_AFTER_LOGIN", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 84}, {"name": "LOAD_DROID_SANS_FALLBACK_MANUALLY", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 85}, {"name": "LOAD_DROID_SANS_FALLBACK_MANUALLY_ANDROID", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 86}, {"name": "ANDROID_LOW_GFX_DEVICES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["GT-N7000", "GT-i8190N", "U8950", "SM-T211"], "altStringArray": null, "id": 87}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "ANDROID_HIGH_MEMORY_LIMIT", "numberValue": 900, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 91}, {"name": "ANDROID_MEDIUM_MEMORY_LIMIT", "numberValue": 600, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 92}, {"name": "SEND_EVENTS_TO_FB", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 93}, {"name": "SEND_EVENTS_TO_TAPJOY", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 94}, {"name": "SEND_EVENTS_TO_ADCOLONY", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 95}, {"name": "SEND_EVENTS_TO_INMOBI", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 96}, {"name": "SEND_EVENTS_TO_MOBILE_APP_TRACKER", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 97}, {"name": "LIVE_REPLAY_PRESIMULATE_MAX_SUBTICKS_PER_FRAME", "numberValue": 120, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 98}, {"name": "LIVE_REPLAY_PRESIMULATE_MAX_SUBTICKS_TOTAL", "numberValue": 14400, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 99}, {"name": "WAR_COOLDOWN_MAX_DISPLAY_TIME", "numberValue": 86400, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 100}, {"name": "INITIAL_ZOOM_TABLET", "numberValue": 90, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 101}, {"name": "INITIAL_ZOOM_PHONE_WIDESCREEN", "numberValue": 100, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 102}, {"name": "INITIAL_ZOOM_PHONE", "numberValue": 100, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 103}, {"name": "MAX_WAR_TROOP_MESSAGE_LENGTH", "numberValue": 40, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 104}, {"name": "DISCONNECT_IF_NETWORK_UNREACHABLE", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 105}, {"name": "NETWORK_UNREACHABLE_TIMEOUT", "numberValue": 30, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 106}, {"name": "CLOSE_EXIT_CONFIRMATION_ON_BACK_KEY", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 107}, {"name": "LOADING_ANIM_DISPLAY_DELAY", "numberValue": 1000, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 108}, {"name": "SHOW_GEM_BALANCE_IN_JP", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 109}, {"name": "LIVE_REPLAY_SPEEDUP_TO_CATCHUP_TO_LIVE_FEED", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 110}, {"name": "POWER_SAVE_MODE_LESS_ENDTURN_MESSAGES", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 111}, {"name": "WALL_ANIMATE_CYCLE", "numberValue": 45, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 112}, {"name": "WALL_ANIMATE_CYCLE_LOW_END", "numberValue": 90, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 113}, {"name": "USE_CLOUDS_FOR_WAR_TRANSITION", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 114}, {"name": "WAR_MAP_SHOW_STARS_IN_REAL_TIME", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 115}, {"name": "ENABLE_KR_CALL_CENTER", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 116}, {"name": "ENABLE_ALLIANCE_WARS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 117}, {"name": "ENABLE_OLD_WARS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 118}, {"name": "ENABLE_WAR_HISTORY_MENU", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 119}, {"name": "ENABLE_WAR_STREAM", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 120}, {"name": "GOOGLE_SERVICE_ACHIEVEMENTS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 121}, {"name": "GOOGLE_SERVICE_REAUTHORIZE", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 122}, {"name": "GOOGLE_SERVICE_POPUP_AFTER_FIRST_PURCHASE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 123}, {"name": "GOOGLE_SERVICE_POPUP_AFTER_TOWN_HALL_LEVEL", "numberValue": 3, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 124}, {"name": "GOOGLE_SERVICE_POPUP_SHOW_AFTER_EACH_TOWNHALL", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 125}, {"name": "ENABLE_CHAT_IN_VISIT", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 126}, {"name": "ENABLE_CHAT_IN_CLOUDS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 127}, {"name": "ENABLE_CHAT_IN_REPLAY", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 128}, {"name": "CLOUD_CHAT_TIME_LIMIT_SECONDS", "numberValue": 4, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 129}, {"name": "CLOUD_CHAT_TROPHY_LIMIT", "numberValue": 3600, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 130}, {"name": "CLOUD_CHAT_TROPHY_LIMIT_V2", "numberValue": 2000, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 131}, {"name": "USE_LOWRES_INGAME_ASSETS_IN_MEDIUM", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 132}, {"name": "CLOSE_TROOP_TRAINING_IN_TUTORIAL", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 133}, {"name": "RECOVER_EDIT_MODE_SESSION", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 134}, {"name": "IN_APP_RETRY_LIMIT", "numberValue": 4, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 135}, {"name": "SHOW_BUBBLE_ICON_ON_BROKEN_TRAPS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 136}, {"name": "DISCONNECT_IN_APPS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 137}, {"name": "RETRY_PURCHASES_IN_SHOP", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 138}, {"name": "RECONNECT_AFTER_SLEEPING_SECONDS", "numberValue": 180, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 139}, {"name": "SHOW_GEMS_PURCHASE_BUTTON_DURING_TUTORIAL", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 140}, {"name": "VILLAGE_EDIT_MODE_MINIMUM_TH_LEVEL", "numberValue": 2, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 141}, {"name": "CONTENT_UPDATE_HASH_CHECK", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 142}, {"name": "SEND_PERFORMANCE_EVENTS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 143}, {"name": "SEND_PERFORMANCE_EVENTS_ANDROID", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 144}, {"name": "PERFORMANCE_EVENTS_INTERVAL_SECONDS", "numberValue": 99999, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 145}, {"name": "PERFORMANCE_EVENTS_INTERVAL_SECONDS_ANDROID", "numberValue": 60, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 146}, {"name": "HARD_BIND_TOWN_HALL_LEVEL", "numberValue": 4, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 147}, {"name": "SCALE_UNIT_UI_IN_BATTLE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 148}, {"name": "USE_DEVICE_LINK", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 149}, {"name": "DISABLE_MASK_FROM_EMPTY_INPUT_FIELD", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 150}, {"name": "HIDE_ISO_ENGINE_IN_BIG_POPUPS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 151}, {"name": "HIGE_ISO_ENGINE_UNDER_CHAT", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 152}, {"name": "HIDE_ISO_ENGINE_IN_SHOP", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 153}, {"name": "ONLY_INSTALLED_FACEBOOK_FRIENDS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 154}, {"name": "CONFIRM_WORD_MAX_LENGTH", "numberValue": 15, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 155}, {"name": "HUD_PRINT_TIME", "numberValue": 6, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 156}, {"name": "HUD_PRINT_TIME_LONG", "numberValue": 30, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 157}, {"name": "PAYMENT_LIMIT_CONFIRMATION_ENABLED", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 158}, {"name": "PAYMENT_LIMIT_CONFIRMATION_USD", "numberValue": 15000, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 159}, {"name": "PAYMENT_LIMIT_CONFIRMATION_TIME", "numberValue": 15, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 160}, {"name": "SHOW_DONATION_STATS_FOR_ALL_CLANS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 161}, {"name": "USE_NEW_LOADING_BAR_LOGIC", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 162}, {"name": "HIGH_SCORE_EMPTY_LINES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": [10, 50, 100, 150, 200], "stringArray": null, "altStringArray": null, "id": 163}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "SHOW_IAP_NOTIFICATION_POPUP", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 168}, {"name": "SEND_ONLY_INSTALL_EVENTS_TO_APP_TRACKER", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 169}, {"name": "DEFAULT_TO_LOCAL_HIGHSCORES", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 170}, {"name": "ENABLE_LOCAL_RANKINGS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 171}, {"name": "DEFAULT_TO_LOCAL_CLAN_HIGHSCORES", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 172}, {"name": "ENABLE_LOCAL_CLAN_RANKINGS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 173}, {"name": "USE_ARMY_READY_NOTIFICATION", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 174}, {"name": "USE_SPELLS_READY_NOTIFICATION", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 175}, {"name": "USE_LABORATORY_UPGRADE_READY_NOTIFICATION", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 176}, {"name": "USE_WALL_MOVE_TOOL", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 177}, {"name": "USE_HERO_HEALTH_FULL_NOTIFICATION", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 178}, {"name": "LOW_END_WALL_CORNERS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 179}, {"name": "REPEAT_ATTACK_INSTRUCTION_TIME", "numberValue": 5, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 180}, {"name": "SWITCH_CONFIRMATION_XP_LEVEL", "numberValue": 7, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 181}, {"name": "DISABLE_ANIMATOR_RESET", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 182}, {"name": "BUFFER_SERVER_COMMANDS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 183}, {"name": "NO_MONEY_COLOR_RED", "numberValue": 255, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 184}, {"name": "NO_MONEY_COLOR_GREEN", "numberValue": 123, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 185}, {"name": "NO_MONEY_COLOR_BLUE", "numberValue": 114, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 186}, {"name": "ACHIEVEMENTS_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 187}, {"name": "GAME_CENTER_ACHIEVEMENTS_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 188}, {"name": "GAME_CENTER_CHALLENGES_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 189}, {"name": "MAX_ALLIANCE_SEARCH_TROPHIES", "numberValue": 50000, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 190}, {"name": "RED_CAMPAIGN_ENABLED", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 191}, {"name": "SHOW_NEWS_INDICATOR_XP_LIMIT", "numberValue": 10, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 192}, {"name": "SEND_GC_ACHIEVEMENT_0_PROGRESS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 193}, {"name": "USE_GC_SEND_ALL_ACHIEVEMENTS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 194}, {"name": "SEND_GC_ACHIEVEMENT_PROGRESS_ONCE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 195}, {"name": "HELPSHIFT_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 196}, {"name": "FORCE_USE_HELPSHIFT_FALLBACK_URL", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 197}, {"name": "DISABLE_HELPSHIFT_CONTACT_US_FROM_NON_PAYING", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 198}, {"name": "DISABLE_STARTUP_CONSTANT_CONNECTION_FIX", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 199}, {"name": "HERO_HEALTH_WARNING_LEVEL", "numberValue": 40, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 200}, {"name": "KEEPALIVE_INTERVAL_SECONDS", "numberValue": 5, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 201}, {"name": "DISCONNECT_IF_KEEPALIVE_IS_BEHIND", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 202}, {"name": "KEEPALIVE_TIMEOUT", "numberValue": 30, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 203}, {"name": "KEEPALIVE_SHOW_WARNING_AFTER_SECONDS", "numberValue": 10, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 204}, {"name": "USE_RTT_FOR_THUMBNAILS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 205}, {"name": "USE_DEFAULT_USER_NAME", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 206}, {"name": "PARENTS_GUIDE_URL", "numberValue": null, "booleanValue": null, "textValue": "http://www.supercell.net/parents", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 207}, {"name": "FORGET_WAR_PARTICIPANTS_WHEN_WAR_MAP_CLOSES", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 208}, {"name": "SHOW_VILLAGE_THUMBNAIL_ON_PROFILE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 209}, {"name": "ALWAYS_FORCE_VALID_WAR_SIZE_IN_WAR_PARTICIPANTS_SCREEN", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 210}, {"name": "ONLY_SHOW_WAR_PREFERENCE_IN_CLAN_LIST", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 211}, {"name": "CLAN_BADGE_SCROLLER_SNAP_AGRESSIVENESS", "numberValue": 200, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 212}, {"name": "SHOW_SUPPORT_TARGETING_ICON", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 213}, {"name": "MAX_INSTRUCTOR_TH_LEVEL", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 214}, {"name": "ENABLE_SC_CACHING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 215}, {"name": "ENABLE_SC_CACHE_LOADING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 216}, {"name": "SC_CACHE_FREE_SPACE_LIMIT", "numberValue": 200, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 217}, {"name": "SC_CACHE_FREE_SPACE_LIMIT_ANDROID", "numberValue": 400, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 218}, {"name": "SC_CACHE_USE_MODULO", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 219}, {"name": "INSTRUCTOR_RECOMMENDS_PVP", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 220}, {"name": "REMOVE_INSTRUCTOR_AFTER_CLAN_CASTLE_REPAIR", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 221}, {"name": "INSTRUCTOR_MIN_IDLE_TIME_SEC", "numberValue": 5, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 222}, {"name": "INSTRUCTOR_MAX_IDLE_TIME_SEC", "numberValue": 10, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 223}, {"name": "INSTRUCTOR_MIN_GOLD_PERCENT_FOR_RECOMMENDING_RAID", "numberValue": 25, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 224}, {"name": "INSTRUCTOR_MIN_ELIXIR_PERCENT_FOR_RECOMMENDING_RAID", "numberValue": 25, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 225}, {"name": "INSTRUCTOR_TIME_TO_HIDE_BUBBLE_AFTER_TAP_IN_SECONDS", "numberValue": 10, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 226}, {"name": "SHOW_SAFE_ZONE_WHEN_BUILDING_SELECTED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 227}, {"name": "CONNECT_IOS_TO_KUNLUN", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 228}, {"name": "KUNLUN_SPLASH_MESSAGE", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 229}, {"name": "RENDER_TEXT_OUTLINES_FIRST", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 230}, {"name": "FALLBACK_ARABIC_FONT", "numberValue": null, "booleanValue": null, "textValue": "font/NotoNaskhArabic-Bold.ttf", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 231}, {"name": "FALLBACK_RUSSIAN_FONT", "numberValue": null, "booleanValue": null, "textValue": "font/Pusia-Bold.otf", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 232}, {"name": "FALLBACK_JP_FONT", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 233}, {"name": "USE_HELPSHIFT_SDK_LANGUAGE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 234}, {"name": "EXTRA_HELPSHIFT_LANGUAGES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": "fi", "altStringArray": null, "id": 235}, {"name": "TRACK_GC_SPEND_MODULO", "numberValue": 199, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 236}, {"name": "LEGEND_TROPHY_LIMIT", "numberValue": 5000, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 237}, {"name": "TEXTFIELD_SCALE_FONT_SIZE_MAX_TESTS", "numberValue": 3, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 238}, {"name": "LANGUAGE_SETTINGS_SCROLL_MS", "numberValue": 300, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 239}, {"name": "LANGUAGE_SETTINGS_SCROLL_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 240}, {"name": "USE_REAL_WORLD_THRESHOLDS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 241}, {"name": "PAN_THRESHOLD", "numberValue": 16, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 242}, {"name": "PINCH_THRESHOLD", "numberValue": 13, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 243}, {"name": "UNIT_BAR_SENSITIVITY", "numberValue": 30, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 244}, {"name": "CAMERA_EXTRA_BOUNDS_HOME", "numberValue": 200, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 245}, {"name": "CAMERA_EXTRA_BOUNDS_WAR", "numberValue": 200, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 246}, {"name": "CAMERA_EXTRA_BOUNDS_NPC", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 247}, {"name": "CAMERA_EXTRA_BOUNDS_VILLAGE2", "numberValue": 500, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 248}, {"name": "CAMERA_EXTRA_BOUNDS_BOTTOM_HOME", "numberValue": 400, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 249}, {"name": "CAMERA_EXTRA_BOUNDS_BOTTOM_WAR", "numberValue": 400, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 250}, {"name": "CAMERA_EXTRA_BOUNDS_BOTTOM_NPC", "numberValue": -55, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 251}, {"name": "CAMERA_EXTRA_BOUNDS_BOTTOM_VILLAGE2", "numberValue": 800, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 252}, {"name": "CAMERA_EXTRA_BOUNDS_TOP_HOME", "numberValue": 100, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 253}, {"name": "CAMERA_EXTRA_BOUNDS_TOP_WAR", "numberValue": 100, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 254}, {"name": "CAMERA_EXTRA_BOUNDS_TOP_NPC", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 255}, {"name": "CAMERA_EXTRA_BOUNDS_TOP_VILLAGE2", "numberValue": 600, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 256}, {"name": "CLOUD_CHAT_NOTIFICATION_SOUND_TIME_LIMIT", "numberValue": 10, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 257}, {"name": "CANCEL_GAME_INPUT_ON_PAN_AND_PINCH", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 258}, {"name": "ALWAYS_SEND_DEVICE_TOKEN_MESSAGE_AFTER_SECONDS", "numberValue": 15, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 259}, {"name": "GOOGLE_PLAY_KUNLUN_TUTORIAL_VIDEO_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 260}, {"name": "GOOGLE_PLAY_KUNLUN_TUTORIAL_VIDEO_URL_ANDROID", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 261}, {"name": "GOOGLE_KUNLUN_TRANSFER_COUNTRIES", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": "CN", "altStringArray": null, "id": 262}, {"name": "GENERATE_CODE_TH_LEVEL_REQUIREMENT", "numberValue": 3, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 263}, {"name": "DEVICE_LINK_CHECK_BOUND_TO_KUNLUN", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 264}, {"name": "SHOW_CONTEXT_MENU_FOR_PLAYER", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 265}, {"name": "SHOW_IAP_INFO_IN_KOREA", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 266}, {"name": "USE_HELPSHIFT_LINKS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 267}, {"name": "USE_TOS_AND_PP_FIRST_POPUP", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 268}, {"name": "TERMS_AND_CONDITIONS_HELPSHIFT_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 269}, {"name": "USE_PEPPER_CRYPTO", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 270}, {"name": "IAP_INFO_KOREA_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 271}, {"name": "HUD_PRINT_TIME_PERSONAL_BREAK", "numberValue": 300, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 272}, {"name": "GUARD_NOTIFICATION_TIME", "numberValue": 900, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 273}, {"name": "SHIELD_NOTIFICATION_TIME", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 274}, {"name": "SHOW_SHIELD_BREAKING_POPUP_ONCE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 275}, {"name": "ANIMATE_WAR_BUTTON_ON_ACTIVITY", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 276}, {"name": "HELPSHIFT_MIN_IOS_VERSION", "numberValue": null, "booleanValue": null, "textValue": 9, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 277}, {"name": "USE_TREASURY_WINDOW", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 278}, {"name": "APPLY_REPLAY_COMPATIBILITY_IF_CONTENT_VERSION", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 279}, {"name": "MIN_COMPATIBLE_CONTENT_VERSION_FOR_REPLAY", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 280}, {"name": "ENABLE_SCREENRECORDING", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 281}, {"name": "DISABLE_SCREENSHAKE_WHILE_RECORDING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 282}, {"name": "SEND_CONNECTION_TYPE_INFO", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 283}, {"name": "HELPSHIFT_AFTER_LOGIN", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 284}, {"name": "SHOW_HELPSHIFT_CONTACT_IN_TH", "numberValue": 4, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 285}, {"name": "REMOVE_SHADOWS_FROM_DESTROYED_BUILDINGS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 286}, {"name": "FINISH_DEFERRED_TRANSACTION_IN_HOURS", "numberValue": 24, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 287}, {"name": "RESET_PENDING_TRANSACTION_WHEN_FINISHING_DEFERRED_PURCHASE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 288}, {"name": "LOAD_ADDITIONAL_SC_FILES", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 289}, {"name": "DO_GOOGLE_LOGIN_AT_STARTUP", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 290}, {"name": "USE_FIXED_TIME_STEP_EMITTERS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 291}, {"name": "BUILDER_CONTEXT_MENU_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 292}, {"name": "LOOTCART_CONTEXT_MENU_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 293}, {"name": "EMITTER_MAX_DELTA_TIME_MS", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 294}, {"name": "SHOW_INGAME_MAINTENANCE_SCREEN", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 295}, {"name": "USE_DEEP_LINKING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 296}, {"name": "USE_GAMEOBJECT_SELECTION_IN_REPLAYS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 297}, {"name": "SHOW_AOE_IN_REPLAYS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 298}, {"name": "SHOW_FORGOT_ARMY_NOTIF", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 299}, {"name": "SHOW_FORGOT_SPELLS_NOTIF", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 300}, {"name": "SHOW_COMBINED_ARMY_READY_NOTIF", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 301}, {"name": "USE_COPY_PASTE_MENU", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 302}, {"name": "USE_STAR_BONUS_NOTIFICATION", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 303}, {"name": "SHOW_SHORT_NOTIFICATIONS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 304}, {"name": "NEWS_DEFAULT_ITEM", "numberValue": null, "booleanValue": null, "textValue": "news_entry_dynamic", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 305}, {"name": "NEWS_DEFAULT_ICON", "numberValue": null, "booleanValue": null, "textValue": "news_tutor_icon", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 306}, {"name": "ENABLE_WATCH_LIVE_IN_SCOUTING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 307}, {"name": "ENABLE_CHALLENGE_SCOUT", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 308}, {"name": "DEFAULT_LANGUAGE_FOR_CAFEBAZAAR", "numberValue": null, "booleanValue": null, "textValue": "FA", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 309}, {"name": "FORGOT_ARMY_NOTIF_MINUTES", "numberValue": 720, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 310}, {"name": "FORGOT_SPELLS_NOTIF_MINUTES", "numberValue": 720, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 311}, {"name": "FORGOT_SPELLS_NOTIF_SLOT_COUNT", "numberValue": 2, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 312}, {"name": "ALLIANCE_DATA_MESSAGE_OWN_ALLIANCE_FIX", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 313}, {"name": "ALLIANCE_WAR_ATTACK_HID_OBJ_NULL_CHECK", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 314}, {"name": "TRACK_MODULO", "numberValue": 13, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 315}, {"name": "TRACK_CURRENCY_BALANCE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 316}, {"name": "ALLIANCE_VIEW_CLOSE_CONTEXT_ON_CLICK", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 317}, {"name": "USE_EMPTY_ANIM_FOR_BUILDINGS_UNDER_UPGRADE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 318}, {"name": "ARMY_READY_NOTIF_ADDITIONAL_SECONDS", "numberValue": 30, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 319}, {"name": "CHALLENGE_FRIENDS_FROM_LIST", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 320}, {"name": "CANCEL_KUNLUN_PURCHASES_ON_WINDOW_CLOSED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 321}, {"name": "TRAINING_SHOW_MAX_CAPACITY_WITH_OVERTRAINING", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 322}, {"name": "MINIMUM_LIVE_CHAT", "numberValue": -1, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 323}, {"name": "DARK_COLOR_RED", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 324}, {"name": "DARK_COLOR_GREEN", "numberValue": 0, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 325}, {"name": "DARK_COLOR_BLUE", "numberValue": 35, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 326}, {"name": "DARK_COLOR_ALPHA", "numberValue": 95, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 327}, {"name": "FOREGROUND_BUFFER_W", "numberValue": 256, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 328}, {"name": "FOREGROUND_BUFFER_H", "numberValue": 256, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 329}, {"name": "BACKGROUND_BUFFER_W_LOW_MEM", "numberValue": 512, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 330}, {"name": "BACKGROUND_BUFFER_H_LOW_MEM", "numberValue": 512, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 331}, {"name": "BACKGROUND_BUFFER_W", "numberValue": 2048, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 332}, {"name": "BACKGROUND_BUFFER_H", "numberValue": 1024, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 333}, {"name": "USE_ALLIANCE_CHAT_REPORTING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 334}, {"name": "EVENT_LOCAL_NOTIF_TH_MIN_LIMIT", "numberValue": 3, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 335}, {"name": "SPECIAL_URLS", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["EN", "CN"], "altStringArray": null, "id": 336}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "USE_SHIP_SCREEN_URL", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 338}, {"name": "SHOW_VILLAGE_OBJECTS", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 339}, {"name": "PRELOAD_SOUNDS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 340}, {"name": "SHARE_TAGS_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 341}, {"name": "SHARED_DEEPLINK_URL", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 342}, {"name": "DEFERRED_FILE_DOWNLOAD_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 343}, {"name": "SHOW_V2_COLLECTORS_FULL_NOTIF", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 344}, {"name": "SHOW_V2_DAILY_LIMIT_RESET_NOTIF", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 345}, {"name": "GC_TENCENT_CONFIRMATION_TH_LEVEL", "numberValue": 3, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 346}, {"name": "GIFT_PACK_LOCAL_EXTENSION", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 347}, {"name": "TENCENT_IOS_CHECK_LANGUAGE_CODE", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 348}, {"name": "ENABLE_TENCENT", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 349}, {"name": "ENABLE_TENCENT_FRIENDS", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 350}, {"name": "ENABLE_TUNE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 351}, {"name": "LASER_BOX_URL_WHITE_LIST", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["https://www.youtube.com/embed/", "about:blank"], "altStringArray": null, "id": 352}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "LASER_BOX_DOMAIN_WHITE_LIST", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["kunlun-cdn.com", "accounts.google.com", "video.qq.com", "v.qq.com", "qualtrics.com"], "altStringArray": null, "id": 354}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "JOYSTICK_AREA_WIDTH", "numberValue": 350, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 359}, {"name": "ENABLE_CHAT_REPORTING", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 360}, {"name": "ENABLE_BAD_TEXT_CHECK", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 361}, {"name": "CLAN_INVITE_TOKEN_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 362}, {"name": "CLAN_INVITE_TOKEN_EXPIRE_TIME_SECONDS", "numberValue": 600, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 363}, {"name": "FRIEND_INVITE_TOKEN_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 364}, {"name": "FRIEND_INVITE_TOKEN_EXPIRE_TIME_SECONDS", "numberValue": 600, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 365}, {"name": "TEAM_INVITE_DEEPLINK_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 366}, {"name": "CN_STARTUP_WARNING", "numberValue": null, "booleanValue": null, "textValue": "\u62b5\u5236\u4e0d\u826f\u6e38\u620f\uff0c\u62d2\u7edd\u76d7\u7248\u6e38\u620f\u3002\u6ce8\u610f\u81ea\u6211\u4fdd\u62a4\uff0c\u8c28\u9632\u53d7\u9a97\u4e0a\u5f53\u3002\u9002\u5ea6\u6e38\u620f\u76ca\u8111\uff0c\u6c89\u8ff7\u6e38\u620f\u4f24\u8eab\u3002\u5408\u7406\u5b89\u6392\u65f6\u95f4\uff0c\u4eab\u53d7\u5065\u5eb7\u751f\u6d3b\u3002", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 367}, {"name": "CHINA_REGULATIONS_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 368}, {"name": "RARE_CHANCE", "numberValue": 559, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 369}, {"name": "SUPER_RARE_CHANCE", "numberValue": 252, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 370}, {"name": "EPIC_CHANCE", "numberValue": 114, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 371}, {"name": "MYTHIC_CHANCE", "numberValue": 52, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 372}, {"name": "LEGENDARY_CHANCE", "numberValue": 23, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 373}, {"name": "STAR_POWER_CHANCE", "numberValue": 10, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 374}, {"name": "PP_CHANCE", "numberValue": 942, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 375}, {"name": "SPECTATE_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 376}, {"name": "KAKAO_ENABLED", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 377}, {"name": "LINE_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 378}, {"name": "SELFHELP_ENABLED", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 379}, {"name": "RETRY_LOGIN_DURING_MAINTENANCE", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 380}, {"name": "SCID_FRIEND_LIST_ENABLED", "numberValue": null, "booleanValue": false, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 381}, {"name": "NEW_HERO_CHANCE", "numberValue": 48, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 382}, {"name": "ONLINE_MENU_WAIT_BEFORE_UPDATE_SECS", "numberValue": 5, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 383}, {"name": "ONLINE_MENU_AUTO_CLOSE_TIME_SECS", "numberValue": -1, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 384}, {"name": "ONLINE_MENU_NEW_ITEM_THROTTLE_SECS", "numberValue": 60, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 385}, {"name": "AUTO_OPEN_TEAM_LOOT_BAR", "numberValue": null, "booleanValue": true, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null, "id": 386}, {"name": "GAME_MODE_VARIATION_COLORS", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": [0, 2, 3, 6, 5, 7, 8, 9, 10, 11, 14, 15, 16], "stringArray": ["0xffd852ff", "0xffd852ff", "0xff24d6ff", "0xff91e136", "0xff9ab1fd", "0xffff6847", "0xffff6847", "0xff91e136", "0xffff6847", "0xffff6847", "0xff3891ff", "0xffe24e5a", "0xff27be47"], "altStringArray": ["Gem Grab", "Heist", "Bounty", "Solo SD", "Brawl Ball", "Boss Fight", "Robo Bumble", "Duo SD", "Raid Boss", "Robo Wars", "Takedown", "Lone Star", "CTF"], "id": 387}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "DEFAULT_FONT_COLORS", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": ["0xff4d4848", "0xffe1e1e1", "0xfffd8067", "0xff9aee2d", "0xff2766cf", "0xff61def1", "0xfff871f8", "0xffffd156", "0xffd16eff", "0xfffe6a71"], "altStringArray": null, "id": 400}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": "COLOR_YOU", "numberValue": null, "booleanValue": null, "textValue": "0xff00ff00", "numberArray": null, "stringArray": null, "altStringArray": null, "id": 410}, {"name": "BATTLE_FRAME_RATE", "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": [90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 90, 120, 90, 90], "stringArray": ["HD1900", "HD1901", "HD1903", "HD1905", "HD1907", "HD1910", "HD1911", "HD1913", "HD1925", "GM1910", "GM1911", "GM1913", "GM1915", "GM1917", "GM1920", "GM1925", "Phone 2", "NX629J", "PCLM10", "RMX1931", "ASUS_I001DC", "Pixel 4", "Pixel 4 XL"], "altStringArray": null, "id": 411}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "numberArray": null, "stringArray": null, "altStringArray": null}], "color_gradients": [{"name": "FreeOffer", "colors": ["0xFF9FFF72", ["0xFF9FFF72", "0xFF68E524"], "0xFF68E524", "0xFF9FFF72", "0xFFE0FFA0"], "speed": 40, "scale": 100}, {"name": null, "colors": ["0xFFFFDAAC", "0xFFFFD12E"], "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": "Golden", "colors": ["0xFFFFFABC", "0xFFFFD12E", "0xFFF29928", "0xFFFFD12E"], "speed": 50, "scale": 100}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": "Purple", "colors": ["0xFFFABCFF", "0xFFD12EFF", "0xFF9928F2", "0xFFD12EFF"], "speed": 50, "scale": 100}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": "DoubleTokenGold", "colors": ["0xFFFFDAAC", "0xFFFFD12E", "0xFFF29928", "0xFFFFD12E"], "speed": 50, "scale": 70}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}, {"name": null, "colors": null, "speed": null, "scale": null}], "credits": [{"name": "Santtu Ahola", "0": null, "id": 13}, {"name": "Patrick Almgren", "0": null, "id": 14}, {"name": "Chris Bancroft", "0": null, "id": 15}, {"name": "Mauritz Bart", "0": null, "id": 16}, {"name": "Brad Bolinder", "0": null, "id": 17}, {"name": "Javier Calvo", "0": null, "id": 18}, {"name": "Paul Chambers", "0": null, "id": 19}, {"name": "Dalei Chen", "0": null, "id": 20}, {"name": "Liang Chen", "0": null, "id": 21}, {"name": "David Diaz", "0": null, "id": 22}, {"name": "Jason Dou", "0": null, "id": 23}, {"name": "Praveen Dubey", "0": null, "id": 24}, {"name": "Chris Duong", "0": null, "id": 25}, {"name": "Anders Ehrenborg", "0": null, "id": 26}, {"name": "James Ellis", "0": null, "id": 27}, {"name": "Jon Franzas", "0": null, "id": 28}, {"name": "Laura Gilliland", "0": null, "id": 29}, {"name": "Eero Harmaala", "0": null, "id": 30}, {"name": "Stefan Hauk", "0": null, "id": 31}, {"name": "Mikko Hokkanen", "0": null, "id": 32}, {"name": "Chih-Han Hsu", "0": null, "id": 33}, {"name": "Juha Huotari", "0": null, "id": 34}, {"name": "Aki Immonen", "0": null, "id": 35}, {"name": "Kim Jensen", "0": null, "id": 36}, {"name": "Tomi Joki-Korpela", "0": null, "id": 37}, {"name": "Pauli Kaila", "0": null, "id": 38}, {"name": "Robert Kamphuis", "0": null, "id": 39}, {"name": "Bill Kang", "0": null, "id": 40}, {"name": "Frank Keienburg", "0": null, "id": 41}, {"name": "Matti Kemppainen", "0": null, "id": 42}, {"name": "WooHyun Kim", "0": null, "id": 43}, {"name": "Terje Koskinen", "0": null, "id": 44}, {"name": "Byeongmin Kwon", "0": null, "id": 45}, {"name": "Petri K\u00e4rk\u00e4s", "0": null, "id": 46}, {"name": "Mikko Laakkio", "0": null, "id": 47}, {"name": "Christina Lee", "0": null, "id": 48}, {"name": "Jimmy Lee", "0": null, "id": 49}, {"name": "Mikko Lehtonen", "0": null, "id": 50}, {"name": "Juha Leinonen", "0": null, "id": 51}, {"name": "Ryan Lighton", "0": null, "id": 52}, {"name": "Janne Lindholm", "0": null, "id": 53}, {"name": "Agnes Liou", "0": null, "id": 54}, {"name": "Chen Liu", "0": null, "id": 55}, {"name": "Phillip Lockwood", "0": null, "id": 56}, {"name": "Jonne Loikkanen", "0": null, "id": 57}, {"name": "Frieda Ma", "0": null, "id": 58}, {"name": "Damien Mabin", "0": null, "id": 59}, {"name": "Lauri Manninen", "0": null, "id": 60}, {"name": "Antti Mattila", "0": null, "id": 61}, {"name": "Doug McCracken", "0": null, "id": 62}, {"name": "Daniel Medeiros", "0": null, "id": 63}, {"name": "Jani Mensonen", "0": null, "id": 64}, {"name": "Yukiko Morishita", "0": null, "id": 65}, {"name": "Jumpei Oki", "0": null, "id": 66}, {"name": "Taneli Oksama", "0": null, "id": 67}, {"name": "Jeff Ostler", "0": null, "id": 68}, {"name": "Janne Peltola", "0": null, "id": 69}, {"name": "Asko Puurula", "0": null, "id": 70}, {"name": "Miika Pylkk\u00f6", "0": null, "id": 71}, {"name": "Brianne Read", "0": null, "id": 72}, {"name": "Antti Ripatti", "0": null, "id": 73}, {"name": "Martin Schj\u00f8ler", "0": null, "id": 74}, {"name": "Mika Sepp\u00e4", "0": null, "id": 75}, {"name": "Mikko Sivulainen", "0": null, "id": 76}, {"name": "Shawn Su", "0": null, "id": 77}, {"name": "Antti Summala", "0": null, "id": 78}, {"name": "Qianyue Sun", "0": null, "id": 79}, {"name": "Tommi Suvinen", "0": null, "id": 80}, {"name": "Nelly S\u00e4\u00e4ksj\u00e4rvi", "0": null, "id": 81}, {"name": "Touko Tahkokallio", "0": null, "id": 82}, {"name": "Erol Tekkanat", "0": null, "id": 83}, {"name": "Ella-Roosa Tenhunen", "0": null, "id": 84}, {"name": "Emily Tierney", "0": null, "id": 85}, {"name": "Wilhelm Tigerstedt", "0": null, "id": 86}, {"name": "Jouni Utriainen", "0": null, "id": 87}, {"name": "Jerry Vahn", "0": null, "id": 88}, {"name": "Antti Varila", "0": null, "id": 89}, {"name": "F\u00e9lix Vivier", "0": null, "id": 90}, {"name": "Slava Volkov", "0": null, "id": 91}, {"name": "Kustaa Vuori", "0": null, "id": 92}, {"name": "Jaakko V\u00e4yrynen", "0": null, "id": 93}, {"name": "Toshizumi Waki", "0": null, "id": 94}, {"name": "Ryan Wener", "0": null, "id": 95}, {"name": "Julie Woo", "0": null, "id": 96}, {"name": "Choong Yoon", "0": null, "id": 97}, {"name": "Oscar Zhang", "0": null, "id": 98}, {"name": "Jean Zoch", "0": null, "id": 99}], "effects": [{"name": "mode_gift_aura", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", ["ParticleEmitter", "ParticleEmitter"]], "fileName": null, "exportName": null, "particleEmitterName": ["area_particle_glowCircle_1", ["area_particle_glowCircle_1", "area_particle_glowCircle_2"]], "effect": null, "layer": ["GroundHigh", ["GroundHigh", "GroundHigh"]], "groundBasis": [true, [true, true]], "flashColor": null, "scale": [100, [100, 100]], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mode_gift_aura_red", "flashWidth": null, "effectZ": null, "id": 7}, {"name": null, "loop": [true, true], "followParent": [true, true], "followParentAngle": [true, true], "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": [null, 200], "sound": ["Earth_atk", "Nita_atk_vo"], "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc"], "exportName": [null, "collect_glow1"], "particleEmitterName": ["splinters_blue", "planks_fly_blue"], "effect": [null, "Lucha_Specialt_Smoke"], "layer": ["Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [60, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": [300, 300]}, {"name": "mode_gift_aura_red", "loop": null, "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": [null, 130], "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": [null, "SiegeBase_attack_explode_huge", "fire_after_explosion", "fire_after_explosion", "planks_fly_blue", "Explo_dust_100", "planks_fly_mortuary", "planks_fly_mortuary", "Explo_dust_100", "Explo_dust_100", "fire_after_explosion_green", "Explo_dust_100", "planks_fly_blue", "planks_fly_darryls", "Explo_dust_100", "Explo_dust_120"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Object", "GroundLow", "GroundLow", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "GroundHigh", "GroundHigh", "Object", "Object", "Object", "Object", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Above", "GroundLow", "GroundLow", "Object", "Object", "Object", "Object", "Above", "Above", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Above", "Above", "GroundHigh", "GroundHigh", "Above", "Above", "GroundLow", "GroundLow", "GroundLow", "GroundHigh", "GroundHigh", "GroundHigh", "GroundLow", "Object", "Object", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Above", "Object", "Object", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Object", "Object", "Object", "Object", "GroundLow", "GroundLow", "GroundHigh", "GroundHigh", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "GroundLow", "GroundLow", "GroundHigh", "GroundHigh", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Object", "Object", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Object", "Object", "GroundHigh", "GroundHigh", "GroundLow", "GroundTop", "GroundTop", "GroundHigh", "GroundHigh", "Above", "Above", "GroundHigh", "GroundHigh", "Object", "Object", "Above", "Above", "Object", "Object", "Object", "Above", "Above", "Object", "Object", "Object", "Above", "Above", "Object", "Object", "Object", "Above", "Above", "GroundHigh", "Object", "Object", "Above", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundLow", "GroundLow", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Above", "Above", "Above", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "GroundHigh", "GroundHigh", "Object", "Object", "GroundHigh", "GroundHigh", "Object", "Object", "GroundHigh", "GroundHigh", "Above", "Above", "Above", "Above", "Object", "Above", "Above", "Above", "Above", "Object", "Object", "GroundHigh", "Object", "GroundHigh", "GroundHigh", "Above", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "GroundHigh", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Above", "Object", "Object", "Object", "GroundHigh", "GroundHigh", "Object", "Above", "Object", "GroundHigh", "GroundHigh", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "GroundHigh", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Object", "Object", "GroundHigh", "Object", "Above", "Object", "Above", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 9}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": [null, "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "Poison_hit", "ElectricGlowBall", "ElectricGlowBall"], "particleEmitterName": [null, "ground_fragments_lot_100", "cloudExplode_ground_red", "Hammer_trail_dust_100", "fire_after_explosion", "ground_explosion_small_50", "ground_explosion_small_50", "shooting_spark_emitter", "shooting_spark_emitter", "shooting_spark_emitter", "shooting_spark_emitter", "shooting_spark_emitter", "shooting_spark_emitter", "Nuts_and_bolts_particle_big", "Hammer_ulti_cracks", "gen_small_smoke_emitter_smaller", "shooting_spark_emitter", "big_Hot_dust_emitter", "very_big_Hot_dust_emitter", "Gen_Small_Debris_emitter_70", "Gen_Small_Debris_emitter_95", "Gen_Small_Debris_emitter_120", "Gen_Small_Debris_emitter_190", "Gen_Small_Debris_emitter_230", "Gen_Small_Debris_emitter_95", "Gen_Small_Debris_emitter_120", "dynamike_explode_red", "dynamike_explode_red", "Gen_Small_Debris_emitter_95", "barkeep_smoke", "Gen_Small_Debris_emitter_95", "ground_explosion_small_50", "huge_explosion_streaks_emitter", "Hammer_trail_rocks", "shooting_spark_emitter", "gen_small_smoke_emitter", "gen_small_smoke_emitter", "Gen_Small_Debris_emitter_120", "shooting_spark_emitter", "shooting_spark_emitter", "Gen_Small_Debris_emitter_120", "shooting_spark_emitter", "Gen_Small_Debris_emitter_230", "gen_small_smoke_emitter", "shooting_spark_emitter", "Gen_Small_Debris_emitter_270", "Gen_Small_Debris_emitter_70", "ground_explosion_small_50", "Gen_Small_Debris_emitter_70", "Gen_Small_Debris_emitter_70", "Gen_Small_Debris_emitter_70", "splats_flying", "Gen_Small_Debris_emitter_70", "sparks", "gen_small_smoke_emitter", "SiegeBase_cloudExplode_huge_ground", "Explo_dust_100", "Explo_dust_100", "fire_after_explosion", "Gen_Small_Debris_emitter_270", "ground_explosion_small_100", "fire_after_explosion_green", "fire_after_explosion_green", "ground_explosion_small_50", "ground_explosion_small_50", "Explo_dust_100", "fire_after_explosion", "ground_explosion_small_50", "ground_explosion_small_100"], "effect": null, "layer": null, "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mode_gift_destoryed", "loop": [null, true], "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "Effect", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "SWF", "SWF", "SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "Effect", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": [null, "fire_spark_red_shortHuge", "Gen_Small_Debris_emitter_230", "Gen_Small_Debris_emitter_230", "Small_Dust_emitter_100", "Hammer_trail_dust_100", "gen_small_smoke_emitter", "gen_small_smoke_emitter", "gen_small_smoke_emitter", "gen_small_smoke_emitter", "meteor_shards_50", "gen_small_smoke_emitter", "meteor_shards_80", "fire_spark_blue", "fire_spark_red", "fire_ulti_spark_blue", "fire_ulti_spark_red", "Death_Dust_emitter", "Gen_Small_Debris_emitter_70", "fire_spark_red_shortHuge", "ground_explosion_small_100", "ground_explosion_small_100", "Explo_dust_100", "meteor_shards_80", "Explo_dust_100", "Explo_dust_100", "ground_explosion_small_100", "Explo_dust_100", "SiegeBase_cloudExplode_huge_ground", "Rock_explo_debris1_mine"], "effect": [null, "Gen_Explosion"], "layer": ["GroundHigh", "Object", "GroundHigh", "Object", "Above", "Above", "Above", "GroundLow", "Above", "Object", "GroundHigh", "GroundHigh", "Above", "Above", "Above", "Above", "GroundHigh", "GroundHigh", "Above", "Above", "Above", "Above", "GroundLow", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "Object", "Object", "Above", "Above", "GroundHigh", "GroundHigh", "Above", "Above", "Above", "Above", "Above", "Above", "Above", "GroundLow", "GroundLow", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "GroundHigh", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Above", "Above", "Above", "Above", "Above", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Above", "Above", "Above", "Above", "Object", "Above", "Above", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "Object", "GroundHigh", "Object"], "groundBasis": [null, true, true], "flashColor": null, "scale": [null, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mode_gift_destoryed_red", "flashWidth": null, "effectZ": null, "id": 11}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": [null, "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "dynamike_attack_red"], "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": [null, true], "flashColor": null, "scale": [null, 50, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": [null, "sc/effects_brawler.sc", "sc/effects.sc"], "exportName": [null, "area_mode_gift_soot"], "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": [null, true, true, true, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mode_gift_destoryed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "area_mode_gift_soot"], "particleEmitterName": ["gen_death_smoke_red", "mode_gift_explosion", "mode_gift_box_cloud", "mode_gift_box_frags_red", "mode_gift_box_stars_red", "gen_death_explode_red"], "effect": null, "layer": ["GroundHigh", "Object", "GroundHigh", "Object", "Above", "Above", "GroundLow"], "groundBasis": [null, true], "flashColor": null, "scale": [120, 160, 120, 100, 100, 120, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 18}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mode_gift_goal", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 450, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "Effect"], "fileName": null, "exportName": null, "particleEmitterName": ["confetti_flying", "confetti_explosion", "Gen_Big_Debris_emitter", "huge_explosion_streaks_emitter"], "effect": [null, "Gen_Explosion"], "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 25}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gen_brawler_death", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_death_smoke", "gen_death_explode", "gen_death_ground_splat", "gen_death_particle_blue", "gen_death_smoke_ring", "gen_death_dust", "gen_death_bubbles"], "effect": null, "layer": ["GroundHigh", "Above", "GroundLow", "Above", "GroundHigh", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 100, 60, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 30}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gen_brawler_death_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_death_smoke_red", "gen_death_explode_red", "gen_death_ground_splat_red", "gen_death_particle_red", "gen_death_smoke_ring_red", "gen_death_dust_red", "gen_death_bubbles_red"], "effect": null, "layer": ["GroundHigh", "Above", "GroundLow", "Above", "GroundHigh", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 100, 60, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 37}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "death_shotgun_girl", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 44}, {"name": "death_gunslinger", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 45}, {"name": "death_bull_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rhino_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 46}, {"name": "death_rocket_girl", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 47}, {"name": "death_trickshot_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_2_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 48}, {"name": "death_cactus", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 49}, {"name": "death_barkeep", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_2_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 50}, {"name": "death_mechanic", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 51}, {"name": "death_shaman", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 52}, {"name": "death_tnt_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 53}, {"name": "death_luchador", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 54}, {"name": "death_undertaker", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 55}, {"name": "death_crow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 56}, {"name": "death_dead_mariachi", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_2_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 57}, {"name": "death_bow_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_2_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 58}, {"name": "death_sniper", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 59}, {"name": "death_minigun", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 60}, {"name": "death_bonethrower", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 61}, {"name": "death_barrel_bot", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_2_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 62}, {"name": "death_artillery_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 63}, {"name": "death_hammer_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 64}, {"name": "death_hook_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 65}, {"name": "death_ninja", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 66}, {"name": "death_rosa", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 67}, {"name": "death_whirlwind", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 68}, {"name": "death_baseball", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 69}, {"name": "death_arcade", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Male_1_death", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "gen_brawler_death", "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 70}, {"name": "death_blackhole", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Female_1_death", "type": ["Effect", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": [null, "Cards_flying"], "effect": "gen_brawler_death", "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gen_brawler_death_red", "flashWidth": null, "effectZ": null, "id": 71}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "8bit_atk", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["arcade_def_atk", "arcade_def_atk_pixel"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_atk_red", "flashWidth": null, "effectZ": null, "id": 73}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "8bit_atk", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["arcade_def_atk_red", "arcade_def_atk_pixel_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 75}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "arcade_def_atk_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 77}, {"name": "arcade_def_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "arcade_def_atk_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 78}, {"name": "arcade_def_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["arcade_def_atk_reached", "arcade_def_atk_pixel_ground"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 79}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["arcade_def_atk_reached_red", "arcade_def_atk_pixel_ground_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 81}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["arcade_def_atk_hit", "arcade_def_atk_pixel"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 83}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["arcade_def_atk_hit_red", "arcade_def_atk_pixel_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 85}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "arcade_def_ulti_atk", "particleEmitterName": [null, "arcade_def_ulti_particles"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_ulti_atk_red", "flashWidth": null, "effectZ": null, "id": 87}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "arcade_def_ulti_atk_red", "particleEmitterName": [null, "arcade_def_ulti_particles_red"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 89}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_area_active", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "arcade_def_ulti_area_active", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": true, "flashColor": null, "scale": 90, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_ulti_area_active_red", "flashWidth": null, "effectZ": null, "id": 91}, {"name": "arcade_def_ulti_area_active_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "pam_def_ulti_area_active_red", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": true, "flashColor": null, "scale": 90, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 92}, {"name": "arcade_def_ulti_areaBig_active", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "arcade_def_ulti_area_active", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": true, "flashColor": null, "scale": 135, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_ulti_areaBig_active_red", "flashWidth": null, "effectZ": null, "id": 93}, {"name": "arcade_def_ulti_areaBig_active_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "pam_def_ulti_area_active_red", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": true, "flashColor": null, "scale": 135, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 94}, {"name": "arcade_def_ulti_area_loop", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "8bit_ulti", "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["arcade_def_ulti_area", "arcade_def_ulti_symbol"], "particleEmitterName": [null, "arcade_def_ulti_pixel"], "effect": null, "layer": ["GroundLow", "Above", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_ulti_area_loop_red", "flashWidth": null, "effectZ": null, "id": 95}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_area_loop_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "8bit_ulti", "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["arcade_def_ulti_area_red", "arcade_def_ulti_symbol_red"], "particleEmitterName": [null, "arcade_def_ulti_pixel_red"], "effect": null, "layer": ["GroundLow", "Above", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 98}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_areaBig_loop", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "8bit_ulti", "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["arcade_def_ulti_areaBig", "arcade_def_ulti_symbol"], "particleEmitterName": [null, "arcade_def_ulti_pixel"], "effect": null, "layer": ["GroundLow", "Above", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_ulti_areaBig_loop_red", "flashWidth": null, "effectZ": null, "id": 101}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_areaBig_loop_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "8bit_ulti", "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["arcade_def_ulti_areaBig_red", "arcade_def_ulti_symbol_red"], "particleEmitterName": [null, "arcade_def_ulti_pixel_red"], "effect": null, "layer": ["GroundLow", "Above", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 104}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "arcade_def_ulti_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "arcade_def_ulti_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "arcade_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 107}, {"name": "arcade_def_ulti_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "arcade_def_ulti_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 108}, {"name": "barley_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_def_atk_ground", "barley_def_atk_cloud"], "particleEmitterName": [null, "barley_def_shards_blue", "barley_def_atk_impact"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_def_atk_red", "flashWidth": null, "effectZ": null, "id": 109}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_def_atk_ground_red", "barley_def_atk_cloud_red"], "particleEmitterName": [null, "barley_def_shards_red", "barley_def_atk_impact_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 113}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_def_atk_trail", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["barley_def_atk_trail", "barley_def_atk_trailGround"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 117}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_def_atk_trail_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["barley_def_atk_trail_red", "barley_def_atk_trailGround_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 119}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_ulti_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_def_ulti_ground", "barley_def_ulti_cloud"], "particleEmitterName": [null, "barley_def_shards_blue", "barley_def_ulti_impact"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_def_ulti_red", "flashWidth": null, "effectZ": null, "id": 121}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_def_ulti_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "barley_def_ulti_trail", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 125}, {"name": "barley_def_ulti_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "barley_def_ulti_trail_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 126}, {"name": "barley_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_ulti_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_def_ulti_ground_red", "barley_def_ulti_cloud_red"], "particleEmitterName": [null, "barley_def_shards_red", "barley_def_ulti_impact_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 127}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_002_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "fireball_explosion_blue", "particleEmitterName": [null, "fire_spark_blue"], "effect": null, "layer": ["Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 180, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_002_atk_red", "flashWidth": null, "effectZ": null, "id": 131}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_002_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "fireball_explosion_red", "particleEmitterName": [null, "fire_spark_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 180, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 133}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_002_trail", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["fireball_trail_blue", "barley_def_ulti_trail"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_002_trail_red", "flashWidth": null, "effectZ": null, "id": 135}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_002_trail_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["fireball_trail_red", "barley_def_ulti_trail_red"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 137}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_002_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "fireball_explosion_ulti_blue", "particleEmitterName": [null, "fire_ulti_spark_blue", "cloudExplode_ground_red"], "effect": null, "layer": ["Object", "Above", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": 190, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_002_ulti_red", "flashWidth": null, "effectZ": null, "id": 139}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_002_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "fireball_explosion_ulti_red", "particleEmitterName": [null, "fire_ulti_spark_red", "cloudExplode_ground_red"], "effect": null, "layer": ["Object", "Above", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": 190, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 142}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_004_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_004_atk_ground", "barley_004_atk_cloud"], "particleEmitterName": [null, "barley_004_shards_gold", "barley_def_atk_impact"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_004_atk_red", "flashWidth": null, "effectZ": null, "id": 145}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_004_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_004_atk_ground_red", "barley_004_atk_cloud_red"], "particleEmitterName": [null, "barley_def_shards_red", "barley_def_atk_impact_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 149}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_004_atk_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "barley_004_atk_trailLeaf", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_004_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 153}, {"name": "barley_004_atk_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "barley_004_atk_trailLeaf_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 154}, {"name": "barley_004_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_004_ulti_ground", "barley_004_ulti_cloud"], "particleEmitterName": [null, "barley_004_shards_gold", "barley_def_atk_impact"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_004_ulti_red", "flashWidth": null, "effectZ": null, "id": 155}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_004_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_004_ulti_ground_red", "barley_004_ulti_cloud_red"], "particleEmitterName": [null, "barley_def_shards_red", "barley_def_atk_impact_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 159}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_005_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_005_atk_ground", "barley_005_atk_fragments"], "particleEmitterName": [null, "barley_005_atk_remain", "barley_005_atk_debris", "barley_def_atk_impact"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": [true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_005_atk_red", "flashWidth": null, "effectZ": null, "id": 163}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_005_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_005_atk_ground_red", "barley_005_atk_fragments_red"], "particleEmitterName": [null, "barley_005_atk_remain_red", "barley_005_atk_debris_red", "barley_def_atk_impact_red"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": [true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 168}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_005_atk_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "barley_005_atk_trail", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_005_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 173}, {"name": "barley_005_atk_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "barley_005_atk_trail_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 174}, {"name": "barley_005_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_ulti_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_005_ulti_ground", "barley_005_ulti_fragments"], "particleEmitterName": [null, "barley_005_ulti_remains", "barley_005_atk_debris", "barley_def_ulti_impact"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_005_ulti_red", "flashWidth": null, "effectZ": null, "id": 175}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_005_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_ulti_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["barley_005_ulti_ground_red", "barley_005_ulti_fragments_red"], "particleEmitterName": [null, "barley_005_ulti_remains_red", "barley_005_atk_debris_red", "barley_def_ulti_impact_red"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundHigh", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 180}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_005_ulti_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["barley_005_atk_trail", "barley_005_atk_trail_add"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "barley_005_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 185}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barley_005_ulti_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["barley_005_atk_trail_red", "barley_005_atk_trail_red_add"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 187}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Bea_Atk", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bea_def_shoot", "particleEmitterName": [null, "bea_def_atk_pixel"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk_red", "flashWidth": null, "effectZ": 400, "id": 189}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Bea_Atk", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bea_def_shoot_red", "particleEmitterName": [null, "bea_def_atk_pixel_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 191}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_charged", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": "bee_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bea_def_atk_charged", "particleEmitterName": [null, "bea_def_bee_charged"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk_charged_red", "flashWidth": null, "effectZ": null, "id": 193}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_charged_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": "bee_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bea_def_atk_charged_red", "particleEmitterName": [null, "bea_def_bee_charged_red"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 195}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bea_def_ulti_trail_twinkles", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 197}, {"name": "bea_def_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bea_def_ulti_trail_twinkles_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 198}, {"name": "bea_def_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bea_Atk_Hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hit", "bea_def_atk_hitEnv_spark"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [90, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 199}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bea_Atk_Hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hit_red", "bea_def_atk_hitEnv_spark_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [90, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 201}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hit", "bea_def_atk_hitEnv_spark", "bea_def_atk_hitEnv_cloud"], "effect": null, "layer": ["Above", "GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [135, 130, 160], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk2_hit_red", "flashWidth": null, "effectZ": null, "id": 203}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk2_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hit_red", "bea_def_atk_hitEnv_spark_red", "bea_def_atk_hitEnv_cloud_red"], "effect": null, "layer": ["Above", "GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [135, 130, 160], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 206}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hitEnv_cloud", "bea_def_atk_hitEnv_shock", "bea_def_atk_hitEnv_spark"], "effect": null, "layer": ["GroundHigh", "Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 209}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hitEnv_cloud_red", "bea_def_atk_hitEnv_shock_red", "bea_def_atk_hitEnv_spark_red"], "effect": null, "layer": ["GroundHigh", "Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 212}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk2_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hitEnv_cloud", "bea_def_atk_hitEnv_shock", "bea_def_atk_hitEnv_spark"], "effect": null, "layer": ["GroundHigh", "Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [130, 130, 130], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_atk2_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 215}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_atk2_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_atk_hitEnv_cloud_red", "bea_def_atk_hitEnv_shock_red", "bea_def_atk_hitEnv_spark_red"], "effect": null, "layer": ["GroundHigh", "Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [130, 130, 130], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 218}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bea_Ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "bea_def_ulti", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 125, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_ulti_red", "flashWidth": null, "effectZ": 300, "id": 221}, {"name": "bea_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bea_Ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "bea_def_ulti_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 125, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 222}, {"name": "bea_def_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bea_def_ulti_beeFly", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 223}, {"name": "bea_def_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bea_def_ulti_beeFly_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 224}, {"name": "bea_def_ulti_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_ulti_hit", "bea_def_ulti_hitCloud", "bea_def_ulti_hit_twinkles"], "effect": null, "layer": ["Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bea_def_ulti_hit_red", "flashWidth": null, "effectZ": null, "id": 225}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bea_def_ulti_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bea_def_ulti_hit_red", "bea_def_ulti_hitCloud_red", "bea_def_ulti_hit_twinkles_red"], "effect": null, "layer": ["Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 228}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": null, "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["bibi_def_atk", "bibi_def_atk_dust"], "particleEmitterName": [null, "bibi_def_atk_fragments"], "effect": null, "layer": ["Object", "GroundHigh", "GroundLow"], "groundBasis": [true, true], "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_atk_red", "flashWidth": null, "effectZ": 400, "id": 231}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["bibi_def_atk_red", "bibi_def_atk_dust"], "particleEmitterName": [null, "bibi_def_atk_fragments"], "effect": null, "layer": ["Object", "GroundHigh", "GroundLow"], "groundBasis": [true, true], "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 234}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_ulti", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": true, "flashColor": null, "scale": 60, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_ulti_red", "flashWidth": null, "effectZ": 400, "id": 237}, {"name": "bibi_def_ulti_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_ulti_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": true, "flashColor": null, "scale": 60, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 238}, {"name": "bibi_def_ulti_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bibi_def_ulti_trail", "trail_twinkle_01"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 239}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bibi_def_ulti_trail_red", "trail_twinkle_01"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 241}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti_hitEffect", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_bubble_hit", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_ulti_hit", "particleEmitterName": [null, "bibi_def_ulti_hitGround"], "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_ulti_hitEffect_red", "flashWidth": null, "effectZ": null, "id": 243}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti_hitEffect_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_bubble_hit", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_ulti_hit_red", "particleEmitterName": [null, "bibi_def_ulti_hitGround_red"], "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 245}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti_hitEffect_char", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_ulti_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_ulti_hit_red", "particleEmitterName": [null, "bibi_def_ulti_hitGround_red", "bibi_def_ulti_hitChar_red"], "effect": null, "layer": ["Above", "GroundHigh", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_ulti_hitEffect_char_red", "flashWidth": null, "effectZ": null, "id": 247}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti_hitEffect_char_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_ulti_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_ulti_hit", "particleEmitterName": [null, "bibi_def_ulti_hitGround", "bibi_def_ulti_hitChar"], "effect": null, "layer": ["Above", "GroundHigh", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 250}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_swing", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 253}, {"name": "bibi_def_atk_hit", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bibi_bat_hit", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_atk_hit", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 254}, {"name": "bibi_def_atk_hit_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bibi_bat_hit", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "bibi_def_atk_hit", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 255}, {"name": "bibi_def_ulti_reached", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_bubble_pop", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_elecBall_end_blue", "particleEmitterName": [null, "bibi_def_ulti_hitGround"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 200, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bibi_def_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 256}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bibi_def_ulti_reached_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bibi_bubble_pop", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_elecBall_end_red", "particleEmitterName": [null, "bibi_def_ulti_hitGround_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 200, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 258}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bo_def_ulti_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bo_def_ulti_attack", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bo_def_ulti_attack_red", "flashWidth": null, "effectZ": 600, "id": 260}, {"name": "bo_def_ulti_attack_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bo_def_ulti_attack_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 600, "id": 261}, {"name": "bo_def_ulti1_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "bo_def_ulti1_cloud"], "particleEmitterName": "ground_fragments_lot_80", "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bo_def_ulti1_explosion_red", "flashWidth": null, "effectZ": null, "id": 262}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bo_def_ulti1_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "bo_def_ulti1_cloud_red"], "particleEmitterName": "ground_fragments_lot_80", "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 264}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bo_def_ulti2_spawn", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bo_mine_spawn", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 266}, {"name": "bo_def_ulti2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "dynamike_attack_blue", "particleEmitterName": [null, "cloudExplode_ground_red", "cloudExplode_red", "ground_fragments_lot_100"], "effect": null, "layer": ["Above", "Object", "Object", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": 135, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bo_def_ulti2_explosion_red", "flashWidth": null, "effectZ": null, "id": 267}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bo_def_ulti2_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "dynamike_attack_red", "particleEmitterName": [null, "cloudExplode_ground_red", "cloudExplode_red", "ground_fragments_lot_100"], "effect": null, "layer": ["Above", "Object", "Object", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": 135, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 271}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bo_002_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_bo_fire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 650, "id": 275}, {"name": "bo_002_ulti_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bo_002_ulti_sparks1", "bo_002_ulti_sparks2"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "bo_002_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 276}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bo_002_ulti_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bo_002_ulti_sparks1_red", "bo_002_ulti_sparks2_red"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 278}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "MineActive_enemy", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bomb_bleeps", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bo_def_mine_wave_red", "bo_def_mine_area_red", "bo_def_mine_caution_red"], "effect": null, "layer": ["Above", "Above", "Above"], "groundBasis": [true, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 280}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "MineActive", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bomb_bleeps_friend", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bo_def_mine_wave", "bo_def_mine_area", "bo_def_mine_caution"], "effect": null, "layer": ["Above", "Above", "Above"], "groundBasis": [true, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "MineActive_enemy", "flashWidth": null, "effectZ": null, "id": 283}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 650, "id": 286}, {"name": "brock_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 650, "id": 287}, {"name": "beach_brock_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Beach_brock_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 288}, {"name": "beach_brock_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Beach_brock_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 289}, {"name": "brock_def_atk_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rocketSmoke_long_blue", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 290}, {"name": "brock_def_atk_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rocketSmoke_long_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 291}, {"name": "brock_def_ulti_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rocketSmoke_short_blue", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 292}, {"name": "brock_def_ulti_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rocketSmoke_short_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 293}, {"name": "brock_def_explosion_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "brock_def_atk_area_blue"], "particleEmitterName": ["cloudExplode_small_red", "cloudExplode_ground_small_red", "ground_fragments_lot_100", "brock_explode_red"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_def_explosion_red", "flashWidth": null, "effectZ": null, "id": 294}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_def_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "brock_def_atk_area_red"], "particleEmitterName": ["cloudExplode_small_red", "cloudExplode_ground_small_red", "ground_fragments_lot_100", "brock_explode_red"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 299}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_def_ultiExp_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "brock_def_atk_area_blue"], "particleEmitterName": ["cloudExplode_red", "cloudExplode_ground_red", "ground_fragments_lot_100", "brock_explode_red", "fire_spark_red_short"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_def_ultiExp_red", "flashWidth": null, "effectZ": null, "id": 304}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_def_ultiExp_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "brock_def_atk_area_red"], "particleEmitterName": ["cloudExplode_red", "cloudExplode_ground_red", "ground_fragments_lot_100", "brock_explode_red", "fire_spark_red_short"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 310}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_def_starPower", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["brock_def_sp_fire_blue", "brock_def_sp_fire_ground"], "particleEmitterName": null, "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [50, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_def_starPower_red", "flashWidth": null, "effectZ": null, "id": 316}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_def_starPower_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["brock_def_sp_fire_red", "brock_def_sp_fire_ground_red"], "particleEmitterName": null, "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [50, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 318}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_002_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": [null, "brock_002_atk_fireworks"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_002_atk_red", "flashWidth": null, "effectZ": 650, "id": 320}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_002_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": [null, "brock_002_atk_fireworks_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 650, "id": 322}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_002_explosion_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "brock_def_atk_area_blue"], "particleEmitterName": ["cloudExplode_small_red", "cloudExplode_ground_small_red", "ground_fragments_lot_100", "brock_explode_red", "brock_002_fireworks"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_002_explosion_red", "flashWidth": null, "effectZ": null, "id": 324}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_002_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "brock_def_atk_area_red"], "particleEmitterName": ["cloudExplode_small_red", "cloudExplode_ground_small_red", "ground_fragments_lot_100", "brock_explode_red", "brock_002_fireworks_red"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 330}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_003_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "brock_003_gunSmoke", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_003_atk_red", "flashWidth": null, "effectZ": 650, "id": 336}, {"name": "brock_003_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "brock_003_gunSmoke_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 650, "id": 337}, {"name": "brock_004_atk_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["brock_004_waterSplat_trail", "brock_004_waterStain_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_004_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 338}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_atk_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["brock_004_waterSplat_trail_red", "brock_004_waterStain_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 340}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_explosion_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Beach_brock_explo", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "brock_004_atk_hit_splash", "jessie_002_atk_hit", "jessie_002_atk_hit_ground"], "particleEmitterName": "jessie_002_waterSplat_big", "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundLow"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_004_explosion_red", "flashWidth": null, "effectZ": null, "id": 342}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Beach_brock_explo", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "brock_004_atk_hit_splash_red", "jessie_002_atk_hit_red", "jessie_002_atk_hit_ground_red"], "particleEmitterName": "jessie_002_waterSplat_big_red", "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundLow"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 346}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_ulti_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["brock_004_waterSplat_trail", "brock_004_waterStain_ulti"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_004_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 350}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_ulti_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["brock_004_waterSplat_trail_red", "brock_004_waterStain_ulti"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 352}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_ultiExp_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Beach_brock_explo", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "brock_004_atk_hit_splash", "jessie_002_atk_hit", "jessie_002_atk_hit_ground"], "particleEmitterName": "jessie_002_waterSplat_big", "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_004_ultiExp_red", "flashWidth": null, "effectZ": null, "id": 354}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_ultiExp_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Beach_brock_explo", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "brock_004_atk_hit_splash_red", "jessie_002_atk_hit_red", "jessie_002_atk_hit_ground_red"], "particleEmitterName": "jessie_002_waterSplat_big_red", "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 358}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_starPower", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "brock_004_sp_pillar", "brock_004_sp_ground"], "particleEmitterName": ["brock_004_waterSplat_long", "brock_004_sp_whirl"], "effect": null, "layer": ["Above", "Object", "Above", "GroundLow"], "groundBasis": [null, true, true], "flashColor": null, "scale": [50, 100, 100, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "brock_004_starPower_red", "flashWidth": null, "effectZ": null, "id": 362}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "brock_004_starPower_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "brock_004_sp_pillar_red", "brock_004_sp_ground_red"], "particleEmitterName": ["brock_004_waterSplat_long_red", "brock_004_sp_whirl_red"], "effect": null, "layer": ["Above", "Object", "Above", "GroundLow"], "groundBasis": [null, true, true], "flashColor": null, "scale": [50, 100, 100, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 366}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bull_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_L", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 110, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 370}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bull_def_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gunSmoke_reached_multi", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 372}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_atk_whirl", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 374}, {"name": "carl_def_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_atk_whirl_red", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 375}, {"name": "carl_def_ulti_loop", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "carl_def_ulti_whirl", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_def_ulti_loop_red", "flashWidth": null, "effectZ": 400, "id": 376}, {"name": "carl_def_ulti_loop_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "carl_def_ulti_whirl_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 377}, {"name": "carl_def_ulti_ground", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "carl_def_ulti_ground_center"], "particleEmitterName": [null, "ground_fragments_continuing", "carl_def_ulti_groundCloud"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundTop"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 378}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_def_ulti_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_ulti_hit_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_def_ulti_hit_red", "flashWidth": null, "effectZ": 300, "id": 382}, {"name": "carl_def_ulti_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_ulti_hit", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 383}, {"name": "carl_002_ulti_loop", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "carl_002_ulti_whirl", "particleEmitterName": [null, "carl_002_ulti_particle"], "effect": null, "layer": ["Above", "Above"], "groundBasis": [true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_002_ulti_loop_red", "flashWidth": null, "effectZ": [400, 400], "id": 384}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_002_ulti_loop_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "carl_002_ulti_whirl_red", "particleEmitterName": [null, "carl_002_ulti_particle_red"], "effect": null, "layer": ["Above", "Above"], "groundBasis": [true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": [400, 400], "id": 386}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_002_ulti_ground", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "carl_002_ulti_ground_center"], "particleEmitterName": [null, "ground_fragments_continuing", "carl_def_ulti_groundCloud"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundTop"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_002_ulti_ground_red", "flashWidth": null, "effectZ": null, "id": 388}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_002_ulti_ground_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "carl_002_ulti_ground_center_red"], "particleEmitterName": [null, "ground_fragments_continuing", "carl_def_ulti_groundCloud"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundTop"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 392}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "carl_004_atk_use", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 680, "id": 396}, {"name": "carl_004_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_def_atk_whirl", "carl_004_atk_trail_leaf1", "carl_004_atk_trail_leaf2"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": [null, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_004_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 397}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_def_atk_whirl_red", "carl_004_atk_trail_leaf1_red", "carl_004_atk_trail_leaf2_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": [null, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 400}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_004_atk_hit_mush_red", "carl_def_ulti_hit_red"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 90], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_004_atk_hit_red", "flashWidth": null, "effectZ": 300, "id": 403}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_004_atk_hit_mush", "carl_def_ulti_hit"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 90], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 405}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "carl_004_atk_hit_cloud"], "particleEmitterName": "carl_004_atk_hitEnv_mush", "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_004_atk_hitEnv_red", "flashWidth": null, "effectZ": 300, "id": 407}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_atk_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "carl_004_atk_hit_cloud_red"], "particleEmitterName": "carl_004_atk_hitEnv_mush_red", "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 409}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_004_lose", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_004_lose", "carl_004_lose_cloud"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 411}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_still", "loop": null, "followParent": [true, true, true], "followParentAngle": true, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_ripple_center", "carl_005_ripple_still", "carl_005_ripple_still_2"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundHigh"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 413}, {"name": null, "loop": null, "followParent": null, "followParentAngle": false, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": false, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_moving", "loop": null, "followParent": [true, true, true, true, true, true, true], "followParentAngle": [true, true, true], "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_ripple_main_L", "carl_005_ripple_main_R", "carl_005_ripple_circular", "carl_005_ripple_droplet", "carl_005_ripple_R", "carl_005_ripple_L", "carl_005_moving_stain"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundHigh", "GroundLow", "GroundLow", "GroundLow"], "groundBasis": [true, true, true, true, true, true], "flashColor": null, "scale": [100, 100, 100, 50, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 416}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": false, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": false, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": false, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": false, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_atk_drop_fish", "carl_005_atk_drop_starFish", "carl_005_atk_trail_twinkles"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_005_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 423}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_atk_drop_fish_red", "carl_005_atk_drop_starFish_red", "carl_005_atk_trail_twinkles_red"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 426}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_atk_trail_return", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_atk_drop_starFish", "carl_005_atk_trail_twinkles"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_005_atk_trail_return_red", "flashWidth": null, "effectZ": null, "id": 429}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_atk_trail_return_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_atk_drop_starFish_red", "carl_005_atk_trail_twinkles_red"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 431}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["carl_005_atk_hit_starfish", "carl_def_ulti_hit"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 110], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 433}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_ulti_hit", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 70, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 435}, {"name": "carl_005_ulti_ground", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["carl_def_ulti_ground", "carl_005_ulti_ground_center"], "particleEmitterName": [null, "brock_004_waterSplat_long", "carl_005_ulti_trail_twinkles"], "effect": null, "layer": ["GroundHigh", "GroundTop", "GroundHigh", "Object"], "groundBasis": true, "flashColor": null, "scale": [100, 100, 75, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_005_ulti_ground_red", "flashWidth": null, "effectZ": null, "id": 436}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_005_ulti_ground_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["carl_def_ulti_ground", "carl_005_ulti_ground_center_red"], "particleEmitterName": [null, "brock_004_waterSplat_long_red", "carl_005_ulti_trail_twinkles_red"], "effect": null, "layer": ["GroundHigh", "GroundTop", "GroundHigh", "Object"], "groundBasis": true, "flashColor": null, "scale": [100, 100, 75, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 440}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_S", "particleEmitterName": [null, "shell_100"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 550, "id": 444}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "colt_def_ulti_attack_blue", "particleEmitterName": [null, "shell_100"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_def_ulti_red", "flashWidth": null, "effectZ": 550, "id": 446}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "colt_def_ulti_attack_red", "particleEmitterName": [null, "shell_100"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 550, "id": 448}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_def_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gunSmoke_reached", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 450}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_def_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_def_ulti_reached_blue", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_def_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 452}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_def_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_def_ulti_reached_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 454}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_002_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_S", "particleEmitterName": [null, "colt_002_atk_shell", "colt_002_fortuneBag_blue", "colt_002_atk_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_002_atk_red", "flashWidth": null, "effectZ": 550, "id": 456}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_002_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_S", "particleEmitterName": [null, "colt_002_atk_shell", "colt_002_fortuneBag_red"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 550, "id": 460}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_002_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "colt_def_ulti_attack_blue", "particleEmitterName": [null, "colt_002_atk_shell"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_002_ulti_red", "flashWidth": null, "effectZ": 550, "id": 463}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_002_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "colt_def_ulti_attack_red", "particleEmitterName": [null, "colt_002_atk_shell"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 550, "id": 465}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_002_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "colt_002_taekuk", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 467}, {"name": "colt_002_ulti_use", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "colt_002_ulti_root", "particleEmitterName": null, "effect": null, "layer": "GroundTop", "groundBasis": true, "flashColor": null, "scale": 135, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 468}, {"name": "colt_003_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atk", "colt_003_atk_core", "colt_003_atk_sparks"], "effect": null, "layer": ["Object", "Above", "Above"], "groundBasis": false, "flashColor": null, "scale": [100, 80, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 600, "id": 469}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atk", "colt_003_ulti_core", "colt_003_ulti_cloud", "colt_003_atk_sparks", "colt_003_ulti_spark"], "effect": null, "layer": ["Above", "Above", "GroundHigh", "Above", "Above"], "groundBasis": false, "flashColor": null, "scale": [130, 120, 100, 130, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 600, "id": 472}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_atk_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "colt_003_atk_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 75, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 477}, {"name": "colt_003_atk_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "colt_003_atk_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 75, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 478}, {"name": "colt_003_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atk_reached", "ground_fragments_small"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_003_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 479}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atk_reached_red", "ground_fragments_small"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 481}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atkHit_cloud", "jessie_003_atk_hit"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [50, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_003_atk_hit_red", "flashWidth": null, "effectZ": -200, "id": 483}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atkHit_cloud_red", "jessie_003_atk_hit_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [50, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": -200, "id": 485}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "colt_003_atkHit_cloud", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 40, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_003_atk_hitEnv_red", "flashWidth": null, "effectZ": -200, "id": 487}, {"name": "colt_003_atk_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "colt_003_atkHit_cloud_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 40, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": -200, "id": 488}, {"name": "colt_003_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atk_reached", "ground_fragments_small", "colt_003_ulti_impact_blue"], "effect": null, "layer": ["GroundLow", "Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [135, 100, 40], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "colt_003_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 489}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "colt_003_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["colt_003_atk_reached_red", "ground_fragments_small", "colt_003_ulti_impact_red"], "effect": null, "layer": ["GroundLow", "Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [135, 100, 40], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 492}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "crow_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Crow_throw", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 495}, {"name": "crow_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 496}, {"name": "crow_002_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_crow_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 497}, {"name": "crow_002_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_elecDagger_hit", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "crow_002_hit_red", "flashWidth": null, "effectZ": null, "id": 498}, {"name": "crow_002_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_elecDagger_hit_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 499}, {"name": "crow_002_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_crow_ulti", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_ulti_jump", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "crow_002_ulti_red", "flashWidth": null, "effectZ": null, "id": 500}, {"name": "crow_002_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_crow_ulti", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_ulti_jump_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 501}, {"name": "crow_002_ulti_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_elecDagger_trail_blue", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "crow_002_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 502}, {"name": "crow_002_ulti_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_elecDagger_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 503}, {"name": "crow_002_atk_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["crow_002_elecDagger_reached", "crow_002_elecDagger_reachedSpark", "ground_fragments_small"], "effect": null, "layer": ["Object", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "crow_002_atk_reachaed_red", "flashWidth": null, "effectZ": null, "id": 504}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "crow_002_atk_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["crow_002_elecDagger_reached_red", "crow_002_elecDagger_reachedSpark_red", "ground_fragments_small"], "effect": null, "layer": ["Object", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 507}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "crow_002_shocked", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_atk_shocked_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "crow_002_shocked_red", "flashWidth": null, "effectZ": null, "id": 510}, {"name": "crow_002_shocked_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_002_atk_shocked", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 511}, {"name": "darryl_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 512}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryl_002_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "darryl_002_soySmoke", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "darryl_002_atk_red", "flashWidth": null, "effectZ": 400, "id": 514}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryl_002_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "darryl_002_soySmoke_red", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 516}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryl_002_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["dumpling_reached", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "darryl_002_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 518}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryl_002_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["dumpling_reached_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 520}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryl_002_dumpling_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "darryl_002_soysource", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "darryl_002_dumpling_trail_red", "flashWidth": null, "effectZ": -200, "id": 522}, {"name": "darryl_002_dumpling_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "darryl_002_soysource_red", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": -200, "id": 523}, {"name": "dynamike_003_atk_trail", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["dynamike_003_trail_flame", "dynamike_003_trail_spark"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "dynamike_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 524}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "dynamike_003_atk_trail_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["dynamike_003_trail_flame_red", "dynamike_003_trail_spark_red"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 526}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "dynamike_003_ulti_trail", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["dynamike_003_trail_cloud", "dynamike_003_trail_spark"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "dynamike_003_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 528}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "dynamike_003_ulti_trail_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["dynamike_003_trail_cloud_red", "dynamike_003_trail_spark_red"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 530}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "dynamike_003_ulti_use", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_mike_ulti", "type": null, "fileName": null, "exportName": null, "particleEmitterName": "tick_def_ulti_use_cloud", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 532}, {"name": "emz_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Emz_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["emz_def_atk_skull", "emz_def_atk_skull_front", "emz_def_atk_skull_front2", "emz_def_atk_trail_base"], "effect": null, "layer": ["GroundHigh", "Object", "Object", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 533}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Emz_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["emz_def_atk_skull_red", "emz_def_atk_skull_front_red", "emz_def_atk_skull_front_red2", "emz_def_atk_trail_base_red"], "effect": null, "layer": ["GroundHigh", "Object", "Object", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 537}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "emz_def_atk_cloudDis", "effect": null, "layer": "GroundLow", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 541}, {"name": "emz_def_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "emz_def_atk_cloudDis_red", "effect": null, "layer": "GroundLow", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 542}, {"name": "emz_def_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "emz_def_atk", "particleEmitterName": [null, "emz_def_atk_sprayGround"], "effect": null, "layer": ["Object", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_atk_red", "flashWidth": null, "effectZ": 500, "id": 543}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "emz_def_atk_red", "particleEmitterName": [null, "emz_def_atk_sprayGround_red"], "effect": null, "layer": ["Object", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 545}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "emz_def_atk_hitCloud_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 547}, {"name": "emz_def_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "emz_def_atk_hitCloud", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 548}, {"name": "emz_def_ulti", "loop": null, "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "arcade_def_ulti_area_active"], "particleEmitterName": [null, "emz_def_ulti_flash"], "effect": null, "layer": ["Object", "GroundLow", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 145, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_ulti_red", "flashWidth": null, "effectZ": null, "id": 549}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_ulti_red", "loop": null, "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "arcade_def_ulti_area_active"], "particleEmitterName": [null, "emz_def_ulti_flash_red"], "effect": null, "layer": ["Object", "GroundLow", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 145, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 552}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_ulti_area", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "emz_def_ulti_area", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_ulti_area_red", "flashWidth": null, "effectZ": null, "id": 555}, {"name": "emz_def_ulti_area_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "emz_def_ulti_area_red", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 556}, {"name": "emz_def_ulti_use", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Emz_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "emz_def_ulti_use", "particleEmitterName": [null, "emz_def_ulti_use_cloud"], "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "emz_def_ulti_use_red", "flashWidth": null, "effectZ": null, "id": 557}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "emz_def_ulti_use_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Emz_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "emz_def_ulti_use_red", "particleEmitterName": [null, "emz_def_ulti_use_cloud_red"], "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 559}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "frank_def_starPower_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "frank_def_starP_hit_symbol"], "particleEmitterName": "frank_def_starPower_hit", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "frank_def_starPower_hit_red", "flashWidth": null, "effectZ": null, "id": 561}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "frank_def_starPower_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "frank_def_starP_hit_symbol_red"], "particleEmitterName": "frank_def_starPower_hit_red", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 563}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gene_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Gene_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_atk_blue", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk_red", "flashWidth": null, "effectZ": 400, "id": 565}, {"name": "gene_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Gene_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_atk_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 566}, {"name": "gene_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Gene_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_ulti_blue", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 125, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_ulti_red", "flashWidth": null, "effectZ": 400, "id": 567}, {"name": "gene_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Gene_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_ulti_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 125, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 568}, {"name": "gene_def_atk1_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_split", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk1End_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk1_reachaed_red", "flashWidth": null, "effectZ": null, "id": 569}, {"name": "gene_def_atk1_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_split", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk1End_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 570}, {"name": "gene_def_atk1Hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_hit", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk1Hit_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk1Hit_red", "flashWidth": null, "effectZ": null, "id": 571}, {"name": "gene_def_atk1Hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_hit", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk1Hit_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 572}, {"name": "gene_def_atk2_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_atk2End_blue", "gene_def_atk2End_cloud_blue", "ground_fragments_small"], "effect": null, "layer": ["Object", "Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk2_reachaed_red", "flashWidth": null, "effectZ": null, "id": 573}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gene_def_atk2_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_atk2End_red", "gene_def_atk2End_cloud_red", "ground_fragments_small"], "effect": null, "layer": ["Object", "Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 576}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gene_def_atk2Hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_atk2Hit_blue", "gene_def_atk2End_cloud_blue"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk2Hit_red", "flashWidth": null, "effectZ": null, "id": 579}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gene_def_atk2Hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_atk2Hit_red", "gene_def_atk2End_cloud_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 581}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gene_def_atk2Env", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk2End_cloud_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk2Env_red", "flashWidth": null, "effectZ": null, "id": 583}, {"name": "gene_def_atk2Env_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk2End_cloud_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 584}, {"name": "gene_def_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk_trail_blue", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 585}, {"name": "gene_def_atk_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 586}, {"name": "gene_def_ulti_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_ulti_hit", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_ulti_hit", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_ulti_hit_red", "flashWidth": null, "effectZ": null, "id": 587}, {"name": "gene_def_ulti_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_ulti_hit", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_ulti_hit_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 588}, {"name": "gene_def_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_hit_2", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_ulti_reached", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 589}, {"name": "gene_def_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_hit_2", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gene_def_ulti_reached_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 590}, {"name": "gene_def_ulti_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_ulti_trail_blue", "gene_def_ulti_particles"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "gene_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 591}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gene_def_ulti_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_ulti_trail_red", "gene_def_ulti_particles_red"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 593}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_002_atk_trail", "jessie_002_waterSplat_trail", "jessie_002_waterStain_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 595}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_002_atk_trail_red", "jessie_002_waterSplat_trail_red", "jessie_002_waterStain_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 598}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_atk_end", "particleEmitterName": [null, "jessie_002_waterStain", "jessie_002_waterStain_circles", "jessie_002_waterSplat"], "effect": null, "layer": ["Above", "GroundHigh", "GroundHigh", "Object"], "groundBasis": [null, true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_atk_end_red", "flashWidth": null, "effectZ": null, "id": 601}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_atk_end_red", "particleEmitterName": [null, "jessie_002_waterStain", "jessie_002_waterStain_circles", "jessie_002_waterSplat_red"], "effect": null, "layer": ["Above", "GroundHigh", "GroundHigh", "Object"], "groundBasis": [null, true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 605}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Water_jess_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_002_atk_hit", "jessie_002_atk_hit_ground"], "particleEmitterName": [null, "jessie_002_waterSplat_big", "jessie_002_waterStain_circles"], "effect": null, "layer": ["Above", "GroundHigh", "Object", "GroundLow"], "groundBasis": [null, true, true], "flashColor": null, "scale": [140, 115, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 609}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Water_jess_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_002_atk_hit_red", "jessie_002_atk_hit_ground_red"], "particleEmitterName": [null, "jessie_002_waterSplat_big_red", "jessie_002_waterStain_circles"], "effect": null, "layer": ["Above", "GroundHigh", "Object", "GroundLow"], "groundBasis": [null, true, true], "flashColor": null, "scale": [140, 115, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 613}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Water_jess_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_002_atk_hitEnv", "jessie_002_atk_hit_ground"], "particleEmitterName": [null, "jessie_002_waterSplat_big", "jessie_002_waterStain_circles"], "effect": null, "layer": ["Above", "GroundHigh", "Object", "GroundLow"], "groundBasis": [null, true, true], "flashColor": null, "scale": [100, 80, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_atk_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 617}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_atk_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Water_jess_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_002_atk_hitEnv_red", "jessie_002_atk_hit_ground_red"], "particleEmitterName": [null, "jessie_002_waterSplat_big_red", "jessie_002_waterStain_circles"], "effect": null, "layer": ["Above", "GroundHigh", "Object", "GroundLow"], "groundBasis": [null, true, true], "flashColor": null, "scale": [100, 80, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 621}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_002_turret_trail", "jessie_002_waterStain_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_turret_trail_red", "flashWidth": null, "effectZ": null, "id": 625}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_002_turret_trail_red", "jessie_002_waterStain_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 627}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Water_jess_turret_atk", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_turret_attack", "particleEmitterName": [null, "jessie_002_waterSplat_small"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_turret_atk_red", "flashWidth": null, "effectZ": 250, "id": 629}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Water_jess_turret_atk", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_turret_attack_red", "particleEmitterName": [null, "jessie_002_waterSplat_small_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 250, "id": 631}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_turret_hit", "particleEmitterName": [null, "jessie_002_waterSplat_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [75, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_turret_hit_red", "flashWidth": null, "effectZ": null, "id": 633}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_turret_hit_red", "particleEmitterName": [null, "jessie_002_waterSplat_small_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [75, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 635}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_002_turret_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_atk_hitEnv", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 40, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_002_turret_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 637}, {"name": "jessie_002_turret_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_002_atk_hitEnv_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 40, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 638}, {"name": "jessie_003_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_atk_red", "flashWidth": null, "effectZ": null, "id": 639}, {"name": "jessie_003_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 30, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 640}, {"name": "jessie_003_atk_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_01", "gen_flame_02", "gen_flame_dark_01", "gen_flame_dark_02", "barley_def_ulti_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundLow", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 641}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_atk_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_01_red", "gen_flame_02_red", "gen_flame_dark_01_red", "gen_flame_dark_02_red", "barley_def_ulti_trail_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundLow", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 646}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_atk_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_003_atk_end", "jessie_003_atk_endGround"], "particleEmitterName": [null, "gen_death_smoke", "jessie_003_atk_end_spark"], "effect": null, "layer": ["Above", "GroundLow", "GroundHigh", "Above"], "groundBasis": [null, true, true], "flashColor": null, "scale": [100, 100, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_atk_end_red", "flashWidth": null, "effectZ": null, "id": 651}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_atk_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_003_atk_end_red", "jessie_003_atk_endGround_red"], "particleEmitterName": [null, "gen_death_smoke_red", "jessie_003_atk_end_spark_red"], "effect": null, "layer": ["Above", "GroundLow", "GroundHigh", "Above"], "groundBasis": [null, true, true], "flashColor": null, "scale": [100, 100, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 655}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_003_atk_hit_ground", "particleEmitterName": [null, "gen_death_smoke", "jessie_003_atk_hit_spark", "jessie_003_atk_hit_cloud", "jessie_003_atk_hit"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_atk_hit_red", "flashWidth": null, "effectZ": 50, "id": 659}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_003_atk_hit_ground", "particleEmitterName": [null, "gen_death_smoke_red", "jessie_003_atk_hit_spark_red", "jessie_003_atk_hit_cloud_red", "jessie_003_atk_hit_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 50, "id": 664}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_003_turret_atk", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_turret_atk_red", "flashWidth": null, "effectZ": 350, "id": 669}, {"name": "jessie_003_turret_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_003_turret_atk_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 350, "id": 670}, {"name": "jessie_003_turret_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_short_01", "gen_flame_short_02", "barley_def_ulti_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_turret_trail_red", "flashWidth": null, "effectZ": null, "id": 671}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_short_01_red", "gen_flame_short_02_red", "barley_def_ulti_trail_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 674}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_003_atk_hit_spark", "jessie_003_atk_hit_cloud", "jessie_003_atk_hit"], "effect": null, "layer": ["Above", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": [75, 60, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_turret_hit_red", "flashWidth": null, "effectZ": null, "id": 677}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_003_atk_hit_spark_red", "jessie_003_atk_hit_cloud_red", "jessie_003_atk_hit_red"], "effect": null, "layer": ["Above", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": [75, 60, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 680}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_003_atk_hit_cloud", "jessie_003_atk_hit"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [40, 35], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_turret_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 683}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_003_atk_hit_cloud_red", "jessie_003_atk_hit_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [40, 35], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 685}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_003_atk_hit_ground"], "particleEmitterName": "jessie_003_atk_hit_cloud", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [40, 30], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_turret_reached_red", "flashWidth": null, "effectZ": null, "id": 687}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_003_atk_hit_ground"], "particleEmitterName": "jessie_003_atk_hit_cloud_red", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [40, 30], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 689}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_SP_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_003_turret_SP_end"], "particleEmitterName": [null, "gen_death_smoke", "jessie_003_atk_hit_spark"], "effect": null, "layer": ["GroundLow", "GroundHigh", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [80, 50, 50, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_003_turret_SP_end_red", "flashWidth": null, "effectZ": null, "id": 691}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_003_turret_SP_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_003_turret_SP_end_red"], "particleEmitterName": [null, "gen_death_smoke_red", "jessie_003_atk_end_spark_red"], "effect": null, "layer": ["GroundLow", "GroundHigh", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [80, 50, 50, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 695}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_atk_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_01_purple", "gen_flame_02_purple", "gen_flame_dark_01_purple", "gen_flame_dark_02_purple", "jessie_004_atk_spark"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundLow", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 699}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_atk_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_01_redDark", "gen_flame_02_redDark", "gen_flame_dark_01_redDark", "gen_flame_dark_02_redDark", "jessie_004_atk_spark_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundLow", "GroundLow", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 704}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_atk_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_004_atk_end", "jessie_004_atk_endGround"], "particleEmitterName": [null, "jessie_004_atk_cloud", "jessie_004_atk_end_spark"], "effect": null, "layer": ["Above", "GroundLow", "GroundHigh", "Above"], "groundBasis": [null, true, true], "flashColor": null, "scale": [100, 100, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_atk_end_red", "flashWidth": null, "effectZ": null, "id": 709}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_atk_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["jessie_004_atk_end_red", "jessie_004_atk_endGround_red"], "particleEmitterName": [null, "jessie_004_atk_cloud_red", "jessie_004_atk_end_spark_red"], "effect": null, "layer": ["Above", "GroundLow", "GroundHigh", "Above"], "groundBasis": [null, true, true], "flashColor": null, "scale": [100, 100, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 713}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_003_atk_hit_ground", "particleEmitterName": [null, "jessie_004_atk_cloud", "jessie_004_atk_hit_spark", "jessie_004_atk_hit_cloud", "jessie_004_atk_hit"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_atk_hit_red", "flashWidth": null, "effectZ": 50, "id": 717}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_003_atk_hit_ground", "particleEmitterName": [null, "jessie_004_atk_cloud_red", "jessie_004_atk_hit_spark_red", "jessie_004_atk_hit_cloud_red", "jessie_004_atk_hit"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 50, "id": 722}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_004_turret_atk", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_turret_atk_red", "flashWidth": null, "effectZ": 350, "id": 727}, {"name": "jessie_004_turret_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_004_turret_atk_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 350, "id": 728}, {"name": "jessie_004_turret_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_short_purple_01", "gen_flame_short_purple_02", "jessie_004_atk_spark"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_turret_trail_red", "flashWidth": null, "effectZ": null, "id": 729}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_flame_short_redDark_01", "gen_flame_short_redDark_02", "jessie_004_atk_spark_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 732}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_004_atk_hit_spark", "jessie_004_atk_hit_cloud", "jessie_004_atk_hit"], "effect": null, "layer": ["Above", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": [75, 60, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_turret_hit_red", "flashWidth": null, "effectZ": null, "id": 735}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_004_atk_hit_spark_red", "jessie_004_atk_hit_cloud_red", "jessie_004_atk_hit_red"], "effect": null, "layer": ["Above", "Object", "Above"], "groundBasis": true, "flashColor": null, "scale": [75, 60, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 738}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_004_atk_hit_cloud", "jessie_004_atk_hit"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [40, 35], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_turret_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 741}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_004_atk_hit_cloud_red", "jessie_004_atk_hit_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [40, 35], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 743}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_003_atk_hit_ground"], "particleEmitterName": "jessie_004_atk_hit_cloud", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [40, 30], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_turret_reached_red", "flashWidth": null, "effectZ": null, "id": 745}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_003_atk_hit_ground"], "particleEmitterName": "jessie_004_atk_hit_cloud_red", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [40, 30], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 747}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_SP_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_004_turret_SP_end"], "particleEmitterName": [null, "jessie_004_atk_cloud", "jessie_004_atk_hit_spark"], "effect": null, "layer": ["GroundLow", "GroundHigh", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [80, 50, 50, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "jessie_004_turret_SP_end_red", "flashWidth": null, "effectZ": null, "id": 749}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_004_turret_SP_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_004_turret_SP_end_red"], "particleEmitterName": [null, "jessie_004_atk_cloud_red", "jessie_004_atk_hit_spark_red"], "effect": null, "layer": ["GroundLow", "GroundHigh", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [80, 50, 50, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 753}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_def_atk_trail", "effect": null, "layer": "Above", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 757}, {"name": "leon_def_atk_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk2End_cloud_blue", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_def_atk_reachaed_red", "flashWidth": null, "effectZ": null, "id": 758}, {"name": "leon_def_atk_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gene_def_atk2End_cloud_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 759}, {"name": "leon_002_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": true, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_002_atk", "effect": null, "layer": "Above", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_002_atk_red", "flashWidth": null, "effectZ": 400, "id": 760}, {"name": "leon_002_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": true, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_002_atk_red", "effect": null, "layer": "Above", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 761}, {"name": "leon_002_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_002_atk_trail", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_002_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 762}, {"name": "leon_002_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_002_atk_trail_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 763}, {"name": "leon_002_atk_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_atk2End_cloud_blue", "leon_002_atk_reached"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_002_atk_reachaed_red", "flashWidth": null, "effectZ": null, "id": 764}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_002_atk_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gene_def_atk2End_cloud_red", "leon_002_atk_reached_red"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 766}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_002_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit"], "particleEmitterName": "leon_002_atk_reached", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_002_atk_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 768}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_002_atk_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit_red"], "particleEmitterName": "leon_002_atk_reached_red", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 770}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_002_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit"], "particleEmitterName": ["leon_002_atk_reached", "jessie_003_atk_hit_cloud"], "effect": null, "layer": ["Object", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [120, 50, 160], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_002_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 772}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_002_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit_red"], "particleEmitterName": ["leon_002_atk_reached_red", "jessie_003_atk_hit_cloud_red"], "effect": null, "layer": ["Object", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [120, 50, 160], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 775}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "leon_003_atk", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 778}, {"name": "leon_003_atk_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["leon_003_atk_reached_egg", "leon_003_atk_egg_pieces", "leon_003_atk_hitSplat"], "effect": null, "layer": ["GroundLow", "GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_003_atk_reachaed_red", "flashWidth": null, "effectZ": null, "id": 779}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["leon_003_atk_reached_egg", "leon_003_atk_egg_pieces_red", "leon_003_atk_hitSplat"], "effect": null, "layer": ["GroundLow", "GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 782}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk_hit", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["leon_003_atk_hit_egg", "leon_003_atk_hit_eggYellow", "leon_003_atk_egg_pieces", "leon_003_atk_hitSplat", "leon_003_atk_hit"], "effect": null, "layer": ["Object", "Above", "GroundHigh", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_003_atk_hit_red", "flashWidth": null, "effectZ": [200, 220], "id": 785}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk_hit_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["leon_003_atk_hit_egg", "leon_003_atk_hit_eggYellow", "leon_003_atk_egg_pieces_red", "leon_003_atk_hitSplat", "leon_003_atk_hit_red"], "effect": null, "layer": ["Object", "Above", "GroundHigh", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": [200, 220], "id": 790}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk_hitEnv", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit"], "particleEmitterName": ["leon_003_atk_hit_egg", "leon_003_atk_hit_eggYellow", "leon_003_atk_egg_pieces"], "effect": null, "layer": ["Object", "Above", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [85, 85, 100, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_003_atk_hitEnv_red", "flashWidth": null, "effectZ": [200, 220], "id": 795}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk_hitEnv_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit_red"], "particleEmitterName": ["leon_003_atk_hit_egg", "leon_003_atk_hit_eggYellow", "leon_003_atk_egg_pieces_red"], "effect": null, "layer": ["Object", "Above", "GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [85, 85, 100, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": [200, 220], "id": 799}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_003_atk_trail_confetti", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 803}, {"name": "leon_003_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "leon_003_atk_trail_confetti_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 804}, {"name": "leon_003_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_ulti", "type": ["ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "cloud_line_1"], "particleEmitterName": [null, "leon_003_ulti_cloud", "leon_003_ulti_confetti", "leon_003_ulti_star"], "effect": null, "layer": ["GroundHigh", "Object", "GroundHigh", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [60, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "leon_003_ulti_red", "flashWidth": null, "effectZ": null, "id": 805}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "leon_003_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_ulti", "type": ["ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "cloud_line_1"], "particleEmitterName": [null, "leon_003_ulti_cloud", "leon_003_ulti_confetti_red", "leon_003_ulti_star"], "effect": null, "layer": ["GroundHigh", "Object", "GroundHigh", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [60, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 810}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["max_def_atk_trail_elec", "max_def_atk_trail_spark"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "max_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 815}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["max_def_atk_trail_elec_red", "max_def_atk_trail_spark_red"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 817}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Max_Atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "max_def_atk_shock", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "max_def_atk_red", "flashWidth": null, "effectZ": 200, "id": 819}, {"name": "max_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Max_Atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "max_def_atk_shock_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 820}, {"name": "max_def_atk_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["max_def_atk_reached", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": true, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "max_def_atk_reachaed_red", "flashWidth": null, "effectZ": null, "id": 821}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_atk_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["max_def_atk_reached_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": true, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 823}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Max_Atk_Hit", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit"], "particleEmitterName": "max_def_atk_hit", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "max_def_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 825}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Max_Atk_Hit", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "leon_002_atk_hit_red"], "particleEmitterName": "max_def_atk_hit_red", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 827}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_ulti_active", "loop": null, "followParent": [true, true, true, true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Max_Ulti", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["max_def_ulti_active", "max_def_ulti_active_ground"], "particleEmitterName": [null, "max_def_ulti_twinkle", "max_def_ulti_twinkling", "max_def_ulti_shock", "max_def_ulti_can", "max_def_ulti_drinkDrop"], "effect": null, "layer": ["Above", "GroundHigh", "Object", "Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true, true], "flashColor": null, "scale": [120, 300, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "max_def_ulti_active_red", "flashWidth": null, "effectZ": null, "id": 829}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "max_def_ulti_active_red", "loop": null, "followParent": [true, true, true, true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": null, "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["max_def_ulti_active_red", "max_def_ulti_active_ground_red"], "particleEmitterName": [null, "max_def_ulti_twinkle_red", "max_def_ulti_twinkling", "max_def_ulti_shock_red", "max_def_ulti_can", "max_def_ulti_drinkDrop"], "effect": null, "layer": ["Above", "GroundHigh", "Object", "Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true, true], "flashColor": null, "scale": [120, 300, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 836}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortis_def_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "mortis_def_atk", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 843}, {"name": "mortis_002_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_atk", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "mortis_002_atk", "particleEmitterName": [null, "mortis_002_atk_ground1", "mortis_002_atk_ground2", "mortis_002_atk_ground3", "mortis_002_atk_spark"], "effect": null, "layer": ["Object", "GroundLow", "GroundHigh", "GroundLow", "Above"], "groundBasis": [null, true, true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mortis_002_atk_red", "flashWidth": null, "effectZ": null, "id": 844}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortis_002_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_atk", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "mortis_002_atk_red", "particleEmitterName": [null, "mortis_002_atk_ground1", "mortis_002_atk_ground4", "mortis_002_atk_ground3", "mortis_002_atk_spark_red"], "effect": null, "layer": ["Object", "GroundLow", "GroundHigh", "GroundLow", "Above"], "groundBasis": [null, true, true, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 849}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortis_002_atk_ground", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["mortis_002_atk_ground1", "mortis_002_atk_ground2", "mortis_002_atk_ground3"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundLow"], "groundBasis": [true, true, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 854}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortis_002_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "jessie_def_atk_spark", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 857}, {"name": "mortis_002_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "mortis_002_atk_red_hit", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mortis_002_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 858}, {"name": "mortis_002_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "mortis_002_atk_hit", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 859}, {"name": "mortis_002_ulti", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_ulti", "type": ["ParticleEmitter", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "mortis_002_ulti", "mortis_002_ulti_ground"], "particleEmitterName": "cloudExplode_ground_purple", "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundTop"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mortis_002_ulti_red", "flashWidth": null, "effectZ": null, "id": 860}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortis_002_ulti_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_ulti", "type": ["ParticleEmitter", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "mortis_002_ulti_red", "mortis_002_ulti_ground_red"], "particleEmitterName": "cloudExplode_ground_purple", "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundTop"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 863}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortis_002_ulti_direct", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "mortis_002_ulti_direct", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 160, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mortis_002_ulti_direct_red", "flashWidth": null, "effectZ": 400, "id": 866}, {"name": "mortis_002_ulti_direct_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "mortis_002_ulti_direct_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 160, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 867}, {"name": "mortis_def_starPower_blood", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "mortis_def_sp_bloodDrop", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mortis_def_starPower_blood_red", "flashWidth": null, "effectZ": -200, "id": 868}, {"name": "mortis_def_starPower_blood_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "mortis_def_sp_bloodDrop_red", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": -200, "id": 869}, {"name": "nita_def_atk_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["nita_def_atk_cracks", "ground_fragments", "cloud_blue"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "nita_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 870}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nita_def_atk_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["nita_def_atk_cracks", "ground_fragments", "cloud_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "GroundHigh"], "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 873}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nita_def_atk_end_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "nita_def_atk_end_blue", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "nita_def_atk_end_red", "flashWidth": null, "effectZ": null, "id": 876}, {"name": "nita_def_atk_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "nita_def_atk_end_red", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 877}, {"name": "nita_def_ulti_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "cloud_blue_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "nita_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 878}, {"name": "nita_def_ulti_trail_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "cloud_red_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 879}, {"name": "nita_def_starPower_hit", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "nita_def_starPower_hit", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "nita_def_starPower_hit_red", "flashWidth": null, "effectZ": null, "id": 880}, {"name": "nita_def_starPower_hit_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "nita_def_starPower_hit_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 881}, {"name": "nita_def_ulti_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Nita_ulti_bear", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_blue", "nita_def_ulti_clouds_blue", "nita_def_ulti_ground_blue"], "particleEmitterName": "ground_fragments_lot_100", "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "nita_def_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 882}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nita_def_ulti_spawn_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Nita_ulti_bear", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_red", "nita_def_ulti_clouds_red", "nita_def_ulti_ground_red"], "particleEmitterName": "ground_fragments_lot_100", "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 886}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nita_003_ulti_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Nita_dog_summon", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_blue", "nita_003_ulti_ground_blue"], "particleEmitterName": ["ground_fragments_lot_100", "nita_003_ulti_clouds", "nita_003_ulti_bones"], "effect": null, "layer": ["GroundHigh", "Above", "GroundHigh", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "nita_003_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 890}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nita_003_ulti_spawn_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Nita_ulti_bear", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_red", "nita_003_ulti_ground_red"], "particleEmitterName": ["ground_fragments_lot_100", "nita_003_ulti_clouds_red", "nita_003_ulti_bones_red"], "effect": null, "layer": ["GroundHigh", "Above", "GroundHigh", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 895}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 50, "othersScreenShake": 20, "time": null, "sound": "MiniG_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["pam_def_atk_shock", "pam_def_atk_clouds"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_atk_red", "flashWidth": null, "effectZ": [200, 100], "id": 900}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 50, "othersScreenShake": 20, "time": null, "sound": "MiniG_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["pam_def_atk_shock_red", "pam_def_atk_clouds_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 902}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_atk_reachaed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["pam_def_atkEnd_blue", "ground_fragments_small"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_atk_reachaed_red", "flashWidth": null, "effectZ": null, "id": 904}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_atk_reachaed_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["pam_def_atkEnd_red", "ground_fragments_small"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 906}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["Effect", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": [null, "pam_def_atk_hit"], "effect": "Gen_hit", "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 908}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_ult_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "pam_def_ulti_trail", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_ult_trail_red", "flashWidth": null, "effectZ": null, "id": 910}, {"name": "pam_def_ult_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "pam_def_ulti_trail_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 911}, {"name": "pam_def_ulti_area_active", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "pam_def_ulti_area_active", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_ulti_area_active_red", "flashWidth": null, "effectZ": null, "id": 912}, {"name": "pam_def_ulti_area_active_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "pam_def_ulti_area_active_red", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 913}, {"name": "pam_def_ulti_area_loop", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF", "SWF"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["pam_def_ulti_area_loop", "pam_def_ulti_machine", "pam_def_ulti_machine_cover"], "particleEmitterName": null, "effect": null, "layer": ["GroundLow", "GroundLow", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_ulti_area_loop_red", "flashWidth": null, "effectZ": null, "id": 914}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_ulti_area_loop_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF", "SWF"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["pam_def_ulti_area_loop_red", "pam_def_ulti_machine_red", "pam_def_ulti_machine_cover_red"], "particleEmitterName": null, "effect": null, "layer": ["GroundLow", "GroundLow", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 917}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_starPower", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "pam_def_starPower", "particleEmitterName": [null, "pam_def_starP_twinkles"], "effect": null, "layer": ["GroundLow", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_starPower_red", "flashWidth": null, "effectZ": null, "id": 920}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_starPower_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "pam_def_starPower_red", "particleEmitterName": [null, "pam_def_starP_twinkles_red"], "effect": null, "layer": ["GroundLow", "Object"], "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 922}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_ulti_spawn", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Shrooms", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_blue"], "particleEmitterName": ["jessie_def_spawnCloud_blue", "jessie_def_spawnCloudGround_blue", "twinkle_vertical"], "effect": null, "layer": ["Object", "GroundHigh", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "pam_def_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 924}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "pam_def_ulti_spawn_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Shrooms", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_red"], "particleEmitterName": ["jessie_def_spawnCloud_red", "jessie_def_spawnCloudGround_red", "twinkle_vertical"], "effect": null, "layer": ["Object", "Object", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 928}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Marig_fire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": [null, "penny_def_atk_twinkles"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 932}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gold_trail_emitter", "penny_def_atk_trail"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 934}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk1_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gold_no_hit_explosion", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 936}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk1_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit", "gold_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_def_atk1_hit_red", "flashWidth": null, "effectZ": null, "id": 939}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk1_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_red", "gold_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 941}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk1_hit_env", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_env", "gold_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_def_atk1_hit_red", "flashWidth": null, "effectZ": null, "id": 943}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_atk2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "penny_def_atk2_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 945}, {"name": "penny_def_atk2_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gold_no_hit_explosion", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 946}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_turret_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "dynamike_attack_blue"], "particleEmitterName": ["cloudExplode_red", "cloudExplode_ground_red", "ground_fragments_lot_100", "dynamike_explode_red", "fire_spark_red_short"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 949}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_turret_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "explosion_rocket_rose", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_L", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 110, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 400, "id": 955}, {"name": "penny_def_ulti_spawn", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_blue"], "particleEmitterName": ["jessie_def_spawnCloud_blue", "jessie_def_spawnCloudGround_blue", "twinkle_vertical", "penny_def_ulti_woodFrag"], "effect": null, "layer": ["Object", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_def_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 956}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_def_ulti_spawn_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_red"], "particleEmitterName": ["jessie_def_spawnCloud_red", "jessie_def_spawnCloudGround_red", "twinkle_vertical", "penny_def_ulti_woodFrag"], "effect": null, "layer": ["Object", "Object", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 961}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_002_atk_trail_ball", "penny_002_atk_trail_ice"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_002_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 966}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_002_atk_trail_ball_red", "penny_002_atk_trail_ice_red"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 968}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk1_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_002_atk_noHit_explosion", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_002_atk1_reached_red", "flashWidth": null, "effectZ": null, "id": 970}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk1_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_002_atk_noHit_explosion_red", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 973}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk1_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit", "penny_002_atk_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_002_atk1_hit_red", "flashWidth": null, "effectZ": null, "id": 976}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk1_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_red", "penny_002_atk_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 978}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk1_hit_env", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_env", "penny_002_atk_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 980}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_atk2_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_002_atk2_reached", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 982}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_ulti_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_def_ulti_trail_blue", "penny_002_ulti_trail"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_002_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 985}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_ulti_spawn", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_blue"], "particleEmitterName": ["jessie_def_spawnCloud_blue", "jessie_def_spawnCloudGround_blue", "twinkle_vertical", "penny_002_ulti_iceBomb"], "effect": null, "layer": ["Object", "GroundHigh", "Above", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_002_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 987}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_ulti_spawn_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_red"], "particleEmitterName": ["jessie_def_spawnCloud_red", "jessie_def_spawnCloudGround_red", "twinkle_vertical", "penny_002_ulti_iceBomb_red"], "effect": null, "layer": ["Object", "Object", "Above", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 992}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_002_ulti_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_def_ulti_trail_red", "penny_002_ulti_trail_red"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 997}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_003_atk_trail_flowers", "penny_def_atk_trail"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 999}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_003_atk_trail_flowers_red", "penny_def_atk_trail"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1001}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk1_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_003_atk_noHit_explosion", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_003_atk1_reached_red", "flashWidth": null, "effectZ": null, "id": 1003}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk1_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_003_atk_noHit_explosion_red", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1006}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk1_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit", "penny_003_atk_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_003_atk1_hit_red", "flashWidth": null, "effectZ": null, "id": 1009}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk1_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_red", "penny_003_atk_hit_explosion_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1011}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk1_hit_env", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_env", "penny_003_atk_hit_explosion"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_003_atk1_hit_env_red", "flashWidth": null, "effectZ": null, "id": 1013}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk1_hit_env_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_def_atk1_hit_env", "penny_003_atk_hit_explosion_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1015}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_atk2_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["penny_003_atk2_reached", "ground_fragments_small", "gunSmoke_reached"], "effect": null, "layer": ["Above", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1017}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_ulti_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_def_ulti_trail_blue", "penny_003_ulti_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_003_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 1020}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_ulti_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_def_ulti_trail_red", "penny_003_ulti_trail_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1022}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_ulti_spawn", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_blue"], "particleEmitterName": ["jessie_def_spawnCloud_blue", "jessie_def_spawnCloudGround_blue", "twinkle_vertical", "penny_003_ulti_flowerBomb"], "effect": null, "layer": ["Object", "GroundHigh", "Above", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "penny_003_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 1024}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "penny_003_ulti_spawn_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_red"], "particleEmitterName": ["jessie_def_spawnCloud_red", "jessie_def_spawnCloudGround_red", "twinkle_vertical", "penny_003_ulti_flowerBomb_red"], "effect": null, "layer": ["Object", "Object", "Above", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1029}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_def_atk_direct", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_direct_blue", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_atk_direct_red", "flashWidth": null, "effectZ": 250, "id": 1034}, {"name": "poco_def_atk_direct_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_direct_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 250, "id": 1035}, {"name": "poco_def_atk_root", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_root_blue", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_atk_root_red", "flashWidth": null, "effectZ": 200, "id": 1036}, {"name": "poco_def_atk_root_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_root_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 1037}, {"name": "poco_def_ulti_root", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_root_blue", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_ulti_root_red", "flashWidth": null, "effectZ": 200, "id": 1038}, {"name": "poco_def_ulti_root_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_root_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 1039}, {"name": "poco_def_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["cloud_flat_blue", "poco_def_atk_trail_spark_blue"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 1040}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_def_atk_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["cloud_flat_red", "poco_def_atk_trail_spark_red"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1042}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_def_atk_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_def_atk_end", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_atk_end_red", "flashWidth": null, "effectZ": null, "id": 1044}, {"name": "poco_def_atk_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_def_atk_end_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1045}, {"name": "poco_def_hit_env", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_def_atk_hit_env", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_hit_env_red", "flashWidth": null, "effectZ": null, "id": 1046}, {"name": "poco_def_hit_env_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_def_atk_hit_env_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1047}, {"name": "poco_def_hit_char", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_def_atk_hit_char_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_def_hit_char_red", "flashWidth": null, "effectZ": null, "id": 1048}, {"name": "poco_def_hit_char_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_def_atk_hit_char", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1049}, {"name": "poco_def_ulti_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_def_ulti_flowers", "poco_def_ulti_particles", "poco_def_ulti_twirl"], "effect": null, "layer": ["GroundHigh", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1050}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_def_ultiEnd", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_ultiEnd", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1053}, {"name": "poco_002_atk_direct", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_direct_blue", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_atk_direct_red", "flashWidth": null, "effectZ": 250, "id": 1054}, {"name": "poco_002_atk_direct_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_direct_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 250, "id": 1055}, {"name": "poco_002_atk_root", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_root_blue", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_atk_root_red", "flashWidth": null, "effectZ": 200, "id": 1056}, {"name": "poco_002_atk_root_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_root_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 1057}, {"name": "poco_002_ulti_root", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_root_blue", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_ulti_root_red", "flashWidth": null, "effectZ": 200, "id": 1058}, {"name": "poco_002_ulti_root_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_ulti", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_root_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 1059}, {"name": "poco_002_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_002_cloud_blue", "poco_002_atk_trail_spark_blue", "poco_002_atk_trail_petals_blue"], "effect": null, "layer": ["GroundHigh", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 1060}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_002_atk_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_002_cloud_red", "poco_002_atk_trail_spark_red", "poco_002_atk_trail_petals_red"], "effect": null, "layer": ["GroundHigh", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1063}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_002_atk_end", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_002_atk_end_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_atk_end_red", "flashWidth": null, "effectZ": null, "id": 1066}, {"name": "poco_002_atk_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_002_atk_end_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1067}, {"name": "poco_002_hit_env", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_002_atk_end_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_hit_env_red", "flashWidth": null, "effectZ": null, "id": 1068}, {"name": "poco_002_hit_env_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_002_atk_end_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1069}, {"name": "poco_002_hit_char", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_hit_char_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 60, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_002_hit_char_red", "flashWidth": null, "effectZ": null, "id": 1070}, {"name": "poco_002_hit_char_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_atk_hit_char_blue", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 60, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1071}, {"name": "poco_002_ulti_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_002_ulti_flowers", "poco_002_ulti_twirl", "poco_002_ulti_particles_petal", "poco_002_ulti_particles_heart"], "effect": null, "layer": ["GroundHigh", "GroundHigh", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1072}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_002_ultiEnd", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_002_ultiEnd", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1076}, {"name": "poco_003_atk_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_003_atk_trail", "poco_003_atk_trail_notes"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 1077}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_003_atk_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_003_atk_trail_red", "poco_003_atk_trail_notes_red"], "effect": null, "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1079}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_003_atk_root", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_003_atk_notes", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_003_atk_root_red", "flashWidth": null, "effectZ": 200, "id": 1081}, {"name": "poco_003_atk_root_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poco_003_atk_notes_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 200, "id": 1082}, {"name": "poco_003_atk_direct", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_direct_blue", "particleEmitterName": [null, "poco_003_atk_broom"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "poco_003_atk_direct_red", "flashWidth": null, "effectZ": 250, "id": 1083}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_003_atk_direct_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "poco_def_atk_direct_red", "particleEmitterName": [null, "poco_003_atk_broom"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 250, "id": 1085}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_003_ulti_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poco_def_ulti_flowers", "poco_def_ulti_particles", "poco_def_ulti_twirl"], "effect": null, "layer": ["GroundHigh", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1087}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poco_003_ultiEnd", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "poco_003_ultiEnd", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1090}, {"name": "primo_003_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "primo_003_atk_projectile"], "particleEmitterName": "primo_003_atk_cloud", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "primo_003_atk_red", "flashWidth": null, "effectZ": null, "id": 1091}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "primo_003_atk_projectile_red"], "particleEmitterName": "primo_003_atk_cloud", "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1093}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_atk_use", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LL_Atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "primo_003_atk_sweat", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 700, "id": 1095}, {"name": "primo_003_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["primo_003_atk_hit_red", "primo_003_atk_hit_stars_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "primo_003_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 1096}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["primo_003_atk_hit", "primo_003_atk_hit_stars"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1098}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_ulti", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1100}, {"name": "primo_003_ulti_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LL_Ulti", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["primo_003_ulti_trail_confetti", "primo_003_ulti_trail"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "primo_003_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 1101}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_ulti_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LL_Ulti", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["primo_003_ulti_trail_confetti_red", "primo_003_ulti_trail_red"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1103}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_ulti_ground_hit", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "LL_Ulti_Hit", "type": ["SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["primo_003_ulti_after", "primo_003_ulti_flash", "cloud_line_1"], "particleEmitterName": [null, "primo_003_ulti_ground", "primo_003_ulti_fragments", "Hammer_ulti_cracks", "leon_003_ulti_cloud", "primo_003_ulti_confetti", "primo_003_ulti_star"], "effect": null, "layer": ["Above", "Above", "GroundHigh", "GroundHigh", "GroundLow", "Object", "GroundHigh", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 125, 130, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "primo_003_ulti_ground_hit_red", "flashWidth": null, "effectZ": null, "id": 1105}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_ulti_ground_hit_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": ["SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["primo_003_ulti_after_red", "primo_003_ulti_flash_red", "primo_003_ulti_ground_red", "cloud_line_1"], "particleEmitterName": [null, "primo_003_ulti_fragments", "Hammer_ulti_cracks", "leon_003_ulti_cloud", "primo_003_ulti_confetti_red", "primo_003_ulti_star"], "effect": null, "layer": ["Above", "Above", "GroundHigh", "GroundHigh", "GroundLow", "Object", "GroundHigh", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 125, 130, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1114}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_win", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["primo_003_winText", "primo_003_win_confetti"], "effect": null, "layer": ["GroundHigh", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 80], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1123}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "primo_003_lose", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "primo_003_lose", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1125}, {"name": "rico_ulti_trail_twinkles", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_ulti_trail_twinkles", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1126}, {"name": "rico_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_atk", "rico_def_ball_drop"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_def_atk_red", "flashWidth": null, "effectZ": null, "id": 1127}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_atk_red", "rico_def_ball_drop_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1129}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_ulti", "rico_def_ball_drop_ulti"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_def_ulti_red", "flashWidth": null, "effectZ": null, "id": 1131}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_ulti_red", "rico_def_ball_drop_ulti_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1133}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_smokeReached", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_def_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 1135}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_smokeReached_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1137}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_smokeReached_ulti", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_def_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 1139}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_def_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_def_smokeReached_ulti_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1141}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_atk", "rico_002_popcorn_drop"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_002_atk_red", "flashWidth": null, "effectZ": null, "id": 1143}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_atk_red", "rico_002_popcorn_drop_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1145}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_ulti", "rico_002_popcorn_drop_ulti"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_002_ulti_red", "flashWidth": null, "effectZ": null, "id": 1147}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_ulti_red", "rico_002_popcorn_drop_ulti_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1149}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_smokeReached", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_002_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 1151}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_smokeReached_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1153}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_smokeReached_ulti", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_002_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 1155}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_002_smokeReached_ulti_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1157}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_002_hit_env", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Trickshot_bullet", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_002_hitEnv_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_002_hit_env_red", "flashWidth": null, "effectZ": null, "id": 1159}, {"name": "rico_002_hit_env_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Trickshot_bullet", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_002_hitEnv_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1160}, {"name": "rico_002_hit_env_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Trickshot_bullet", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_002_hitEnv_ulti_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_002_hit_env_ulti_red", "flashWidth": null, "effectZ": null, "id": 1161}, {"name": "rico_002_hit_env_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Trickshot_bullet", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_002_hitEnv_ulti_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1162}, {"name": "rico_003_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_003_atk_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 1163}, {"name": "rico_003_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rico_003_atk_particle_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1164}, {"name": "rico_003_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_atk", "rico_003_gems_drop"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_003_atk_red", "flashWidth": null, "effectZ": null, "id": 1165}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_atk_red", "rico_003_gems_drop_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1167}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_ulti", "rico_003_gems_drop_ulti"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_003_ulti_red", "flashWidth": null, "effectZ": null, "id": 1169}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_ulti_red", "rico_003_gems_drop_ulti_red"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1171}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_smokeReached", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_003_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 1173}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_smokeReached_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1175}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_smokeReached_ulti", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rico_003_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 1177}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rico_003_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rico_003_smokeReached_ulti_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1179}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rosa_def_atk_swoosh", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rosa_def_atk_swoosh", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rosa_def_atk_swoosh_red", "flashWidth": null, "effectZ": null, "id": 1181}, {"name": "rosa_def_atk_swoosh_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rosa_def_atk_swoosh_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1182}, {"name": "rosa_def_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rosa_punch", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "rosa_def_atk_punch", "particleEmitterName": [null, "rosa_def_atk_leaves"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rosa_def_atk_red", "flashWidth": null, "effectZ": 500, "id": 1183}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rosa_def_atk_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rosa_punch", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "rosa_def_atk_punch_red", "particleEmitterName": [null, "rosa_def_atk_leaves_red"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1185}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rosa_def_ulti", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rosa_ulti", "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["rosa_def_ulti_use", "rosa_def_ulti_ground"], "particleEmitterName": [null, "rosa_def_ulti_leaves"], "effect": null, "layer": ["Above", "GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rosa_def_ulti_red", "flashWidth": null, "effectZ": 500, "id": 1187}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rosa_def_ulti_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rosa_ulti", "type": ["SWF", "SWF", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["rosa_def_ulti_use", "rosa_def_ulti_ground"], "particleEmitterName": [null, "rosa_def_ulti_leaves_red"], "effect": null, "layer": ["Above", "GroundHigh", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [120, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1190}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rosa_def_ulti_loop", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "rosa_def_ulti_loop", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 120, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1193}, {"name": "rosa_def_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rosa_def_hit", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rosa_def_hit_red", "flashWidth": null, "effectZ": null, "id": 1194}, {"name": "rosa_def_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rosa_def_hit_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1195}, {"name": "sandy_def_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_atk_trail_base", "sandy_def_atk_trail_baseUpper", "cloud_flat_blue", "sandy_def_atk_trail_stars", "sandy_def_atk_trail_twinkle"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundLow", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [60, 60, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 1196}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_atk_trail_base_red", "sandy_def_atk_trail_baseUpper_red", "cloud_flat_red", "sandy_def_atk_trail_stars_red", "sandy_def_atk_trail_twinkle_red"], "effect": null, "layer": ["GroundLow", "GroundHigh", "GroundLow", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [60, 60, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1201}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "sandy_def_atk_reached", "particleEmitterName": [null, "sandy_def_atk_cloudDis"], "effect": null, "layer": ["Object", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 1206}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "sandy_def_atk_reached", "particleEmitterName": [null, "sandy_def_atk_cloudDis_red"], "effect": null, "layer": ["Object", "GroundLow"], "groundBasis": null, "flashColor": null, "scale": [100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1208}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "sandy_def_atk_hit_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 1210}, {"name": "sandy_def_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "sandy_def_atk_hit", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1211}, {"name": "sandy_def_ulti_loop", "loop": false, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_tornado", "sandy_def_ulti_ground", "sandy_def_ulti_stars", "sandy_def_ulti_stars_middle", "sandy_def_ulti_stars_high", "sandy_def_ulti_star", "sandy_def_ulti_twinkles"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object", "Object", "Object", "Object", "Object"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_ulti_loop_red", "flashWidth": null, "effectZ": 50, "id": 1212}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_loop_red", "loop": false, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_tornado_red", "sandy_def_ulti_ground", "sandy_def_ulti_stars_red", "sandy_def_ulti_stars_middle_red", "sandy_def_ulti_stars_high_red", "sandy_def_ulti_star_red", "sandy_def_ulti_twinkles_red"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object", "Object", "Object", "Object", "Object"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 50, "id": 1219}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_starP1", "loop": false, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_tornado", "sandy_def_ulti_ground", "sandy_def_ulti_stars", "sandy_def_ulti_stars_middle", "sandy_def_ulti_stars_high", "sandy_def_ulti_star", "sandy_def_ulti_twinkles", "sandy_def_ulti_stone", "sandy_def_ulti_stone_bounce"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object", "Object", "Object", "Object", "Object", "GroundLow", "GroundLow"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100, 100, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_ulti_starP1_red", "flashWidth": null, "effectZ": 50, "id": 1226}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_starP1_red", "loop": false, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_tornado_red", "sandy_def_ulti_ground", "sandy_def_ulti_stars_red", "sandy_def_ulti_stars_middle_red", "sandy_def_ulti_stars_high_red", "sandy_def_ulti_star_red", "sandy_def_ulti_twinkles_red", "sandy_def_ulti_stone", "sandy_def_ulti_stone_bounce"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object", "Object", "Object", "Object", "Object", "GroundLow", "GroundLow"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100, 100, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 50, "id": 1235}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_starP2", "loop": false, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_tornado", "sandy_def_ulti_ground", "sandy_def_ulti_stars", "sandy_def_ulti_stars_middle", "sandy_def_ulti_stars_high", "sandy_def_ulti_star", "sandy_def_ulti_twinkles", "sandy_def_ulti_heal", "sandy_def_ulti_heal_dust"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object", "Object", "Object", "Object", "Object", "Object", "Object"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100, 100, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_ulti_starP2_red", "flashWidth": null, "effectZ": 50, "id": 1244}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_starP2_red", "loop": false, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_tornado", "sandy_def_ulti_ground", "sandy_def_ulti_stars", "sandy_def_ulti_stars_middle", "sandy_def_ulti_stars_high", "sandy_def_ulti_star", "sandy_def_ulti_twinkles", "sandy_def_ulti_heal_red", "sandy_def_ulti_heal_dust_red"], "effect": null, "layer": ["GroundHigh", "GroundLow", "Object", "Object", "Object", "Object", "Object", "Object", "Object"], "groundBasis": [true, true, true], "flashColor": null, "scale": [100, 100, 100, 100, 100, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 50, "id": 1253}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_trail_tornado", "sandy_def_atk_trail_stars", "sandy_def_atk_trail_twinkle", "sandy_def_ulti_trail_sleep"], "effect": null, "layer": ["GroundHigh", "Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 75, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 1262}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["sandy_def_ulti_trail_tornado", "sandy_def_atk_trail_stars_red", "sandy_def_atk_trail_twinkle_red", "sandy_def_ulti_trail_sleep_red"], "effect": null, "layer": ["GroundHigh", "Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 75, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1266}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sandy_def_ulti_explode", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "spike_003_atk1_cloud", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": true, "flashColor": null, "scale": 120, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "sandy_def_ulti_explode_red", "flashWidth": null, "effectZ": null, "id": 1270}, {"name": "sandy_def_ulti_explode_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "spike_003_atk1_cloud_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": true, "flashColor": null, "scale": 120, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1271}, {"name": "shelly_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Shotgun", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_M", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1272}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Utilshotgun", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "shelly_def_ulti_attack_blue", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_def_ulti_red", "flashWidth": null, "effectZ": 500, "id": 1274}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Utilshotgun", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "shelly_def_ulti_attack_red", "particleEmitterName": [null, "shell_shotgun"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1276}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_def_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gunSmoke_reached_multi_ulti", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_def_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 1278}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_def_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gunSmoke_reached_multi_ulti_red", "ground_fragments_small"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1280}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Slimey_shelly_shot", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "shelly_003_atk", "particleEmitterName": [null, "shelly_003_atk_bubble_burst", "shelly_003_atk_liquid_burst"], "effect": null, "layer": ["Object", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_atk_red", "flashWidth": null, "effectZ": 500, "id": 1282}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Slimey_shelly_shot", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "shelly_003_atk_red", "particleEmitterName": [null, "shelly_003_atk_bubble_burst_red", "shelly_003_atk_liquid_burst_red"], "effect": null, "layer": ["Object", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1285}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "shelly_003_atk_trail_bubble", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_atk_trail_red", "flashWidth": null, "effectZ": null, "id": 1288}, {"name": "shelly_003_atk_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "shelly_003_atk_trail_bubble_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1289}, {"name": "shelly_003_atk_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_reached_ground", "shelly_003_atk_reached_bubble", "shelly_003_hitSplat", "shelly_003_atk_hit_skull", "shelly_003_atk_hit"], "effect": null, "layer": ["GroundHigh", "Object", "Object", "Object", "Object"], "groundBasis": true, "flashColor": null, "scale": [30, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_atk_hit_red", "flashWidth": null, "effectZ": null, "id": 1290}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_reached_ground_red", "shelly_003_atk_reached_bubble_red", "shelly_003_hitSplat_red", "shelly_003_atk_hit_skull_red", "shelly_003_atk_hit_red"], "effect": null, "layer": ["GroundHigh", "Object", "Object", "Object", "Object"], "groundBasis": true, "flashColor": null, "scale": [30, 100, 100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1295}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_reached_ground", "shelly_003_atk_reached_bubble", "shelly_003_hitSplat"], "effect": null, "layer": ["GroundHigh", "Object", "Object"], "groundBasis": true, "flashColor": null, "scale": [30, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_atk_reached_red", "flashWidth": null, "effectZ": null, "id": 1300}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_reached_ground_red", "shelly_003_atk_reached_bubble_red", "shelly_003_hitSplat_red"], "effect": null, "layer": ["GroundHigh", "Object", "Object"], "groundBasis": true, "flashColor": null, "scale": [30, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1303}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_hitEnv_bubble", "shelly_003_hitSplat", "shelly_003_atk_hitEnv"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_atk_hitEnv_red", "flashWidth": null, "effectZ": null, "id": 1306}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_atk_hitEnv_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_hitEnv_bubble_red", "shelly_003_hitSplat_red", "shelly_003_atk_hitEnv_red"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1309}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Slimey_shotgun_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "shelly_003_atk", "particleEmitterName": [null, "shelly_003_atk_bubble_burst"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [150, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_ulti_red", "flashWidth": null, "effectZ": 500, "id": 1312}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Slimey_shotgun_ulti", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "shelly_003_atk_red", "particleEmitterName": [null, "shelly_003_atk_bubble_burst_red"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": [150, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 500, "id": 1314}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_ulti_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_ulti_reached_cat", "shelly_003_atk_reached_ground"], "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 30], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_ulti_reached_red", "flashWidth": null, "effectZ": null, "id": 1316}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_ulti_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_ulti_reached_cat_red", "shelly_003_atk_reached_ground_red"], "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [100, 30], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1318}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_ulti_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "shelly_003_ulti_trail_bubble", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_ulti_trail_red", "flashWidth": null, "effectZ": null, "id": 1320}, {"name": "shelly_003_ulti_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "shelly_003_ulti_trail_bubble_red", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1321}, {"name": "shelly_003_ulti_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_reached_ground", "shelly_003_atk_reached_bubble", "shelly_003_hitSplat", "shelly_003_atk_hit_skull", "shelly_003_atk_hit"], "effect": null, "layer": ["GroundHigh", "Object", "Object", "Object", "Object"], "groundBasis": true, "flashColor": null, "scale": [30, 100, 100, 120, 130], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1322}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shelly_003_ulti_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shelly_003_atk_reached_ground_red", "shelly_003_atk_reached_bubble_red", "shelly_003_hitSplat_red", "shelly_003_atk_hit_skull_red", "shelly_003_atk_hit_red"], "effect": null, "layer": ["GroundHigh", "Object", "Object", "Object", "Object"], "groundBasis": true, "flashColor": null, "scale": [30, 100, 100, 120, 130], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "shelly_003_ulti_hit", "flashWidth": null, "effectZ": null, "id": 1327}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_def_atk1_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_atk1_ground", "spike_def_atk1_cloud"], "particleEmitterName": [null, "ground_fragments_lot_100"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_def_atk1_explosion_red", "flashWidth": null, "effectZ": null, "id": 1332}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_def_atk1_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_atk1_ground_red", "spike_def_atk1_cloud_red"], "particleEmitterName": [null, "ground_fragments_lot_100"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1336}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_def_atk2_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gunSmoke_reached", "spike_def_atk2_fragments"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_def_atk2_reached_red", "flashWidth": null, "effectZ": null, "id": 1340}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_def_atk2_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gunSmoke_reached", "spike_def_atk2_fragments_red"], "effect": null, "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1342}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_def_ulti_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_ulti_ground", "spike_def_ulti_stinger_field", "spike_def_ulti_cloud"], "particleEmitterName": [null, "ground_fragments_lot_230", "spike_def_ulti_stinger_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 230, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_def_ulti_explosion_red", "flashWidth": null, "effectZ": null, "id": 1344}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_def_ulti_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_ulti_ground_red", "spike_def_ulti_stinger_field_red", "spike_def_ulti_cloud_red"], "particleEmitterName": [null, "ground_fragments_lot_230", "spike_def_ulti_stinger_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 230, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1350}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_002_atk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "spike_atk", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "spike_002_atk", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 1356}, {"name": "spike_002_ulti", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_002_ulti", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_002_ulti_red", "flashWidth": null, "effectZ": 300, "id": 1357}, {"name": "spike_002_ulti_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_002_ulti_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 300, "id": 1358}, {"name": "spike_002_atk1_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_002_atk1_trail_petals_blue", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_002_atk1_trail_red", "flashWidth": null, "effectZ": null, "id": 1359}, {"name": "spike_002_atk1_trail_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_002_atk1_trail_petals_red", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1360}, {"name": "spike_002_atk1_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_atk1_ground", "spike_def_atk1_cloud"], "particleEmitterName": [null, "ground_fragments_lot_100"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_002_atk1_explosion_red", "flashWidth": null, "effectZ": null, "id": 1361}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_002_atk1_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_atk1_ground_red", "spike_def_atk1_cloud_red"], "particleEmitterName": [null, "ground_fragments_lot_100"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1365}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_002_atk2_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_002_sakura_reached", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1369}, {"name": "spike_002_ulti_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_ulti_ground", "spike_002_ulti_stinger_field", "spike_def_ulti_cloud"], "particleEmitterName": [null, "ground_fragments_lot_230", "spike_def_ulti_stinger_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 230, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_002_ulti_explosion_red", "flashWidth": null, "effectZ": null, "id": 1370}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_002_ulti_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_ulti_ground_red", "spike_002_ulti_stinger_field_red", "spike_def_ulti_cloud_red"], "particleEmitterName": [null, "ground_fragments_lot_230", "spike_def_ulti_stinger_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 230, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1376}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_003_atk1_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_003_atk1_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_003_atk1_trail_red", "flashWidth": null, "effectZ": 150, "id": 1382}, {"name": "spike_003_atk1_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_003_atk1_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 150, "id": 1383}, {"name": "spike_003_atk1_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_003_atk1_soot", "spike_003_atk1_cloud"], "particleEmitterName": [null, "ground_fragments_lot_100"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_003_atk1_explosion_red", "flashWidth": null, "effectZ": null, "id": 1384}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_003_atk1_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_003_atk1_soot", "spike_003_atk1_cloud_red"], "particleEmitterName": [null, "ground_fragments_lot_100"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1388}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_003_atk2_reached", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "spike_003_atk2_soot"], "particleEmitterName": "cloudExplode_small", "effect": null, "layer": ["Object", "GroundLow"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_003_atk2_reached_red", "flashWidth": null, "effectZ": null, "id": 1392}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_003_atk2_reached_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "spike_003_atk2_soot"], "particleEmitterName": "cloudExplode_small_red2", "effect": null, "layer": ["Object", "GroundLow"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1394}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_003_ulti_trail", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_003_ulti_trail", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_003_ulti_trail_red", "flashWidth": null, "effectZ": 150, "id": 1396}, {"name": "spike_003_ulti_trail_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "spike_003_ulti_trail_red", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 150, "id": 1397}, {"name": "spike_003_ulti_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_ulti_ground", "spike_003_ulti_stinger_field", "spike_def_ulti_cloud"], "particleEmitterName": [null, "ground_fragments_lot_230", "spike_def_ulti_stinger_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 230, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "spike_003_ulti_explosion_red", "flashWidth": null, "effectZ": null, "id": 1398}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "spike_003_ulti_explosion_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "spike_def_ulti_ground_red", "spike_003_ulti_stinger_field_red", "spike_def_ulti_cloud_red"], "particleEmitterName": [null, "ground_fragments_lot_230", "spike_def_ulti_stinger_twinkles"], "effect": null, "layer": ["Object", "GroundHigh", "GroundHigh", "Above", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 230, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1404}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tara_def_ulti_starPower_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_blue", "tara_def_ulti_sp_cloud", "tara_def_ulti_sp_ground"], "particleEmitterName": "ground_fragments_lot_100", "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "tara_def_ulti_starPower_spawn_red", "flashWidth": null, "effectZ": null, "id": 1410}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tara_def_ulti_starPower_spawn_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Nita_ulti_bear", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_red", "tara_def_ulti_sp_cloud_red", "tara_def_ulti_sp_ground_red"], "particleEmitterName": "ground_fragments_lot_100", "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1414}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_def_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Tick_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "cloudExplode_small", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "tick_def_atk_red", "flashWidth": null, "effectZ": null, "id": 1418}, {"name": "tick_def_atk_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Tick_atk", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "cloudExplode_small_red2", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1419}, {"name": "tick_def_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Tick_ulti", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["tick_def_ulti_use_cloud", "tick_def_ulti_use_particles"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "tick_def_ulti_red", "flashWidth": null, "effectZ": [300, 300], "id": 1420}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_def_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Tick_ulti", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["tick_def_ulti_use_cloud_red", "tick_def_ulti_use_particles_red"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": [300, 300], "id": 1422}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_def_ulti_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_blue", "tick_def_summon_cloud", "tick_def_summon_ground"], "particleEmitterName": [null, "tick_def_ulti_use_particles"], "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "tick_def_ulti_spawn_red", "flashWidth": null, "effectZ": null, "id": 1424}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_def_ulti_spawn_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": [null, "nita_def_ulti_groundAbove_red", "tick_def_summon_cloud_red", "tick_def_summon_ground_red"], "particleEmitterName": [null, "tick_def_ulti_use_particles_red"], "effect": null, "layer": ["GroundHigh", "Above", "Above", "GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1429}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_def_atk1_explode", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Tick_atk_split", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "spike_003_atk1_cloud"], "particleEmitterName": "fire_spark_red_short", "effect": null, "layer": ["Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "tick_def_atk1_explode_red", "flashWidth": null, "effectZ": null, "id": 1434}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_def_atk1_explode_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Tick_atk_split", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "spike_003_atk1_cloud_red"], "particleEmitterName": "fire_spark_red_short", "effect": null, "layer": ["Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1436}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Electricity_hit_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_hit", "type": ["SWF", "SWF"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["elecHit_red", "elecHit_ground_red"], "particleEmitterName": null, "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1438}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Electricity_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_hit", "type": ["SWF", "SWF"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["elecHit_blue", "elecHit_ground_blue"], "particleEmitterName": null, "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "Electricity_hit_red", "flashWidth": null, "effectZ": null, "id": 1440}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "electricity_Trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_elecBall_trail_blue", "jessie_def_atk_spark"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "electricity_Trail_red", "flashWidth": null, "effectZ": null, "id": 1442}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "electricity_Trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_elecBall_trail_red", "jessie_def_atk_spark_red"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1444}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "electricity_end_blue", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_elecBall_end_blue", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 160, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "electricity_end_red", "flashWidth": null, "effectZ": null, "id": 1446}, {"name": "electricity_end_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "jessie_elecBall_end_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 160, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1447}, {"name": "plasma_trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_def_ulti_trail_blue", "trail_twinkle_01"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "plasma_trail_red", "flashWidth": null, "effectZ": null, "id": 1448}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "plasma_trail_red", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["jessie_def_ulti_trail_red", "trail_twinkle_01"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1450}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nuts_bolts_metal_small", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "Effect"], "fileName": null, "exportName": null, "particleEmitterName": "Nuts_and_bolts_particle_50", "effect": [null, "Gen_hit"], "layer": ["GroundHigh", "Object"], "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1452}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "nuts_bolts_metal_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "jessie_def_destroy_shorter", "particleEmitterName": [null, "cloudExplode_red", "Nuts_and_bolts_particle_100", "cloudExplode_ground_red"], "effect": null, "layer": ["Above", "Object", "Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1454}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "SpawnTurret", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Roboturret", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_blue"], "particleEmitterName": ["jessie_def_spawnCloud_blue", "jessie_def_spawnCloudGround_blue", "twinkle_vertical"], "effect": null, "layer": ["Object", "GroundHigh", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "SpawnTurret_enemy", "flashWidth": null, "effectZ": null, "id": 1458}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "WaterJessTurret", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Water_jess_turret", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_blue"], "particleEmitterName": ["jessie_def_spawnCloud_blue", "jessie_def_spawnCloudGround_blue", "twinkle_vertical"], "effect": null, "layer": ["Object", "GroundHigh", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "SpawnTurret_enemy", "flashWidth": null, "effectZ": null, "id": 1462}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "SpawnTurret_enemy", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Roboturret", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "jessie_def_spawn_red"], "particleEmitterName": ["jessie_def_spawnCloud_red", "jessie_def_spawnCloudGround_red", "twinkle_vertical"], "effect": null, "layer": ["Object", "Object", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1466}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "jessie_def_turret_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects_brawler.sc", "exportName": "gunSmoke_S", "particleEmitterName": [null, "shell_100"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 250, "id": 1470}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Dummy_effect", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1472}, {"name": "bull_sware", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "sware_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1473}, {"name": "poisoned", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poisoned_particle_50", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1474}, {"name": "poisoned_crippled", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["crippled_particle", "poisoned_particle_100"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1475}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "slowed", "loop": [true, true], "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["buff_speedDown_arrow", "buff_speedDown_ground"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1477}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "buff_speedUp", "loop": [true, true], "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["buff_speedUp_arrow", "buff_speedUp_ground"], "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1479}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "buff_shield", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "shield_loop", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 80, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 250, "id": 1481}, {"name": "luchador_special_trail", "loop": true, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "Effect"], "fileName": null, "exportName": null, "particleEmitterName": "burning_particle_lucha_super_50", "effect": [null, "Lucha_Specialt_Smoke"], "layer": ["Above", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1482}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "burning", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "burning_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1484}, {"name": "burning_ground_brock_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "burning_particle_brock", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1485}, {"name": "burning_ground_brock", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "brock_fire_ground"], "particleEmitterName": "burning_particle_brock_blue", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "burning_ground_brock_red", "flashWidth": null, "effectZ": null, "id": 1486}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_Effect", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_round_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1488}, {"name": "shotgun_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Hit_dust_100", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1489}, {"name": "blackhole_no_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["no_hit_effect", "one_card_flying"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1490}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "no_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "no_hit_effect", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1492}, {"name": "hammer_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hit_dust_100", "gen_hit_flash_100"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1493}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Hammer_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hammer_trail_particle_50", "Hammer_trail_rocks_big", "Hammer_trail_rocks", "Hammer_trail_dust_100"], "effect": null, "layer": ["GroundHigh", "Above", "Above", "Above"], "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1495}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Purple_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "purple_trail_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1499}, {"name": "Gen_dust_puff", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "dust_puff", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1500}, {"name": "Gen_move_fx", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "walking_smoke_100", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1501}, {"name": "Gen_alien_move_fx", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "gen_move_fx", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1502}, {"name": "Blink_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": [null, 200], "sound": "Sound_Blink", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": "teleport_light1_fx_red", "particleEmitterName": [null, "Teleport_light_particles"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": 60, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1503}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Blink", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": [null, 200], "sound": "Sound_Blink", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": "teleport_light1_fx", "particleEmitterName": [null, "Teleport_light_particles"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": 60, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "Blink_red", "flashWidth": null, "effectZ": null, "id": 1505}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poison_trail_old", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["poison_trail_particle_75", "gen_trail_particle_33"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1507}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_Grenade", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sound_Grenade", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_trail_particle_50", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1509}, {"name": "UltiReady", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Ulti_ready", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1510}, {"name": "UltiGain", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Ulti_gain", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1511}, {"name": "Grass_wind_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_wind", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1512}, {"name": "Box_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_wood", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1513}, {"name": "mine_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1514}, {"name": "Grass_hit_fx_yellow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit_yellow", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1515}, {"name": "Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1516}, {"name": "grassfield_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1517}, {"name": "oasis_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1518}, {"name": "mine_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big_mine"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1519}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Grass_explo_fx_yellow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big_yellow"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1521}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "grassfield_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big", "leaves_on_ground"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1523}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "oasis_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big", "leaves_on_ground"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1526}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1529}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mine_Rock_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Rock_hit_debris1_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1531}, {"name": "mine_blocking2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "mine_Rock_hit_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1532}, {"name": "blocking2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Rock_hit_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1533}, {"name": "Rock_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Rock_hit_debris1", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1534}, {"name": "mine_blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "mine_Rock_explo_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1535}, {"name": "blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_wood_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1536}, {"name": "Gen_wood_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters", "planks", "planks_fly", "fire_after_explosion", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "GroundLow", "GroundHigh", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1537}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mine_Rock_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1_mine", "Rock_explo_debris2_mine", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1543}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "oasis_fragile_explo_debris", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["fragile_explo_debris_oasis", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1547}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "fragile_explo_debris", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["fragile_explo_debris", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1550}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Rock_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1", "Rock_explo_debris2", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Object", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1553}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "StartCharge", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1557}, {"name": "StartBuildTurretUlti", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Robocon", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1558}, {"name": "Bullet_bounce_enemy", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_bouncefx_dot_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1559}, {"name": "Bullet_bounce", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_bouncefx_dot_blue_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "Bullet_bounce_enemy", "flashWidth": null, "effectZ": null, "id": 1560}, {"name": "lucha_smoke_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "lucha_smoke_emitter", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1561}, {"name": "Smoke_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "shotgun_trail_smoke_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1562}, {"name": "Lucha_Specialt_Smoke", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "lucha_smoke_emitter_super", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1563}, {"name": "Rocket_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["rocket_trail_smoke_emitter", "rocket_spark_emitter"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1564}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gunslinger_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_100", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter_smaller"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1566}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gunslinger_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "gunslinger_fire_ulti", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_100", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter_smaller"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1571}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shotgun_girl_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Shotgun", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_shotgun", "muzzle_flash", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1576}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shotgun_girl_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Utilshotgun", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 100, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1581}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "No_ammo_shotgungirl", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "No_ammo_shotgungirl", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1584}, {"name": "No_ammo_bea", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bea_No_Ammo", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1585}, {"name": "Dry_fire_shotgungirl", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Dry_fire_shotgungirl", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1586}, {"name": "Dry_fire_sandy", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_no_ammo", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1587}, {"name": "dry_fire_gene", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_dry", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1588}, {"name": "Dry_fire_leon", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Dry_fire_leon", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1589}, {"name": "dry_fire_bowdude", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bow_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1590}, {"name": "dry_fire_max", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Max_Dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1591}, {"name": "Emz_dryfire", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Emz_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1592}, {"name": "dry_fire_mechanic", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1593}, {"name": "crow_dryfire", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "crow_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1594}, {"name": "Brock_dryfire", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Brock_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1595}, {"name": "dry_fire_barkeep", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Barkeep_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1596}, {"name": "Minig_dryfire", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Minig_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1597}, {"name": "arcade_dryfire", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "8bit_noammo", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1598}, {"name": "Mystic_dryfire", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mystic_dryfire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1599}, {"name": "Dry_fire_whirlwind", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_no_ammo", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1600}, {"name": "bull_dude_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_shotgun", "muzzle_flash", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1601}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tnt_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1606}, {"name": "tnt_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1607}, {"name": "mech_mike_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_mike_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1608}, {"name": "mech_mike_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_mike_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1609}, {"name": "rocket_girl_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1610}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rocket_girl_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1613}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "trickshot_dude_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_100", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter_smaller"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1616}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "trickshot_dude_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Trickshot_fire_ulti", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_100", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter_smaller"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1621}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "cactus_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "spike_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1626}, {"name": "cactus_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1627}, {"name": "bow_dude_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bow_fire", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1628}, {"name": "bow_dude_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1629}, {"name": "bo_002_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_bo_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1630}, {"name": "barkeep_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Barkeep_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1631}, {"name": "barkeep_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Barkeep_ulti_throw", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1632}, {"name": "luchador_attack_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Lucha_punch", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1633}, {"name": "luchador_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Lucha_punch", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "luchador_attack_red", "flashWidth": null, "effectZ": null, "id": 1634}, {"name": "boss_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "huge_explosion"], "particleEmitterName": ["Small_Dust_emitter_100", "Small_explosion_streaks_emitter_100", "Nuts_and_bolts_particle_big", "Nuts_and_bolts_particle_big", "Gen_Small_Debris_emitter_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1635}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "hammer_ulti_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_100", "Small_explosion_streaks_emitter_100", "Hammer_ulti_rocks", "Hammer_ulti_cracks", "Gen_Small_Debris_emitter_100"], "effect": null, "layer": ["Object", "Object", "GroundHigh", "GroundLow", "Object", "GroundHigh"], "groundBasis": [null, true, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1641}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "blackhole_hit_char", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Gen_Small_Debris_emitter_100", "Hit_dust_100", "gen_hit_flash_100"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mechanic_attack_red", "flashWidth": null, "effectZ": null, "id": 1647}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "blackhole_hit_envy", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc"], "exportName": "card_hit_envy", "particleEmitterName": [null, "one_card_flying"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1650}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "blackhole_hit_envy_enemy", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "card_hit_envy_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1652}, {"name": "mechanic_attack_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Jess_shoot", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 30, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1653}, {"name": "mechanic_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Jess_shoot", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "mechanic_attack_red", "flashWidth": null, "effectZ": null, "id": 1654}, {"name": "Water_jess_attack_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Water_jess_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack_red", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1655}, {"name": "Water_jess_atk", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Water_jess_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack", "particleEmitterName": null, "effect": null, "layer": "GroundLow", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1656}, {"name": "mechanic_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_throw", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1657}, {"name": "Water_jess_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Water_jess_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1658}, {"name": "shaman_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": ["Earth_atk", "Nita_atk_vo"], "type": ["Effect", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": null, "particleEmitterName": null, "effect": "mechanic_attack", "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [null, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1659}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "shaman_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Nita_ulti_throw", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1661}, {"name": "bear_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "undertaker_attack", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1662}, {"name": "undertaker_attack", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "slash_gen", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1663}, {"name": "undertaker_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1664}, {"name": "dead_mariachi_attack_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sound_attack_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 200, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 100, "id": 1665}, {"name": "dead_mariachi_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sound_attack", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 200, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "dead_mariachi_attack_red", "flashWidth": null, "effectZ": 100, "id": 1666}, {"name": "dead_mariachi_attack_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sound_attack_ulti_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1667}, {"name": "dead_mariachi_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sound_attack_ulti", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "dead_mariachi_attack_ulti_red", "flashWidth": null, "effectZ": null, "id": 1668}, {"name": "bull_dude_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rhinocharge", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1669}, {"name": "bull_dude_ulti_loop", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hammer_trail_particle_75", "Hammer_trail_rocks", "Hammer_trail_dust_75"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1670}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "luchador_ulti", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Lucha_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1673}, {"name": "sniper_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 250, "othersScreenShake": null, "time": null, "sound": "Sniper_atk", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["shell_150", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter_smaller"], "effect": null, "layer": ["Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1674}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sniper_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sniper_ulti", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_dust_puff", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1678}, {"name": "minigun_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 50, "othersScreenShake": 20, "time": null, "sound": "MiniG_fire", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["muzzle_flash_white_tiny", "gen_small_smoke_emitter_darker"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1679}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "minigun_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "MiniG_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1681}, {"name": "charge_fx", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "charge_fx_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1682}, {"name": "turret_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_shotgun", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1683}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "takedamage_gen", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 200, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1688}, {"name": "reload_shotgun_girl", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1689}, {"name": "reload_bea", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bea_Reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1690}, {"name": "reload_max", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Max_Reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1691}, {"name": "reload_sandy", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sandy_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1692}, {"name": "reload_rosa", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Rosa_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1693}, {"name": "reload_gene", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Gene_atk_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1694}, {"name": "reload_leon", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1695}, {"name": "reload_gunslinger", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1696}, {"name": "reload_bull_dude", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1697}, {"name": "reload_rocket_girl", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Brock_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1698}, {"name": "reload_trickshot_dude", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1699}, {"name": "reload_cactus", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Spike_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1700}, {"name": "reload_barkeep", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Barkeep_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1701}, {"name": "reload_mechanic", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1702}, {"name": "reload_tnt_dude", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "TNT_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1703}, {"name": "reload_crow", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "crow_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1704}, {"name": "reload_undertaker", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1705}, {"name": "reload_dead_mariachi", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Poco_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1706}, {"name": "reload_bow_dude", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bow_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1707}, {"name": "reload_sniper", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sniper_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1708}, {"name": "reload_minigun", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "MiniG_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1709}, {"name": "reload_bonethrower", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1710}, {"name": "reload_blackhole", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mystic_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1711}, {"name": "reload_barrel_bot", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1712}, {"name": "reload_artillery_dude", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "MiniG_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1713}, {"name": "reload_tick", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Tick_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1714}, {"name": "reload_whirlwind", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1715}, {"name": "reload_baseball", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bibi_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1716}, {"name": "reload_arcade", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "8bit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1717}, {"name": "Emz_reload", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Emz_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1718}, {"name": "Gen_Big_Explosion", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": "Sound_Gen_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["big_explosion_lines_emitter", "big_explosion_streaks_emitter", "big_Dust_emitter", "big_Hot_dust_emitter", "Gen_Small_Debris_emitter_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1719}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_Very_Big_Explosion", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": "Sound_Gen_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["very_big_explosion_lines_emitter", "very_big_explosion_streaks_emitter", "very_big_Dust_emitter", "very_big_Hot_dust_emitter", "Gen_Small_Debris_emitter_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1724}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_Explosion", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_small_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 130, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1729}, {"name": "gen_take_damage", "loop": null, "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1730}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "low_health", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Low_health_1_loop", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1733}, {"name": "very_low_health", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Low_health_2_loop", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1734}, {"name": "bgrfx", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bgr_test_emitter", "bgr_test_trail_spark_emitter"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1735}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sniper_landing_smoke_ring", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sniper_land", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "smoke_ring", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1737}, {"name": "ground_hit_800", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "hammer_ulti_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 230, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1738}, {"name": "explosion_1150", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_small_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1739}, {"name": "explosion_1200", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_small_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1740}, {"name": "explosion_200", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_70", "Small_explosion_streaks_emitter_70", "Gen_Small_Debris_emitter_70"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1741}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_300", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_95", "Small_explosion_streaks_emitter_95", "Gen_Small_Debris_emitter_95"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 95], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1745}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_450", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_120", "Small_explosion_streaks_emitter_120", "Gen_Small_Debris_emitter_120"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1749}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_600", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_190", "Small_explosion_streaks_emitter_190", "Gen_Small_Debris_emitter_190"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 190], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1753}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_800", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_230", "Small_explosion_streaks_emitter_230", "Gen_Small_Debris_emitter_230"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1757}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_rocket_rose", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_95", "Small_explosion_streaks_emitter_95", "Gen_Small_Debris_emitter_95"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 95], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1761}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_rocket_rose_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "explosion_rocket_rose_ulti", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_120", "Small_explosion_streaks_emitter_120", "Gen_Small_Debris_emitter_120"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1765}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_tnt_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "dynamike_attack_blue"], "particleEmitterName": ["cloudExplode_red", "cloudExplode_ground_red", "ground_fragments_lot_100", "dynamike_explode_red", "fire_spark_red_short"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "explosion_tnt_dude_red", "flashWidth": null, "effectZ": null, "id": 1769}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_tnt_dude_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "dynamike_attack_red"], "particleEmitterName": ["cloudExplode_red", "cloudExplode_ground_red", "ground_fragments_lot_100", "dynamike_explode_red", "fire_spark_red_short"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Above", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1775}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_tnt_dude_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_TNT_explosion", "type": ["SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["cloudExplode_huge", "dynamike_attack_huge_blue", "dynamike_attack_explode_huge", "cloudExplode_huge_ground"], "particleEmitterName": [null, "fire_spark_red_shortHuge", "explosion_debris_strong"], "effect": null, "layer": ["Above", "GroundHigh", "Above", "GroundHigh", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 110, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "explosion_tnt_dude_ulti_red", "flashWidth": null, "effectZ": null, "id": 1781}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_tnt_dude_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_TNT_explosion", "type": ["SWF", "SWF", "SWF", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc", "sc/effects_brawler.sc"], "exportName": ["cloudExplode_huge", "dynamike_attack_huge_red", "dynamike_attack_explode_huge", "cloudExplode_huge_ground"], "particleEmitterName": [null, "fire_spark_red_shortHuge", "explosion_debris_strong"], "effect": null, "layer": ["Above", "GroundHigh", "Above", "GroundHigh", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 110, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1787}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Solid_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_metal", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1793}, {"name": "explosion_cactus", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Cactus_explo", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_95", "Small_explosion_streaks_emitter_95", "Gen_Small_Debris_emitter_95"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 95], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1794}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_cactus_ulti_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2", "cactus_field_red"], "particleEmitterName": ["Small_Dust_emitter_230", "Small_explosion_streaks_emitter_230", "Gen_Small_Debris_emitter_230"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1798}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_cactus_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2", "cactus_field"], "particleEmitterName": ["Small_Dust_emitter_230", "Small_explosion_streaks_emitter_230", "Gen_Small_Debris_emitter_230"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh", "Above"], "groundBasis": [null, true, true], "flashColor": null, "scale": [null, 230, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "explosion_cactus_ulti_red", "flashWidth": null, "effectZ": null, "id": 1803}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_barkeep", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_bottle_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gen_hit_flash_190", "barkeep_shards", "barkeep_splat", "barkeep_smoke", "Small_Dust_emitter_100"], "effect": null, "layer": ["Object", "Object", "GroundHigh", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1808}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_barkeep_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Barkeep_ulti_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["barkeep_smoke_ulti", "barkeep_fire", "barkeep_splat_ulti"], "effect": null, "layer": ["Above", "GroundHigh", "GroundHigh"], "groundBasis": [false, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1813}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_bow_dude", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_95", "Small_explosion_streaks_emitter_95", "Gen_Small_Debris_emitter_95"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 95], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1816}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Lucha_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Punch_impact", "type": ["ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "Primo_hit"], "particleEmitterName": ["Hit_dust_0", "gen_hit_flash_100"], "effect": null, "layer": ["Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1820}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_hit_melee", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Punch_impact", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hit_dust_200", "gen_hit_flash_300"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1823}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Trickshot_hit_env", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Trickshot_bullet", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "trickshot_hit_ring_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1825}, {"name": "oasis_blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1", "Rock_explo_debris2", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1826}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Green_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1830}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Green_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Green_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1832}, {"name": "darryl_shield", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "darryl_def_starPower_shield", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1833}, {"name": "Spawn_Shield", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "spawnshield_fx", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1834}, {"name": "Spawn_mine", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bo_mine_spawn", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1835}, {"name": "Spawn_sniper_bomb", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Piper_mine_drop", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1836}, {"name": "bonethrower_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1837}, {"name": "bonethrower_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1838}, {"name": "blackhole_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mystic_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "blackhole_slash", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1839}, {"name": "blackhole_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mystic_ulti_deploy", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1840}, {"name": "blackhole_ulti_suck_enemy", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 100, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "Black_hole_wortex_red"], "particleEmitterName": ["Small_Dust_emitter_230", "Small_explosion_streaks_emitter_230"], "effect": null, "layer": ["Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1841}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "blackhole_ulti_suck", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 100, "time": null, "sound": "Black_hole", "type": ["ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "Black_hole_wortex"], "particleEmitterName": ["Small_Dust_emitter_230", "Small_explosion_streaks_emitter_230"], "effect": null, "layer": ["Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "blackhole_ulti_suck_enemy", "flashWidth": null, "effectZ": null, "id": 1844}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "laser_ball_throw", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 250, "othersScreenShake": null, "time": null, "sound": "Throw_bawl", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "bb_kick", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1847}, {"name": "laser_ball_throw_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 350, "othersScreenShake": null, "time": null, "sound": "Throw_bawl_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "bb_kick_ulti", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1848}, {"name": "laser_ball_catch", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 250, "othersScreenShake": null, "time": null, "sound": "Catch_bawl", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "bb_catch", "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": 30, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1849}, {"name": "laser_ball_catch_other", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 250, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "bb_catch", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 30, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1850}, {"name": "blackhole_ulti_damage", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_TNT_explosion", "type": ["ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": [null, "black_hole_projectile_afterexplosion"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1851}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "boss", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "boss_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1854}, {"name": "laser_ball_glow", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF"], "fileName": ["sc/effects.sc", "sc/effects.sc"], "exportName": ["bb_gradient", "bb_round"], "particleEmitterName": null, "effect": null, "layer": ["Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1855}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "laser_ball_glow_ulti", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "bb_gradient", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1857}, {"name": "laser_ball_goal", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 450, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "Effect"], "fileName": null, "exportName": null, "particleEmitterName": ["confetti_flying", "confetti_explosion", "Gen_Big_Debris_emitter", "huge_explosion_streaks_emitter"], "effect": [null, "Gen_Explosion"], "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [null, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1858}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "laser_ball_fly", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bb_trail_small_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1863}, {"name": "laser_ball_fly_ulti", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["bb_trail_ulti", "fire_after_explosion", "magic_native_particle", "Hammer_trail_rocks", "Hammer_trail_dust_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1864}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "luchador_ulti_ground_hit_special", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "burning_particle_lucha", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1869}, {"name": "luchador_ulti_ground_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "hammer_ulti_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 230, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1870}, {"name": "TntDude_bone_trail_1", "loop": [true, true], "followParent": [true, true], "followParentAngle": null, "followBone": "RGunBone", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": null, "exportName": [null, "tnt_flame"], "particleEmitterName": "gen_trail_particle_50", "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1871}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "TntDude_bone_trail_2", "loop": [true, true], "followParent": [true, true], "followParentAngle": null, "followBone": "LGunBone", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": null, "exportName": [null, "tnt_flame"], "particleEmitterName": "gen_trail_particle_50", "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": [null, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1873}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barrel_bot_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Rhinofire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_shotgun", "muzzle_flash", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1875}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "barrel_bot_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Barrel_bot_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1880}, {"name": "barrel_bot_ulti_loop", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hammer_trail_particle_75", "Hammer_trail_rocks", "Hammer_trail_dust_75"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1881}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "artillery_dude_turret_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "explosion_rocket_rose", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1884}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "artillery_dude_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Marig_fire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "muzzle_flash", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1888}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "artillery_dude_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1892}, {"name": "explosion_artillery_dude_turret", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_120", "Small_explosion_streaks_emitter_120", "Gen_Small_Debris_emitter_120"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1893}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Spawn_rocketgirl_bomb", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Piper_mine_drop", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1897}, {"name": "coop_melee_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_atk", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1898}, {"name": "coop_fast_melee_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Jess_shoot", "type": "SWF", "fileName": "sc/effects.sc", "exportName": "electricity_attack_red", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 30, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1899}, {"name": "coop_boss_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mortis_atk", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1900}, {"name": "coop_ranged_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": "muzzle_flash", "particleEmitterName": [null, "shell_shotgun", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1901}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "coop_boss_ranged_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Robotfire", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": "muzzle_flash", "particleEmitterName": [null, "shell_shotgun", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1906}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "boss_extra_death_effect", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "Sound_Gen_explosion", "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "hammer_ulti_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 230, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1911}, {"name": "robo_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["magic_spark_exlposion", "Gen_dust_emitter_big"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1912}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_cluster_bomb_air", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 50, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_120", "Small_explosion_streaks_emitter_120", "Gen_Small_Debris_emitter_120"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 120], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1914}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tutorial_robo_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Roboturret", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["magic_spark_exlposion", "Gen_dust_emitter_big"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1918}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "hammer_dude_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Hammer_hit", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": "Small_explosion_streaks_emitter_100", "effect": null, "layer": ["Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1920}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "hammer_dude_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Hammer_u_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_explosion_streaks_emitter_100", "ground_fragments_lot_100", "Hammer_ulti_cracks"], "effect": null, "layer": ["Object", "Object", "GroundHigh", "Object"], "groundBasis": [null, true, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1922}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gold_Trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gold_trail_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1926}, {"name": "gold_no_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_nohit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gold_no_hit_explosion", "no_hit_effect", "gen_hit_flash_100"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1927}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gold_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Marig_hit", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["gold_hit_explosion", "no_hit_effect", "gen_hit_flash_100"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1930}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "SpawnArtilleryTurret", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Penny_turret_spawn", "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "Gen_dust_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1933}, {"name": "hammer_dude_start_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Hammer_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1934}, {"name": "hammer_dude_start_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Hammer_u_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1935}, {"name": "stunned", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "stunned_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1936}, {"name": "Crow_bone_trail_1", "loop": true, "followParent": true, "followParentAngle": null, "followBone": "R_wing_04_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_flame_trail_large_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1937}, {"name": "Crow_bone_trail_2", "loop": true, "followParent": true, "followParentAngle": null, "followBone": "L_wing_04_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_flame_trail_large_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1938}, {"name": "Crow_bone_trail_3", "loop": true, "followParent": true, "followParentAngle": null, "followBone": "R_wing_03_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_flame_trail_small_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1939}, {"name": "Crow_bone_trail_4", "loop": true, "followParent": true, "followParentAngle": null, "followBone": "L_wing_03_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "crow_flame_trail_small_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1940}, {"name": "flame_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "flame_trail_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1941}, {"name": "Spawn_buff", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bo_mine_spawn", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1942}, {"name": "hook_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": "Shotgun", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "shell_shotgun", "muzzle_flash", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1943}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "meteor_area_explosion", "loop": [null, true], "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": 600, "othersScreenShake": 600, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_270", "Small_explosion_streaks_emitter_230", "Gen_Small_Debris_emitter_230", "meteor_shards_50"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 230], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1948}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "hook_ulti_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1953}, {"name": "power_up_bottle_sparkle", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "power_up_bottle_sparkle_trail", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1954}, {"name": "meteor_warning", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Meteor_seq", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1955}, {"name": "powerup_indicator", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Powerup_seq", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1956}, {"name": "boss_warning", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Boss_seq", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1957}, {"name": "flame_turret_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "burning_particle_lucha_super_100", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1958}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Collect_powerup", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Get_powerup", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "collect_glow1"], "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1962}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "rosa_attack_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Lucha_punch", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1964}, {"name": "rosa_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Lucha_punch", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "rosa_attack_red", "flashWidth": null, "effectZ": null, "id": 1965}, {"name": "ninja_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1966}, {"name": "mushroom_heal", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "mushroom_particles", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1967}, {"name": "raidboss_skill_warning_short", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "raidboss_warning", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "raidboss_skill_warning_short", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1968}, {"name": "raidboss_skill_warning_medium", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "raidboss_warning", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "raidboss_skill_warning_medium", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1969}, {"name": "raidboss_skill_warning_long", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "raidboss_warning", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "raidboss_skill_warning_long", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1970}, {"name": "raid_boss_ranged_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "raidboss_attack", "type": ["SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": "muzzle_flash", "particleEmitterName": [null, "shell_shotgun", "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1971}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "raidboss_rocket_warning", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "raidboss_rocket_attack", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1976}, {"name": "raidboss_rocket_explosion", "loop": [null, true], "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": 600, "othersScreenShake": 600, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_320", "Small_explosion_streaks_emitter_270", "Gen_Small_Debris_emitter_270", "meteor_shards_80"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 270], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1977}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "burning_ground_raid_boss", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "burning_particle_raid_boss", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1982}, {"name": "healing_spawn", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Shrooms", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1983}, {"name": "ninja_go_invisible", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_ulti", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["magic_spark_exlposion", "Gen_dust_emitter_big"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1984}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "ninja_out_from_invisible", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Leon_ulti_end", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1986}, {"name": "hero_spawn", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Char_respawn", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "hero_spawn_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "hero_spawn_enemy", "flashWidth": null, "effectZ": null, "id": 1987}, {"name": "hero_spawn_enemy", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Enemy_char_respawn", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "hero_spawn_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1988}, {"name": "coop_boss_skill_warning", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "raidboss_skill_warning_long", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1989}, {"name": "barkeep_wizard_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1990}, {"name": "barkeep_wizard_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Wiz_barley_fireball", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1991}, {"name": "explosion_barkeep_wizard", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "fireball_explosion_blue"], "particleEmitterName": ["gen_hit_flash_190", "Small_Dust_emitter_70", "Gen_Small_Debris_emitter_70", "fire_spark_blue"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "explosion_barkeep_wizard_red", "flashWidth": null, "effectZ": null, "id": 1992}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "snowy_Rock_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1_mine", "Rock_explo_debris2_mine", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 1997}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "snowy_blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "mine_Rock_explo_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2001}, {"name": "snowy_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big_mine"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2002}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "snowy_Rock_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Rock_hit_debris1_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2004}, {"name": "snowy_blocking2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "mine_Rock_hit_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2005}, {"name": "snowy_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2006}, {"name": "explosion_barkeep_wizard_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "fireball_explosion_red"], "particleEmitterName": ["gen_hit_flash_190", "Small_Dust_emitter_70", "Gen_Small_Debris_emitter_70", "fire_spark_red"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2007}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_ulti_barkeep_wizard", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "fireball_explosion_ulti_blue"], "particleEmitterName": ["gen_hit_flash_190", "Small_Dust_emitter_70", "Gen_Small_Debris_emitter_70", "fire_ulti_spark_blue"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "explosion_ulti_barkeep_wizard_red", "flashWidth": null, "effectZ": null, "id": 2012}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "explosion_ulti_barkeep_wizard_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 150, "othersScreenShake": 50, "time": null, "sound": "Wiz_barley_fireball_hit", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "fireball_explosion_ulti_red"], "particleEmitterName": ["gen_hit_flash_190", "Small_Dust_emitter_70", "Gen_Small_Debris_emitter_70", "fire_ulti_spark_red"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2017}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "fireball_trail_blue", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["fireball_trail_blue", "fireball_trail_blue_spark"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "fireball_trail_red", "flashWidth": null, "effectZ": null, "id": 2022}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "fireball_trail_red", "loop": null, "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["fireball_trail_red", "fireball_trail_red_spark"], "effect": null, "layer": ["GroundHigh", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2024}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "fire_spark_trail", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "fire_spark_trail", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2026}, {"name": "fire_spark_trail_huge", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "fire_spark_trail_huge", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2027}, {"name": "trail_temp", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "plasma_trail_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "trail_temp_red", "flashWidth": null, "effectZ": null, "id": 2028}, {"name": "trail_temp_red", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "plasma_trail_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2029}, {"name": "Mariachi_hit_red", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sound_hit_red", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 50, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2030}, {"name": "Mariachi_hit", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sound_hit", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 50, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "Mariachi_hit_red", "flashWidth": null, "effectZ": null, "id": 2031}, {"name": "Poco_Trail_special", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Poco_Trail_special_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2032}, {"name": "safe_explosion", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Gems_flying", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2033}, {"name": "Poison_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "Poison_hit"], "particleEmitterName": ["Hit_dust_200", "gen_hit_flash_300", "poison_trail_particle_300"], "effect": null, "layer": ["Above", "Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2034}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Trash_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["Effect", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": [null, "trash_hit_particle"], "effect": "Gen_hit", "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2038}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hit_dust_200", "gen_hit_flash_300"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2040}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_trail_particle_50", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2042}, {"name": "shotgun_trail_small", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "shotgun_trail_small_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2043}, {"name": "sparkle_trail_dark_minion", "loop": [true, true], "followParent": [true, true], "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "tara_minion_glow"], "particleEmitterName": "sparkle_trail_particle_black_minion", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2044}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "sparkle_trail_dark", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "sparkle_trail_particle_black", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2046}, {"name": "sparkle_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "sparkle_trail_particle", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2047}, {"name": "poison_trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poison_trail_particle_50", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2048}, {"name": "Gen_Trail_dust_darker", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_trail_small_particle_smoke_darker", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2049}, {"name": "Gen_Trail_dust", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_trail_small_particle_smoke", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2050}, {"name": "Gen_Trail_small", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_trail_small_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2051}, {"name": "Gen_Beam_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "gen_beam_trail_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2052}, {"name": "Gen_Ground_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2053}, {"name": "Bats", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "bat_trail_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2054}, {"name": "magic_Trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["magic_spark_trail_emitter", "electricity_ring_trail_emitter"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2055}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Sniper_Trail_special", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sniper_trail", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "sniper_trail_emitter_special", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2057}, {"name": "Sniper_Trail", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sniper_trail", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "sniper_trail_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2058}, {"name": "Blink_old", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": [null, 130], "sound": null, "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "ExplosionGroundGlowBlue", "ElectricLightning", "ElectricGlowBall"], "particleEmitterName": "Stunner", "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 60, 60, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2059}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Plasmoid_glow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["SWF", "SWF"], "fileName": ["sc/effects.sc", "sc/effects.sc"], "exportName": ["LevelUpGroundGlow", "LevelUpFx"], "particleEmitterName": null, "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 20, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2063}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "xp_bar_effect", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Death_sparkle_still1", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2065}, {"name": "Healing_old", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2066}, {"name": "Immunity_old", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2067}, {"name": "Blob_fx", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "blob_fx_particles", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2068}, {"name": "Collect_plasmoid_old", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": [null, 130], "sound": "Orb_get", "type": ["ParticleEmitter", "SWF", "SWF", "SWF"], "fileName": [null, "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": [null, "ExplosionGroundGlowBlue", "ElectricLightning", "ElectricGlowBall"], "particleEmitterName": "Stunner", "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 60, 60, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2069}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Health_fx", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "health_fx_particles", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2073}, {"name": "heal_area_fx", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "heal_area_particles", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2074}, {"name": "Collect_plasmoid", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Orb_get", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "collect_glow1"], "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2075}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Ring_Trail", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Ring_trail_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2077}, {"name": "Healing", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Health_collect_emitter", "heal_particle"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2078}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "HealingBig", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sound_Heal", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": ["Health_collect_emitter", "heal_particle"], "effect": null, "layer": ["Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2080}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "poison_fog", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poison_fog_emitter", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2082}, {"name": "poison_skull", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "poison_fog_skull_particle", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2083}, {"name": "gen_troop_death", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": null, "particleEmitterName": ["ground_explosion", "ground_splat_emitter", "ground_splat_small", "splats_flying", "Death_Dust_emitter"], "effect": null, "layer": ["Above", "GroundHigh", "GroundHigh", "Object", "Object", "Object"], "groundBasis": [null, true, true], "flashColor": null, "scale": [null, 50], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2084}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_small_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_70", "Small_explosion_streaks_emitter_70", "Gen_Small_Debris_emitter_70"], "effect": null, "layer": ["Object", "Object", "Object", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 70], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2090}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Gen_small_explosion_2", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 150, "time": null, "sound": "Sound_Gen_small_explosion", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Small_Dust_emitter_70", "Small_explosion_streaks_emitter_70", "ground_explosion", "sparks", "Gen_Small_Debris_emitter_70"], "effect": null, "layer": ["Object", "Object", "Above", "Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2094}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bandit_reload", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "bandit_reload", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2099}, {"name": "laser_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "LaserShot01", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "laser_muzzle_emitter"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2100}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tgrenade_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Timedgrenade", "type": ["SWF", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": [null, "laser_muzzle_emitter"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2102}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "grenade_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Sound_Grenade", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2104}, {"name": "Spawn_plasmoid", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Orb_spawn", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2105}, {"name": "sniper_hit", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": 50, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "sniper_hit", "particleEmitterName": null, "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": 50, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2106}, {"name": "robo_wars_box_spawn", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bo_mine_spawn", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["magic_spark_exlposion", "Small_Dust_emitter_100"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2107}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "whirlwind_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": null, "time": null, "sound": null, "type": ["Effect", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": null, "particleEmitterName": null, "effect": "mechanic_attack", "layer": ["GroundHigh", "Object"], "groundBasis": null, "flashColor": null, "scale": [null, 100], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2109}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "siege_base_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "explosion_rocket_rose", "type": "SWF", "fileName": "sc/effects_brawler.sc", "exportName": "siegeSmoke", "particleEmitterName": [null, "muzzle_flash_smaller", "shooting_spark_emitter", "gen_small_smoke_emitter"], "effect": null, "layer": ["Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": 600, "id": 2111}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "siege_base_destroyed", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_TNT_explosion", "type": ["ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects_brawler.sc"], "exportName": [null, "dynamike_attack_huge_red"], "particleEmitterName": [null, "SiegeBase_attack_explode_huge", "SiegeBase_cloudExplode_huge_ground", "fire_spark_red_shortHuge", "explosion_debris_strong"], "effect": null, "layer": ["Above", "GroundHigh", "Above", "GroundHigh", "Above", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2115}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Carl_hitEnv", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk_hit_return", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Hit_dust_200", "gen_hit_flash_300"], "effect": null, "layer": ["Above", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2121}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "carl_def_atk_trail_return", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk_return", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_atk_whirl", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": "carl_def_atk_trail_return_red", "flashWidth": null, "effectZ": null, "id": 2123}, {"name": "carl_def_atk_trail_return_red", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Carl_atk_return", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "carl_def_atk_whirl_red", "effect": null, "layer": "GroundHigh", "groundBasis": true, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2124}, {"name": "mine_cart_trail", "loop": [true, true], "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["walking_smoke_300", "fire_spark_trail"], "effect": null, "layer": ["GroundHigh", "GroundHigh"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2125}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "baseball_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2127}, {"name": "baseball_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "tnt_attack", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2128}, {"name": "gen_sparks", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "gen_sparks", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2129}, {"name": "sewer_mist", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "sewer_mist", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2130}, {"name": "retropolis_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit_retro", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2131}, {"name": "retropolis_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big_retro"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2132}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "gen_sparks_2", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "gen_sparks_2", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2134}, {"name": "retropolis_Rock_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "Rock_hit_debris1_retro", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2135}, {"name": "retropolis_blocking2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "tire_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2136}, {"name": "retropolis_blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "tire_explo", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2137}, {"name": "retropolis_Rock_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "Rock_explo_debris1_retro", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2138}, {"name": "retropolis_fragile_explo_debris", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": "fragile_explo_debris_retro", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2139}, {"name": "fence_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Box_hit_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2140}, {"name": "fence_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_wood_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2141}, {"name": "crate_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Box_hit_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2142}, {"name": "crate_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_wood_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2143}, {"name": "barrel_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Box_hit_fx", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2144}, {"name": "barrel_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "Effect", "fileName": null, "exportName": null, "particleEmitterName": null, "effect": "Gen_wood_explosion", "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 133, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2145}, {"name": "retropolis_fence_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Fence_hit_retro", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2146}, {"name": "retropolis_fence_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Fence_explo_debris_retro", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2147}, {"name": "retropolis_barrel_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "blue_barrel_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2148}, {"name": "retropolis_barrel_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["blue_barrel_explosion", "blue_barrel_fly", "fire_after_explosion", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2149}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "retropolis_crate_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters_orange", "planks_fly_orange", "fire_after_explosion", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2155}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "bench_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_wood", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_blue", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2160}, {"name": "bench_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters_blue", "planks_blue", "planks_fly_blue", "fire_after_explosion", "Explo_dust_100", "ground_explosion_small_100", "bench_explo_debris"], "effect": null, "layer": ["Object", "GroundHigh", "Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2161}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Brock_exhaust_1", "loop": true, "followParent": true, "followParentAngle": null, "followBone": "L_exhaust_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "brock_003_idleSmoke", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2168}, {"name": "Brock_exhaust_2", "loop": true, "followParent": true, "followParentAngle": null, "followBone": "R_exhaust_s", "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "brock_003_idleSmoke", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2169}, {"name": "Collect_speed", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Starpower_speed", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "collect_glow1"], "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2170}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Collect_berserk", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bull_berserk", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "collect_glow1"], "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2172}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Collect_shield", "loop": null, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Starpower_shield", "type": ["ParticleEmitter", "SWF"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "collect_glow1"], "particleEmitterName": "Point_collect_emitter", "effect": null, "layer": ["Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2174}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "tick_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2176}, {"name": "tick_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2177}, {"name": "cactus_003_attack", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_spike_atk", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2178}, {"name": "cactus_003_attack_ulti", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Mech_spike_ulti", "type": "SWF", "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2179}, {"name": "bossrace_skill_warning", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "raidboss_skill_warning_short", "effect": null, "layer": "Above", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2180}, {"name": "mortuary_fog", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "mortuary_fog_emitter", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 80, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2181}, {"name": "mortuary_fog_big", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "mortuary_fog_emitter", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 100, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2182}, {"name": "mortuary_water_bubbles", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "mortuary_bubbles", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2183}, {"name": "bossrace_rocket_explosion", "loop": [null, true], "followParent": [null, true], "followParentAngle": null, "followBone": null, "ownScreenShake": 200, "othersScreenShake": 200, "time": null, "sound": "explosion_rocket_rose", "type": ["ParticleEmitter", "ParticleEmitter", "SWF", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc"], "exportName": [null, "gen_explosion_ring2"], "particleEmitterName": ["Small_Dust_emitter_320", "Small_explosion_streaks_emitter_270", "Gen_Small_Debris_emitter_270", "meteor_shards_80"], "effect": null, "layer": ["Object", "Object", "Object", "Above", "Object"], "groundBasis": [null, true], "flashColor": null, "scale": [null, 270], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2184}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_Green_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_wood", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["mortuary_bat", "planks_fly_mortuary", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Above", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [100, 85], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2189}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_Green_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_wood", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_mortuary", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2193}, {"name": "mortuary_barrel_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_wood", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_mortuary", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2194}, {"name": "mortuary_barrel_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters_mortuary", "planks_mortuary", "planks_fly_mortuary", "fire_after_explosion_green", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2195}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_crate_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_wood", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_mortuary", "effect": null, "layer": "GroundHigh", "groundBasis": false, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2201}, {"name": "mortuary_crate_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters_mortuary", "planks_mortuary", "planks_fly_mortuary", "fire_after_explosion_green", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2202}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2208}, {"name": "mortuary_Grass_hit_fx_yellow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2209}, {"name": "mortuary_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big_mine"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2210}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_Grass_explo_fx_yellow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["Explo_dust_120", "Grass_hit_big_mine"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2212}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_Rock_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Rock_hit_debris1_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2214}, {"name": "mortuary_Rock_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1_mine", "Rock_explo_debris2_mine", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": [75, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2215}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_blocking2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Rock_hit_debris1_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2219}, {"name": "mortuary_blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1_mine", "Rock_explo_debris2_mine", "Explo_dust_100", "ground_explosion_small_50"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh"], "groundBasis": [null, true], "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2220}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_fence_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Rock_hit_debris1_mine", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2224}, {"name": "mortuary_fence_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": "Bullet_rico_rock", "type": ["ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1_mine", "Rock_explo_debris2_mine"], "effect": null, "layer": ["Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [75, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2225}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "mortuary_fragile_explo_debris", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": "sc/effects.sc", "exportName": null, "particleEmitterName": ["blue_barrel_explosion", "blue_barrel_hit", "fire_after_explosion_green", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [null, 75], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2227}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "Shield_Boss_Race", "loop": true, "followParent": true, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "SWF", "fileName": "sc/effects.sc", "exportName": "spawnshield_fx", "particleEmitterName": null, "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 240, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2232}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "ship_cannon_fire_1", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_TNT_explosion", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "ship_cannon_fire_r1", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2234}, {"name": "ship_cannon_fire_2", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 450, "othersScreenShake": 150, "time": null, "sound": "Sound_TNT_explosion", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "ship_cannon_fire_l1", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": 300, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2235}, {"name": "darryls_Grass_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2236}, {"name": "darryls_Grass_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Explo_dust_120", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2237}, {"name": "darryls_Grass_hit_fx_yellow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_grass", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Grass_hit", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2238}, {"name": "darryls_Grass_explo_fx_yellow", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "Explo_dust_120", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2239}, {"name": "darryls_Rock_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": "Bullet_rico_rock", "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "rock_hit_debris1_darryls", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2240}, {"name": "darryls_Rock_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 300, "othersScreenShake": 300, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Rock_explo_debris1_darryls", "Rock_explo_debris2_darryls", "Explo_dust_100"], "effect": null, "layer": ["Object", "Object", "Above"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2241}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryls_blocking2_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_blue", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2244}, {"name": "darryls_blocking2_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters_blue", "coins_fly", "planks_fly_blue", "fire_after_explosion", "Explo_dust_100", "ground_explosion_small_100"], "effect": null, "layer": ["Object", "Object", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2245}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "darryls_fence_hit", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_blue", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2251}, {"name": "darryls_fence_explosion", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": null, "exportName": null, "particleEmitterName": ["splinters_small_blue", "planks_darryls", "planks_fly_darryls"], "effect": null, "layer": ["Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2252}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "water_splash", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": 100, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "water_splash", "effect": null, "layer": "GroundHigh", "groundBasis": null, "flashColor": null, "scale": 200, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2255}, {"name": "darryls_fragile_explo_debris", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": 100, "othersScreenShake": 100, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["Dark_explo_debris1", "Dark_explo_debris2", "Explo_dust_100", "ground_explosion_small_50", "SiegeBase_cloudExplode_huge_ground", "fire_spark_red_shortHuge"], "effect": null, "layer": ["Object", "Object", "Object", "GroundHigh", "GroundHigh", "Above"], "groundBasis": [null, true], "flashColor": null, "scale": [60, 60, 40], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2256}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": "confetti_effect", "loop": true, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "confetti_emitter", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2262}, {"name": "darryls_Green_hit_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": "ParticleEmitter", "fileName": null, "exportName": null, "particleEmitterName": "splinters_small_blue", "effect": null, "layer": "Object", "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2263}, {"name": "darryls_Green_explo_fx", "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": ["ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter", "ParticleEmitter"], "fileName": [null, "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "exportName": null, "particleEmitterName": ["splinters_blue", "planks_fly_blue", "Explo_dust_120", "ground_explosion_small_100", "Rock_explo_debris1_mine", "Rock_explo_debris2_mine", "fishy_debris"], "effect": null, "layer": ["Object", "Object", "Above", "Object", "Object", "Object", "Object"], "groundBasis": null, "flashColor": null, "scale": [null, 60, 60, 60], "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null, "id": 2264}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}, {"name": null, "loop": null, "followParent": null, "followParentAngle": null, "followBone": null, "ownScreenShake": null, "othersScreenShake": null, "time": null, "sound": null, "type": null, "fileName": null, "exportName": null, "particleEmitterName": null, "effect": null, "layer": null, "groundBasis": null, "flashColor": null, "scale": null, "flashDuration": null, "textInstanceName": null, "textParentInstanceName": null, "enemyVersion": null, "flashWidth": null, "effectZ": null}], "faces": [{"name": "BullGuyIdle", "fileName": "ui.sc", "exportName": "hero_portrait", "id": 30}, {"name": "BullGuyWalk", "fileName": "ui.sc", "exportName": "hero_portrait", "id": 31}, {"name": "BullGuyHappy", "fileName": "ui.sc", "exportName": "hero_portrait", "id": 32}, {"name": "BullGuySad", "fileName": "ui.sc", "exportName": "hero_portrait", "id": 33}, {"name": "BullGuySignature", "fileName": "ui.sc", "exportName": "hero_portrait", "id": 34}, {"name": "ShellyFace", "fileName": "characters.sc", "exportName": "shelly_face", "id": 35}, {"name": "ShellyBanditFace", "fileName": "characters.sc", "exportName": "shelly_bandit_face", "id": 36}, {"name": "JunkerStillFace", "fileName": "characters.sc", "exportName": "jessie_still_face", "id": 37}, {"name": "JunkerFace", "fileName": "characters.sc", "exportName": "jessie_face", "id": 38}, {"name": "JunkerDreamyFace", "fileName": "characters.sc", "exportName": "jessie_dreamy_face", "id": 39}, {"name": "JunkerKnightDarkStill", "fileName": "characters.sc", "exportName": "jessie_knightdark_still", "id": 40}, {"name": "JunkerKnightDarkIdle", "fileName": "characters.sc", "exportName": "jessie_knightdark_idle", "id": 41}, {"name": "ColtFace", "fileName": "characters.sc", "exportName": "colt_face", "id": 42}, {"name": "BullFace", "fileName": "characters.sc", "exportName": "bull_face", "id": 43}, {"name": "PamFace", "fileName": "characters.sc", "exportName": "pam_face", "id": 44}, {"name": "CrowFace", "fileName": "characters.sc", "exportName": "crow_face", "id": 45}, {"name": "TaraFaceIdle", "fileName": "characters.sc", "exportName": "tara_idle", "id": 46}, {"name": "TaraFaceWin", "fileName": "characters.sc", "exportName": "tara_win", "id": 47}, {"name": "TaraFaceWinLoop", "fileName": "characters.sc", "exportName": "tara_winloop", "id": 48}, {"name": "TaraFaceLose", "fileName": "characters.sc", "exportName": "tara_lose", "id": 49}, {"name": "TaraFaceLoseloop", "fileName": "characters.sc", "exportName": "tara_loseloop", "id": 50}, {"name": "MortisFace", "fileName": "characters.sc", "exportName": "mortis_face", "id": 51}, {"name": "MortisWin", "fileName": "characters.sc", "exportName": "mortis_win", "id": 52}, {"name": "MortisWinloop", "fileName": "characters.sc", "exportName": "mortis_winloop", "id": 53}, {"name": "PennyFace", "fileName": "characters.sc", "exportName": "penny_face", "id": 54}, {"name": "LeonIdle", "fileName": "characters.sc", "exportName": "leon_idle", "id": 55}, {"name": "LeonWin", "fileName": "characters.sc", "exportName": "leon_win", "id": 56}, {"name": "LeonWinLoop", "fileName": "characters.sc", "exportName": "leon_winloop", "id": 57}, {"name": "LeonLose", "fileName": "characters.sc", "exportName": "leon_lose", "id": 58}, {"name": "LeonLoseLoop", "fileName": "characters.sc", "exportName": "leon_loseloop", "id": 59}, {"name": "MortisNightwitchWin", "fileName": "characters.sc", "exportName": "mortis_nightwitch_win", "id": 60}, {"name": "MortisNightwitchFace", "fileName": "characters.sc", "exportName": "mortis_nightwitch_face", "id": 61}, {"name": "MortisNightwitchWinloop", "fileName": "characters.sc", "exportName": "mortis_nightwitch_winloop", "id": 62}, {"name": "CarlIdle", "fileName": "characters.sc", "exportName": "carl_idle", "id": 63}, {"name": "CarlAngry", "fileName": "characters.sc", "exportName": "carl_angry", "id": 64}, {"name": "CarlAngryloop", "fileName": "characters.sc", "exportName": "carl_angry_loop", "id": 65}, {"name": "CarlProfile", "fileName": "characters.sc", "exportName": "carl_profile", "id": 66}, {"name": "BarleyMsFace", "fileName": "characters.sc", "exportName": "barley_ms_face", "id": 67}, {"name": "BarleyMsLose", "fileName": "characters.sc", "exportName": "barley_ms_lose", "id": 68}, {"name": "BarleyMsLoseloop", "fileName": "characters.sc", "exportName": "barley_ms_loseloop", "id": 69}, {"name": "CarlHotrodIdle", "fileName": "characters.sc", "exportName": "hotrod_carl_idle", "id": 70}, {"name": "CarlHotrodAngry", "fileName": "characters.sc", "exportName": "hotrod_carl_angry", "id": 71}, {"name": "CarlHotrodAngryloop", "fileName": "characters.sc", "exportName": "hotrod_carl_angry_loop", "id": 72}, {"name": "Bibi_Idle", "fileName": "characters.sc", "exportName": "bibi_face", "id": 73}, {"name": "Bibi_Win", "fileName": "characters.sc", "exportName": "bibi_win", "id": 74}, {"name": "DynamikeRoboFace", "fileName": "characters.sc", "exportName": "mecha_mike_face", "id": 75}, {"name": "DynamikeRoboLose", "fileName": "characters.sc", "exportName": "mecha_mike_lose", "id": 76}, {"name": "DynamikeRoboLoseloop", "fileName": "characters.sc", "exportName": "mecha_mike_loseloop", "id": 77}, {"name": "8bitFace", "fileName": "characters.sc", "exportName": "bit_angry", "id": 78}, {"name": "8bitLose", "fileName": "characters.sc", "exportName": "bit_continue", "id": 79}, {"name": "8bitLooseloop", "fileName": "characters.sc", "exportName": "bit_gameover", "id": 80}, {"name": "8bitClassicFace", "fileName": "characters.sc", "exportName": "bit_classic_angry", "id": 81}, {"name": "PiperIdleOpen", "fileName": "characters.sc", "exportName": "piper_idle_open", "id": 82}, {"name": "PiperIdleClosed", "fileName": "characters.sc", "exportName": "piper_idle_closed", "id": 83}, {"name": "PiperWin", "fileName": "characters.sc", "exportName": "piper_win", "id": 84}, {"name": "PiperWinLoop", "fileName": "characters.sc", "exportName": "piper_idle_closed", "id": 85}, {"name": "PrimoElreyIdle", "fileName": "characters.sc", "exportName": "primo_elrey_idle", "id": 86}, {"name": "SandyIdle", "fileName": "characters.sc", "exportName": "sandy_idle", "id": 87}, {"name": "SandyWin", "fileName": "characters.sc", "exportName": "sandy_win", "id": 88}, {"name": "SandyWinloop", "fileName": "characters.sc", "exportName": "sandy_winloop", "id": 89}, {"name": "SandyWalk", "fileName": "characters.sc", "exportName": "sandy_walk", "id": 90}, {"name": "SandyProfile", "fileName": "characters.sc", "exportName": "sandy_profile", "id": 91}, {"name": "PiperRoseIdleOpen", "fileName": "characters.sc", "exportName": "rose_idle_open", "id": 92}, {"name": "PiperRoseIdleClosed", "fileName": "characters.sc", "exportName": "rose_idle_closed", "id": 93}, {"name": "PiperRoseWin", "fileName": "characters.sc", "exportName": "rose_win", "id": 94}, {"name": "PiperRoseWinLoop", "fileName": "characters.sc", "exportName": "rose_idle_closed", "id": 95}, {"name": "FrankIdle", "fileName": "characters.sc", "exportName": "frank_idle", "id": 96}, {"name": "FrankDJIdle", "fileName": "characters.sc", "exportName": "dj_idle", "id": 97}, {"name": "FrankDJWin", "fileName": "characters.sc", "exportName": "dj_win", "id": 98}, {"name": "FrankDJWinLoop", "fileName": "characters.sc", "exportName": "dj_winLoop", "id": 99}, {"name": "LeonWolfIdle", "fileName": "characters.sc", "exportName": "wolf_leon_idle", "id": 100}, {"name": "LeonWolfWin", "fileName": "characters.sc", "exportName": "wolf_leon_win", "id": 101}, {"name": "EmzIdle", "fileName": "characters.sc", "exportName": "emz_idle", "id": 102}, {"name": "EmzWin", "fileName": "characters.sc", "exportName": "emz_win", "id": 103}, {"name": "EmzWinLoop", "fileName": "characters.sc", "exportName": "emz_winloop", "id": 104}, {"name": "EmzFront", "fileName": "characters.sc", "exportName": "emz_front", "id": 105}, {"name": "EmzLose", "fileName": "characters.sc", "exportName": "emz_lose", "id": 106}, {"name": "EmzLoseLoop", "fileName": "characters.sc", "exportName": "emz_loseloop", "id": 107}, {"name": "BrownIdle", "fileName": "characters.sc", "exportName": "primo_brown_idle", "id": 108}, {"name": "BrownWin", "fileName": "characters.sc", "exportName": "primo_brown_win", "id": 109}, {"name": "BrownWinLoop", "fileName": "characters.sc", "exportName": "primo_brown_winLoop", "id": 110}, {"name": "BrownLose", "fileName": "characters.sc", "exportName": "primo_brown_lose", "id": 111}, {"name": "BrownLoseLoop", "fileName": "characters.sc", "exportName": "primo_brown_loseLoop", "id": 112}, {"name": "BrownHS", "fileName": "characters.sc", "exportName": "primo_brown_hS", "id": 113}, {"name": "CarlLeonardIdle", "fileName": "characters.sc", "exportName": "carl_leonard_idle", "id": 114}, {"name": "CarlLeonardHappy", "fileName": "characters.sc", "exportName": "carl_leonard_happy", "id": 115}, {"name": "CarlLeonardSad", "fileName": "characters.sc", "exportName": "carl_leonard_sad", "id": 116}, {"name": "CarlLeonardSadLoop", "fileName": "characters.sc", "exportName": "carl_leonard_sadLoop", "id": 117}, {"name": "CarlPirateIdle", "fileName": "characters.sc", "exportName": "pirate_carl_idle", "id": 118}, {"name": "CarlPirateAngry", "fileName": "characters.sc", "exportName": "pirate_carl_angry", "id": 119}, {"name": "CarlPirateAngryloop", "fileName": "characters.sc", "exportName": "carl_angry_loop", "id": 120}, {"name": "CarlPirateProfile", "fileName": "characters.sc", "exportName": "pirate_carl_profile", "id": 121}, {"name": "BeaIdle", "fileName": "characters.sc", "exportName": "bea_idle", "id": 122}, {"name": "BeaHappy", "fileName": "characters.sc", "exportName": "bea_happy", "id": 123}, {"name": "BeaLose", "fileName": "characters.sc", "exportName": "bea_lose", "id": 124}, {"name": "BeaLoseloop", "fileName": "characters.sc", "exportName": "bea_loseloop", "id": 125}, {"name": "MaxIdle", "fileName": "characters.sc", "exportName": "max_idle", "id": 126}, {"name": "MaxLose", "fileName": "characters.sc", "exportName": "max_lose", "id": 127}, {"name": "MaxLoseloop", "fileName": "characters.sc", "exportName": "max_loseloop", "id": 128}], "health_bars": [{"name": "Medium", "fileName": "sc/ui.sc", "playerExportNameTop": "player_info_badge", "playerExportNameBot": "player_info_badge_btm", "enemyExportNameTop": "enemy_info_badge", "enemyExportNameBot": "enemy_info_badge_btm", "yourTeamExportNameTop": "yourteam_info_badge", "yourTeamExportNameBot": "teammate_info_badge_btm", "id": 11}], "hints": [{"name": 1, "tID": "You can TAP the red control to QUICKFIRE towards the closest enemy.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_0"}, {"name": 2, "tID": "You can TAP the yellow control to QUICKFIRE your Super towards the closest enemy.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_1"}, {"name": 3, "tID": "You can DRAG the red control to AIM your shots.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_2"}, {"name": 4, "tID": "You can DRAG the yellow control to AIM your Super.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_3"}, {"name": 5, "tID": "You can cancel an aimed shot by dragging the control back to the middle.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_4"}, {"name": 6, "tID": "Matchmaking is based on the Trophies of the Brawler you are playing with, making it easy to gain Trophies with a newly unlocked Brawler.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_5"}, {"name": 7, "tID": "Getting more Brawlers will make it easier to advance in total Trophies and get more Rewards.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_6"}, {"name": 8, "tID": "Piper's shots do more damage the farther they travel.", "minXPLevel": 20, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_7"}, {"name": 9, "tID": "Barley's Super is especially powerful at short range, because the bottles land within a small area.", "minXPLevel": 999, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_8"}, {"name": 10, "tID": "Each time Rico's bullets bounce they travel farther.", "minXPLevel": 20, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_9"}, {"name": 11, "tID": "You can activate the red control anywhere on the right side of the screen to shoot.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_10"}, {"name": 12, "tID": "Your attack and Super both have two shooting modes: TAP to QUICKFIRE and DRAG to AIM.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_11"}, {"name": 13, "tID": "Aiming your shots is good for leading a moving target.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_12"}, {"name": 14, "tID": "QUICKFIRE is good for fast reaction shots when you don't have time to aim.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_13"}, {"name": 15, "tID": "QUICKFIRE works well on enemies close to you.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_14"}, {"name": 16, "tID": "When you are hidden inside a bush, enemies can still spot you if they come close enough.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_15"}, {"name": 17, "tID": "QUICKFIRE shoots straight towards the closest enemy and does not take into account enemy movement.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_16"}, {"name": 18, "tID": "Aiming your shots is good for shooting into bushes to check for enemies.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_17"}, {"name": 19, "tID": "QUICKFIRE works well on enemies that stand still.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_18"}, {"name": 20, "tID": "QUICKFIRE works well on enemies that move straight towards you or away from you.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_19"}, {"name": 21, "tID": "When you are inside a bush, enemies can see you if you attack or take damage.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_20"}, {"name": 22, "tID": "You can use bushes to hide from enemies.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_21"}, {"name": 23, "tID": "When you use QUICKFIRE, it will fire your weapon even if there are no enemies in range.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_22"}, {"name": 24, "tID": "Some Brawlers are better on some maps and events than others.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_23"}, {"name": 25, "tID": "Long range Brawlers are generally better on more open maps.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_24"}, {"name": 26, "tID": "Close range Brawlers are generally better on maps with more cover and bushes.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_25"}, {"name": 27, "tID": "Penny can deal a lot of damage with her splash attack if her targets line up.", "minXPLevel": 20, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_26"}, {"name": 28, "tID": "Getting a team together before a match allows you to plan before the match and pick a good combination of Brawlers.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_27"}, {"name": 29, "tID": "Try playing friendly games to practice events, set up friendly competitions and more!", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_28"}, {"name": 30, "tID": "After a good match with new teammates, you can press the Play Again to play another match with them!", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_29"}, {"name": 31, "tID": "Friendly games let you pick any event and map. Brawlers will also be fully upgraded!", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_30"}, {"name": 32, "tID": "Frank stops to perform his attack and Super, giving an opportunity for his opponents to get out of his range.", "minXPLevel": 20, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_31"}, {"name": 33, "tID": "Ticketed events don't use up the Token Bar, instead they require tickets to play.", "minXPLevel": 3, "maxXPLevel": 60, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_32"}, {"name": 34, "tID": "You can invite Club members to be your friends from the Club member list.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_33"}, {"name": 35, "tID": "You can invite people from a Team you're on to be your friends.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_34"}, {"name": 36, "tID": "After a few good games with somebody, you can invite them to be your friend from the suggested friend list.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_35"}, {"name": 37, "tID": "You can invite people from a Team you're on to be your friends.", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_36"}, {"name": 38, "tID": "You can use the advertise button to advertise your Team to your friends and Club members.", "minXPLevel": 999, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_37"}, {"name": 39, "tID": "A rotating blue circle under a Brawler means their Super is ready!", "minXPLevel": 7, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_38"}, {"name": 40, "tID": "A rotating yellow circle under a Brawler means they are currently targeting their Super!", "minXPLevel": 7, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_39"}, {"name": 41, "tID": "Connect to Supercell ID from the settings screen to keep your account safe and play with multiple devices. You also get a free skin by doing this!", "minXPLevel": 3, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_40"}, {"name": 42, "tID": "Your Total trophy count is a combination of all your Brawlers' individual trophies.", "minXPLevel": 7, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_41"}, {"name": 43, "tID": "When not attacking or taking damage for a while, your Brawler starts to heal up.", "minXPLevel": 1, "maxXPLevel": 40, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_42"}, {"name": 44, "tID": "When Carl's pickaxe hits an obstacle, it bounces off and returns, letting Carl throw it again faster.", "minXPLevel": 20, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_43"}, {"name": 45, "tID": "When playing POWER PLAY, matchmaking is based on the Points you currently have in the POWER PLAY season.", "minXPLevel": 20, "maxXPLevel": 999, "fileName": null, "exportName": null, "character": null, "rawTID": "HINT_44"}], "links": [{"name": "ShellyTutorial", "language": null, "uRL": null}, {"name": "ColtTutorial", "language": null, "uRL": null}, {"name": "BullTutorial", "language": null, "uRL": null}, {"name": "BrockTutorial", "language": null, "uRL": null}, {"name": "RicoTutorial", "language": null, "uRL": null}, {"name": "SpikeTutorial", "language": null, "uRL": null}, {"name": "BarleyTutorial", "language": null, "uRL": null}, {"name": "JessieTutorial", "language": null, "uRL": null}, {"name": "NitaTutorial", "language": null, "uRL": null}, {"name": "MikeTutorial", "language": null, "uRL": null}, {"name": "PrimpTutorial", "language": null, "uRL": null}, {"name": "MortisTutorial", "language": null, "uRL": null}, {"name": "CrowTutorial", "language": null, "uRL": null}, {"name": "PocoTutorial", "language": null, "uRL": null}, {"name": "BoTutorial", "language": null, "uRL": null}, {"name": "PiperTutorial", "language": null, "uRL": null}, {"name": "PamTutorial", "language": null, "uRL": null}, {"name": "TaraTutorial", "language": null, "uRL": null}, {"name": "DarrylTutorial", "language": null, "uRL": null}, {"name": "PennyTutorial", "language": null, "uRL": null}, {"name": "FrankTutorial", "language": null, "uRL": null}, {"name": "GeneTutorial", "language": null, "uRL": null}, {"name": "LeonTutorial", "language": null, "uRL": null}, {"name": "CoinRush", "language": "EN", "uRL": null}, {"name": "AttackDefend", "language": null, "uRL": null}, {"name": "BossFight", "language": null, "uRL": null}, {"name": "BountyHunter", "language": null, "uRL": null}, {"name": "Artifact", "language": null, "uRL": null}, {"name": "LaserBall", "language": null, "uRL": null}, {"name": "BattleRoyale", "language": null, "uRL": null}, {"name": "BattleRoyaleTeam", "language": null, "uRL": null}, {"name": "Survival", "language": null, "uRL": null}, {"name": "Raid", "language": null, "uRL": null}, {"name": "RoboWars", "language": null, "uRL": null}], "music": [{"name": "BattleMusic", "fileName": ["music/Slugfest_ingame_02.ogg", ["music/Slugfest_ingame_02.ogg", "music/Slugfest_ingame_03.ogg"], "music/Slugfest_ingame_04.ogg", "music/Slugfest_ingame_06.ogg", "music/Slugfest_ingame_01.ogg", "music/Slugfest_ingame_07.ogg", "music/Slugfest_ingame_08.ogg"], "volume": [70, [70, 70], 70, 70, 70, 70, 70], "loop": [true, [true, true], true, true, true, true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [60, [60, 90], 57, 75, 60, 71, 57], "id": 12}, {"name": null, "fileName": ["music/pirate_brawl_ingame_01.ogg", "music/pirate_brawl_ingame_02.ogg"], "volume": [70, 70], "loop": [true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [63, 71]}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": "Snow_brawl", "fileName": ["music/Snow_brawl_01.ogg", "music/Snow_brawl_02.ogg", "music/Snow_brawl_03.ogg"], "volume": [70, 70, 70], "loop": [true, true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [57, 65, 57], "id": 19}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": "Cny_levels", "fileName": ["music/cny_ingame_01.ogg", "music/cny_ingame_02.ogg"], "volume": [70, 70], "loop": [true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [64, 56], "id": 22}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": "Retropolis_battle", "fileName": ["music/retro_brawl_ingame_02.ogg", "music/retro_brawl_ingame_01.ogg"], "volume": [70, 70], "loop": [true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [65, 55], "id": 24}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": "Retropolis_menu", "fileName": "music/brawl_retro_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 66, "id": 26}, {"name": "Halloween_menu", "fileName": "music/brawloween_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 80, "id": 27}, {"name": "Halloween_ingame", "fileName": ["music/brawloween_ingame_01.ogg", "music/brawloween_ingame_02.ogg"], "volume": [70, 70], "loop": [true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [52, 56], "id": 28}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": "Xmas_Pirate_Menu", "fileName": "music/brawl_pirate_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 67, "id": 30}, {"name": "Pirate_Brawl_Ingame", "fileName": ["music/pirate_brawl_ingame_01.ogg", "music/pirate_brawl_ingame_02.ogg"], "volume": [70, 70], "loop": [true, true], "playCount": null, "fadeOutTimeSec": null, "durationSec": [63, 71], "id": 31}, {"name": null, "fileName": null, "volume": null, "loop": null, "playCount": null, "fadeOutTimeSec": null, "durationSec": null}, {"name": "MenuMusic", "fileName": "music/brawl_stars_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 153, "id": 33}, {"name": "MechMenuMusic", "fileName": "music/mech_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 78, "id": 34}, {"name": "Cnymenu_music", "fileName": "music/cny_brawl_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 178, "id": 35}, {"name": "Brawl_royale_menu_music", "fileName": "music/royale_brawl_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 91, "id": 36}, {"name": "Brawl_dawgs_menu", "fileName": "music/brawl_dawgs_menu_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 95, "id": 37}, {"name": "WinJingle", "fileName": "music/slugfest_game_won_01.ogg", "volume": 80, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 38}, {"name": "LoseJingle", "fileName": "music/slugfest_game_lost_01.ogg", "volume": 70, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 39}, {"name": "DrawJingle", "fileName": "music/laser_game_draw_01.ogg", "volume": 70, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 40}, {"name": "Win_loop", "fileName": "music/win_screen_loop_4x_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 30, "id": 41}, {"name": "Draw_loop", "fileName": "music/draw_screen_loop_4x_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 34, "id": 42}, {"name": "Lose_loop", "fileName": "music/lose_screen_loop_4x_01.ogg", "volume": 60, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 28, "id": 43}, {"name": "Brawlbawl_goal", "fileName": "music/brawl_goal_02.ogg", "volume": 80, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 44}, {"name": "Brawlbawl_other_goal", "fileName": "music/brawl_other_goal_01.ogg", "volume": 80, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 45}, {"name": "30_sec_panic", "fileName": "music/brawl_panic_time_01.ogg", "volume": 75, "loop": true, "playCount": null, "fadeOutTimeSec": null, "durationSec": 30, "id": 46}, {"name": "Brawl_xmas_flag_win", "fileName": "music/brawl_xmas_flag_win_01.ogg", "volume": 70, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 47}, {"name": "Brawl_xmas_flag_lose", "fileName": "music/brawl_xmas_flag_lose_01.ogg", "volume": 70, "loop": null, "playCount": 1, "fadeOutTimeSec": null, "durationSec": null, "id": 48}], "particle_emitters": [{"name": "music_note_particle_ulti_red", "maxParticleCount": 10, "minLife": 400, "maxLife": 1000, "particleMinInterval": null, "particleMaxInterval": 200, "particleMinLife": 400, "particleMaxLife": 1000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "music_note_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 150, "endScale": 50, "fadeOutDuration": 100, "inertia": 20, "enemyVersion": null, "id": 10}, {"name": "music_note_particle_ulti", "maxParticleCount": [3, 3], "minLife": [3, 3], "maxLife": [1, 1], "particleMinInterval": [20, 20], "particleMaxInterval": [100, 100], "particleMinLife": [100, 100], "particleMaxLife": [100, 100], "particleMinAngle": [-5, -5], "particleMaxAngle": [45, 45], "particleAngleRelativeToParent": [true, true], "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": [70, 70], "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1_town", "stone_2_town"], "rotateToDirection": [true, true], "loopParticleClip": [true, true], "startScale": [150, 150], "endScale": [300, 300], "fadeOutDuration": 100, "inertia": 20, "enemyVersion": "music_note_particle_ulti_red", "id": 11}, {"name": "music_note_particle_red", "maxParticleCount": 3, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": 200, "particleMinLife": 200, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "music_note_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 50, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 12}, {"name": "music_note_particle", "maxParticleCount": 3, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": 200, "particleMinLife": 200, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["music_note_1", "music_note_2", "sware_04", "gen_explosion_dark_streak1", "confetti_rotate_4", "confetti_rotate_4", "flower_03", "Death_blue_sparkle4", "Death_purple_sparkle4", "splinter_03", "splinter_03", "splinter_03", "meteor_shard_04"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 80, "endScale": 10, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": "music_note_particle_red", "id": 13}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "magic_native_particle_red", "maxParticleCount": 20, "minLife": 150, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": 1000, "particleMinLife": 1000, "particleMaxLife": 1200, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "magic_particle_red", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 1, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 15}, {"name": "magic_native_particle", "maxParticleCount": 20, "minLife": 150, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": 1000, "particleMinLife": 1000, "particleMaxLife": 1200, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "magic_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 1, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": "magic_native_particle_red", "id": 16}, {"name": "heal_particle", "maxParticleCount": 3, "minLife": 600, "maxLife": 800, "particleMinInterval": null, "particleMaxInterval": 200, "particleMinLife": 500, "particleMaxLife": 600, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 5, "particleMinSpeed": 20, "particleMaxSpeed": 80, "particleStartZ": 200, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "Heal_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 1, "fadeOutDuration": 20, "inertia": 100, "enemyVersion": null, "id": 17}, {"name": "sware_particle", "maxParticleCount": 3, "minLife": 800, "maxLife": 800, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": -360, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["sware_01", "sware_02", "sware_03", "sware_04"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 180, "endScale": 50, "fadeOutDuration": 500, "inertia": 40, "enemyVersion": null, "id": 18}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "slowed_particle", "maxParticleCount": 2, "minLife": 800, "maxLife": 800, "particleMinInterval": 3, "particleMaxInterval": 20, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": -100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "slow_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 100, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 22}, {"name": "crippled_particle", "maxParticleCount": 2, "minLife": 800, "maxLife": 800, "particleMinInterval": 3, "particleMaxInterval": 20, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": -100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "cripple_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 100, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 23}, {"name": "boss_particle", "maxParticleCount": 10, "minLife": 500, "maxLife": 500, "particleMinInterval": null, "particleMaxInterval": 20, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 30, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 200, "particleGravity": -100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "boss_bubble_1", "rotateToDirection": null, "loopParticleClip": null, "startScale": 70, "endScale": 20, "fadeOutDuration": 500, "inertia": 60, "enemyVersion": null, "id": 24}, {"name": "poisoned_crippled_particle", "maxParticleCount": 3, "minLife": 800, "maxLife": 800, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["poison_skull", "poison_bone"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 25}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "poisoned_particle", "maxParticleCount": 3, "minLife": 800, "maxLife": 800, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "poison_skull", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 50, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 27}, {"name": "burning_particle_lucha", "maxParticleCount": 50, "minLife": 100, "maxLife": 300, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 1000, "particleMaxLife": 4000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 20, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 1, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 28}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle_brock_blue", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 2500, "particleMaxLife": 3000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire_blue_1", "fire_blue_2", "fire_blue_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 31}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle_brock", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 2500, "particleMaxLife": 3000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 34}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle_lucha_super", "maxParticleCount": 100, "minLife": 100, "maxLife": 200, "particleMinInterval": 8, "particleMaxInterval": 10, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 20, "particleMaxSpeed": 2, "particleStartZ": 10, "particleMinVelocityZ": null, "particleMaxVelocityZ": 2, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 100, "fadeOutDuration": 200, "inertia": 20, "enemyVersion": null, "id": 37}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle", "maxParticleCount": 3, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 20, "particleMaxSpeed": 2, "particleStartZ": 10, "particleMinVelocityZ": null, "particleMaxVelocityZ": 2, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 10, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 40}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "sparks", "maxParticleCount": 7, "minLife": 400, "maxLife": 700, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 1000, "particleMaxLife": 1200, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 4, "particleMinSpeed": 20, "particleMaxSpeed": 600, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 400, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": ["gen_spark_anim", "gen_spark_anim_2"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 300, "inertia": 200, "enemyVersion": null, "id": 43}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "gen_round_particle", "maxParticleCount": 13, "minLife": 800, "maxLife": 800, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 4, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_blue", "rotateToDirection": null, "loopParticleClip": null, "startScale": 55, "endScale": 80, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 45}, {"name": "gen_beam_particle", "maxParticleCount": 1, "minLife": 800, "maxLife": 800, "particleMinInterval": null, "particleMaxInterval": 10, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 15, "particleMaxSpeed": 300, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_blue", "rotateToDirection": null, "loopParticleClip": null, "startScale": 55, "endScale": 80, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 46}, {"name": "gen_hit", "maxParticleCount": 1, "minLife": 250, "maxLife": 300, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 30, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 1, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitlines_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 47}, {"name": "gen_trail_particle_enemy", "maxParticleCount": 15, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 600, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 60, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 48}, {"name": "black_hole_projectile_afterexplosion", "maxParticleCount": 20, "minLife": 50, "maxLife": 50, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 1000, "particleMaxLife": 2500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 25, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -5, "particleMaxVelocityZ": 5, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_dark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "sparkle_dark", "id": 49}, {"name": "black_hole_projectile_ghost", "maxParticleCount": 20, "minLife": 100, "maxLife": 100, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 400, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -5, "particleMaxVelocityZ": 5, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_dark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "sparkle_dark", "id": 50}, {"name": "sparkle_trail_particle_black_minion", "maxParticleCount": 10, "minLife": 10, "maxLife": 30, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 400, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -5, "particleMaxVelocityZ": 5, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_dark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "sparkle_dark", "id": 51}, {"name": "sparkle_trail_particle_black", "maxParticleCount": 20, "minLife": 100, "maxLife": 100, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 400, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -5, "particleMaxVelocityZ": 5, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_dark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "sparkle_dark", "id": 52}, {"name": "sparkle_trail_particle_enemy", "maxParticleCount": 10, "minLife": 100, "maxLife": 100, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_01_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 300, "inertia": 0, "enemyVersion": null, "id": 53}, {"name": "Poco_Trail_special_particle", "maxParticleCount": 10, "minLife": 1000, "maxLife": 1000, "particleMinInterval": 10, "particleMaxInterval": 300, "particleMinLife": 100, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "Heal_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 1, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": null, "id": 54}, {"name": "sparkle_trail_particle", "maxParticleCount": 10, "minLife": 100, "maxLife": 100, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_01", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 300, "inertia": 0, "enemyVersion": "sparkle_trail_particle_enemy", "id": 55}, {"name": "poison_trail_particle", "maxParticleCount": 5, "minLife": 30, "maxLife": 40, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "poison_skull", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 50, "fadeOutDuration": 300, "inertia": 0, "enemyVersion": null, "id": 56}, {"name": "gen_trail_particle", "maxParticleCount": 15, "minLife": 30, "maxLife": 10, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 200, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "dynamike_spark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 40, "endScale": 1, "fadeOutDuration": 1000, "inertia": 0, "enemyVersion": null, "id": 57}, {"name": "gen_trail_small_particle_enemy", "maxParticleCount": 3, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 600, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 45, "endScale": 3, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 58}, {"name": "bb_trail_ulti", "maxParticleCount": 100, "minLife": null, "maxLife": null, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 100, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 600, "particleMaxTailLength": 800, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_yellow", "rotateToDirection": true, "loopParticleClip": null, "startScale": 200, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 59}, {"name": "bb_trail_ulti_smoke", "maxParticleCount": 100, "minLife": null, "maxLife": null, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 100, "particleMaxLife": 1000, "particleMinAngle": 90, "particleMaxAngle": 0, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 600, "particleMaxTailLength": 800, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire_2", "fire_3", "fire_1"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 200, "endScale": 1, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 60}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "bb_trail_small_particle", "maxParticleCount": 100, "minLife": null, "maxLife": null, "particleMinInterval": 70, "particleMaxInterval": 70, "particleMinLife": 1000, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 600, "particleMaxTailLength": 800, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 40, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 63}, {"name": "shotgun_trail_small_particle", "maxParticleCount": 20, "minLife": 800, "maxLife": 1200, "particleMinInterval": 1, "particleMaxInterval": 30, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 300, "particleMaxTailLength": 400, "particleResource": "sc/effects.sc", "particleExportName": "shotgun_trail_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 20, "endScale": 1, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "gen_trail_particle_enemy", "id": 64}, {"name": "gen_trail_small_particle", "maxParticleCount": 15, "minLife": 800, "maxLife": 1200, "particleMinInterval": 1, "particleMaxInterval": 30, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 3, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "gen_trail_particle_enemy", "id": 65}, {"name": "gen_trail_smoke_darker_enemy", "maxParticleCount": 50, "minLife": 10, "maxLife": 100, "particleMinInterval": 1, "particleMaxInterval": 10, "particleMinLife": 200, "particleMaxLife": 200, "particleMinAngle": -360, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 300, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle_darker_solo_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 120, "endScale": 1, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": null, "id": 66}, {"name": "gen_trail_small_particle_smoke_darker", "maxParticleCount": 50, "minLife": 10, "maxLife": 100, "particleMinInterval": 1, "particleMaxInterval": 10, "particleMinLife": 200, "particleMaxLife": 200, "particleMinAngle": -360, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 300, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle_darker_solo", "rotateToDirection": null, "loopParticleClip": null, "startScale": 120, "endScale": 1, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": "gen_trail_smoke_darker_enemy", "id": 67}, {"name": "gen_trail_small_particle_smoke", "maxParticleCount": 15, "minLife": 1000, "maxLife": 2000, "particleMinInterval": 40, "particleMaxInterval": 50, "particleMinLife": 400, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["smokepuff_bigger", "smokepuff_bigger_2"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "gen_trail_particle_enemy", "id": 68}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "ground_explosion_small", "maxParticleCount": 1, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 2000, "particleMaxLife": 2000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "ground_hit", "rotateToDirection": true, "loopParticleClip": null, "startScale": 50, "endScale": 40, "fadeOutDuration": 0, "inertia": null, "enemyVersion": null, "id": 70}, {"name": "ground_explosion", "maxParticleCount": 1, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 2000, "particleMaxLife": 2000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "ground_hit", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 80, "fadeOutDuration": 0, "inertia": null, "enemyVersion": null, "id": 71}, {"name": "shotgun_hit", "maxParticleCount": 1, "minLife": 100, "maxLife": 200, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 100, "particleMaxLife": 150, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 65, "particleMaxSpeed": 100, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "hit_star", "rotateToDirection": true, "loopParticleClip": true, "startScale": 10, "endScale": 110, "fadeOutDuration": 10, "inertia": null, "enemyVersion": null, "id": 72}, {"name": "no_hit_effect_red", "maxParticleCount": 5, "minLife": 200, "maxLife": 300, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 32, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 25, "fadeOutDuration": 80, "inertia": null, "enemyVersion": null, "id": 73}, {"name": "no_hit_effect", "maxParticleCount": 5, "minLife": 200, "maxLife": 300, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 32, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 25, "fadeOutDuration": 80, "inertia": null, "enemyVersion": "no_hit_effect_red", "id": 74}, {"name": "gen_hit_flash", "maxParticleCount": 1, "minLife": 10, "maxLife": 40, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 30, "particleMaxLife": 60, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 0, "particleMaxSpeed": 32, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "hit_star", "rotateToDirection": true, "loopParticleClip": true, "startScale": 100, "endScale": 25, "fadeOutDuration": 0, "inertia": null, "enemyVersion": null, "id": 75}, {"name": "gen_hitfx_line_emitter", "maxParticleCount": 8, "minLife": 100, "maxLife": 200, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 100, "particleMaxLife": 150, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 65, "particleMaxSpeed": 100, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_particle", "rotateToDirection": true, "loopParticleClip": true, "startScale": 50, "endScale": 110, "fadeOutDuration": 50, "inertia": null, "enemyVersion": null, "id": 76}, {"name": "gen_hitfx_dot_emitter", "maxParticleCount": 5, "minLife": 200, "maxLife": 300, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 32, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 25, "fadeOutDuration": 80, "inertia": null, "enemyVersion": null, "id": 77}, {"name": "gen_beam_trail_particle_enemy", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 300, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 2, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 1000, "particleMaxTailLength": 1000, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 45, "endScale": 1, "fadeOutDuration": 1000, "inertia": 0, "enemyVersion": null, "id": 78}, {"name": "gen_beam_trail_particle", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 300, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 2, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 1000, "particleMaxTailLength": 1000, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 45, "endScale": 1, "fadeOutDuration": 1000, "inertia": 0, "enemyVersion": "gen_beam_trail_particle_enemy", "id": 79}, {"name": "plasma_trail_emitter_red", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 12, "particleMaxInterval": 24, "particleMinLife": 300, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 2, "particleMinSpeed": 4, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "tendril_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 5, "fadeOutDuration": 1000, "inertia": 0, "enemyVersion": null, "id": 80}, {"name": "bat_trail_emitter_red", "maxParticleCount": 10, "minLife": 900, "maxLife": 900, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 2, "particleMinSpeed": 2, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["bat_flight_01_red", "bat_flight_02_red"], "rotateToDirection": [true, true], "loopParticleClip": true, "startScale": 70, "endScale": 40, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": null, "id": 81}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "bat_trail_emitter", "maxParticleCount": 10, "minLife": 900, "maxLife": 900, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 2, "particleMinSpeed": 2, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["bat_flight_01", "bat_flight_02"], "rotateToDirection": [true, true], "loopParticleClip": true, "startScale": 70, "endScale": 40, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": "bat_trail_emitter_red", "id": 83}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "sniper_trail_emitter_special", "maxParticleCount": 10, "minLife": 10, "maxLife": 30, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 400, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -5, "particleMaxVelocityZ": 5, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "sparkle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "sparkle_dark", "id": 85}, {"name": "sniper_trail_emitter", "maxParticleCount": 20, "minLife": 400, "maxLife": 400, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 600, "particleMaxLife": 750, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 2, "particleMinSpeed": 4, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gradient_ring", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 86}, {"name": "plasma_trail_emitter", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 12, "particleMaxInterval": 24, "particleMinLife": 300, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 2, "particleMinSpeed": 4, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "tendril_particle_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 5, "fadeOutDuration": 1000, "inertia": 0, "enemyVersion": "plasma_trail_emitter_red", "id": 87}, {"name": "magic_spark_exlposion", "maxParticleCount": 50, "minLife": 200, "maxLife": 700, "particleMinInterval": 12, "particleMaxInterval": 24, "particleMinLife": 300, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 5, "particleMinSpeed": 4, "particleMaxSpeed": 100, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "magic_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 20, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": "plasma_trail_emitter_red", "id": 88}, {"name": "magic_spark_trail_emitter", "maxParticleCount": 5, "minLife": 100, "maxLife": 200, "particleMinInterval": 12, "particleMaxInterval": 24, "particleMinLife": 300, "particleMaxLife": 400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 3, "particleMinSpeed": 4, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "magic_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 20, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": "plasma_trail_emitter_red", "id": 89}, {"name": "electricity_spark_trail_emitter_red", "maxParticleCount": 5, "minLife": 100, "maxLife": 200, "particleMinInterval": 12, "particleMaxInterval": 24, "particleMinLife": 300, "particleMaxLife": 400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 3, "particleMinSpeed": 4, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "spark_4_red", "rotateToDirection": true, "loopParticleClip": true, "startScale": 150, "endScale": 20, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 90}, {"name": "electricity_spark_trail_emitter", "maxParticleCount": 5, "minLife": 100, "maxLife": 200, "particleMinInterval": 12, "particleMaxInterval": 24, "particleMinLife": 300, "particleMaxLife": 400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 3, "particleMinSpeed": 4, "particleMaxSpeed": 6, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 15, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "spark_4", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 20, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": "electricity_spark_trail_emitter_red", "id": 91}, {"name": "blob_fx_particles", "maxParticleCount": 10, "minLife": 100, "maxLife": 200, "particleMinInterval": 100, "particleMaxInterval": 130, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": 265, "particleMaxAngle": 280, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 80, "particleMaxSpeed": 120, "particleStartZ": 50, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": ["gen_turbulence_dot_yellow", "gen_turbulence_dot2_yellow"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 15, "fadeOutDuration": 100, "inertia": 450, "enemyVersion": null, "id": 92}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "health_fx_particles", "maxParticleCount": 5, "minLife": 100, "maxLife": 200, "particleMinInterval": 15, "particleMaxInterval": 33, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": 265, "particleMaxAngle": 265, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 80, "particleMaxSpeed": 120, "particleStartZ": 50, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_spark", "rotateToDirection": null, "loopParticleClip": null, "startScale": 30, "endScale": 1, "fadeOutDuration": 100, "inertia": 450, "enemyVersion": null, "id": 94}, {"name": "gen_explosion_ring_emitter", "maxParticleCount": 1, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_ring1", "rotateToDirection": false, "loopParticleClip": false, "startScale": 100, "endScale": 100, "fadeOutDuration": 300, "inertia": null, "enemyVersion": null, "id": 95}, {"name": "gen_explosion_lines_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_lines1", "rotateToDirection": false, "loopParticleClip": false, "startScale": 50, "endScale": 200, "fadeOutDuration": 33, "inertia": null, "enemyVersion": null, "id": 96}, {"name": "gen_explosion_dust1_emitter", "maxParticleCount": 1, "minLife": 3000, "maxLife": 3000, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 5000, "particleMaxLife": 10000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": -1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_dust1", "rotateToDirection": false, "loopParticleClip": true, "startScale": 50, "endScale": 150, "fadeOutDuration": 2000, "inertia": null, "enemyVersion": null, "id": 97}, {"name": "gen_explosion_dust2_emitter", "maxParticleCount": 1, "minLife": 3000, "maxLife": 3000, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 5000, "particleMaxLife": 10000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": -1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_dust2", "rotateToDirection": false, "loopParticleClip": true, "startScale": 50, "endScale": 150, "fadeOutDuration": 2000, "inertia": null, "enemyVersion": null, "id": 98}, {"name": "spark_fx_emitter", "maxParticleCount": 3, "minLife": 200, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 100, "particleMaxLife": 200, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": null, "particleMinSpeed": 400, "particleMaxSpeed": 500, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 200, "particleMaxTailLength": 400, "particleResource": "sc/effects.sc", "particleExportName": "Smallspark", "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": null, "inertia": null, "enemyVersion": null, "id": 99}, {"name": "Plasma_fx_emitter", "maxParticleCount": 9, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 400, "particleMaxSpeed": 500, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 200, "particleMaxTailLength": 400, "particleResource": "sc/effects.sc", "particleExportName": "SparkleBlue", "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null, "id": 100}, {"name": "Dust_emitter_lingering", "maxParticleCount": 50, "minLife": 50, "maxLife": 100, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 500, "particleMaxLife": 2000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 20, "particleMinSpeed": 5, "particleMaxSpeed": 12, "particleStartZ": 10, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 2, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "BlackSmokeLingering", "rotateToDirection": false, "loopParticleClip": null, "startScale": 300, "endScale": 1, "fadeOutDuration": 400, "inertia": 100, "enemyVersion": null, "id": 101}, {"name": "Dust_emitter", "maxParticleCount": 4, "minLife": 50, "maxLife": 100, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 1200, "particleMaxLife": 1200, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 5, "particleMaxSpeed": 12, "particleStartZ": [10, 12, 15], "particleMinVelocityZ": 1, "particleMaxVelocityZ": 2, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": ["dust_particle1", "dust_particle2", "dust_particle3"], "rotateToDirection": false, "loopParticleClip": null, "startScale": 80, "endScale": 10, "fadeOutDuration": 400, "inertia": 100, "enemyVersion": null, "id": 102}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Toxic_emitter_red", "maxParticleCount": 20, "minLife": 6000, "maxLife": 6000, "particleMinInterval": 50, "particleMaxInterval": 1000, "particleMinLife": 2000, "particleMaxLife": 3200, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 5, "particleMaxSpeed": 10, "particleStartZ": null, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": -30, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "toxic_particle1_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 20, "endScale": 230, "fadeOutDuration": 2000, "inertia": null, "enemyVersion": null, "id": 105}, {"name": "Toxic_emitter", "maxParticleCount": 20, "minLife": 6000, "maxLife": 6000, "particleMinInterval": 50, "particleMaxInterval": 1000, "particleMinLife": 2000, "particleMaxLife": 3200, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 5, "particleMaxSpeed": 10, "particleStartZ": null, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": -30, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "toxic_particle1", "rotateToDirection": true, "loopParticleClip": null, "startScale": 20, "endScale": 230, "fadeOutDuration": 2000, "inertia": null, "enemyVersion": "Toxic_emitter_red", "id": 106}, {"name": "explosion_streaks_emitter", "maxParticleCount": 4, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 80, "particleMaxAngle": 100, "particleAngleRelativeToParent": null, "particleRandomAngle": false, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_explosion_s1", "gen_explosion_s2", "gen_explosion_s3", "gen_explosion_dark_streak1", "gen_explosion_s1"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 400, "inertia": null, "enemyVersion": null, "id": 107}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "trickshot_hit_ring_emitter", "maxParticleCount": 1, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 300, "particleMaxLife": 400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "ring_trail_particle", "rotateToDirection": true, "loopParticleClip": true, "startScale": 1, "endScale": 150, "fadeOutDuration": 200, "inertia": null, "enemyVersion": "Ring_trail_emitter_red", "id": 112}, {"name": "poison_fog_skull_particle", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 600, "particleMaxLife": 1000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 3, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": 35, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "poison_skull", "rotateToDirection": null, "loopParticleClip": null, "startScale": 20, "endScale": 200, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 113}, {"name": "poison_fog_emitter", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 3000, "particleMaxLife": 4000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 300, "particleMaxSpeed": 1000, "particleStartZ": 65, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 20, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "Poison_smoke", "rotateToDirection": false, "loopParticleClip": true, "startScale": 100, "endScale": 400, "fadeOutDuration": 300, "inertia": 8000, "enemyVersion": null, "id": 114}, {"name": "Hot_dust_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 150, "particleMaxLife": 250, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 10, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "hot_dust_particle", "rotateToDirection": null, "loopParticleClip": true, "startScale": 110, "endScale": 33, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 115}, {"name": "heal_area_particles_enemy", "maxParticleCount": 10, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 800, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 10, "particleMaxRadius": 27, "particleMinSpeed": 10, "particleMaxSpeed": 30, "particleStartZ": 5, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 100, "particleGravity": 300, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "Heal_particle_red", "rotateToDirection": true, "loopParticleClip": true, "startScale": 20, "endScale": 80, "fadeOutDuration": 300, "inertia": null, "enemyVersion": null, "id": 116}, {"name": "heal_area_particles", "maxParticleCount": 10, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 800, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 10, "particleMaxRadius": 27, "particleMinSpeed": 10, "particleMaxSpeed": 30, "particleStartZ": 5, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 100, "particleGravity": 300, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "Heal_particle", "rotateToDirection": true, "loopParticleClip": true, "startScale": 20, "endScale": 80, "fadeOutDuration": 300, "inertia": null, "enemyVersion": "heal_area_particles_enemy", "id": 117}, {"name": "Point_collect_emitter", "maxParticleCount": 33, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 300, "particleMaxLife": 450, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 1, "particleStartZ": 20, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "point_collect_particle1", "rotateToDirection": true, "loopParticleClip": true, "startScale": 70, "endScale": 1, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 118}, {"name": "Ring_trail_emitter_red", "maxParticleCount": 3, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "ring_trail_particle_red", "rotateToDirection": true, "loopParticleClip": true, "startScale": 1, "endScale": 100, "fadeOutDuration": 300, "inertia": null, "enemyVersion": null, "id": 119}, {"name": "electricity_ring_red", "maxParticleCount": 3, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "electricity_ring_red", "rotateToDirection": true, "loopParticleClip": true, "startScale": 1, "endScale": 100, "fadeOutDuration": 300, "inertia": null, "enemyVersion": null, "id": 120}, {"name": "electricity_ring_trail_emitter", "maxParticleCount": 3, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "electricity_ring", "rotateToDirection": true, "loopParticleClip": true, "startScale": 1, "endScale": 100, "fadeOutDuration": 300, "inertia": null, "enemyVersion": "electricity_ring_red", "id": 121}, {"name": "Ring_trail_emitter", "maxParticleCount": 3, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "ring_trail_particle", "rotateToDirection": true, "loopParticleClip": true, "startScale": 1, "endScale": 100, "fadeOutDuration": 300, "inertia": null, "enemyVersion": "Ring_trail_emitter_red", "id": 122}, {"name": "Health_collect_emitter", "maxParticleCount": 33, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 300, "particleMaxLife": 450, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 1, "particleStartZ": 20, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "health_collect_particle1", "rotateToDirection": true, "loopParticleClip": true, "startScale": 70, "endScale": 1, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 123}, {"name": "explosion_arcs_emitter", "maxParticleCount": 3, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 80, "particleMaxAngle": 100, "particleAngleRelativeToParent": null, "particleRandomAngle": false, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_explosion_arc1", "gen_explosion_arc2", "gen_explosion_arc2"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 70, "fadeOutDuration": 400, "inertia": null, "enemyVersion": null, "id": 124}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "gen_death_particle", "maxParticleCount": 13, "minLife": 100, "maxLife": 200, "particleMinInterval": 3, "particleMaxInterval": 4, "particleMinLife": 800, "particleMaxLife": 1200, "particleMinAngle": 220, "particleMaxAngle": 320, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 3, "particleMinSpeed": 10, "particleMaxSpeed": 15, "particleStartZ": 65, "particleMinVelocityZ": 30, "particleMaxVelocityZ": 65, "particleGravity": -30, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_particle_black", "gen_particle", "gen_particle_black"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 200, "endScale": 20, "fadeOutDuration": 100, "inertia": 20, "enemyVersion": null, "id": 127}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_smoke_red", "maxParticleCount": 70, "minLife": 1000, "maxLife": 1000, "particleMinInterval": 20, "particleMaxInterval": 20, "particleMinLife": 700, "particleMaxLife": 2000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 20, "particleMinSpeed": 200, "particleMaxSpeed": 300, "particleStartZ": 40, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["barkeep_smoke_1_red", "barkeep_smoke_2_red", "barkeep_smoke_3_red"], "rotateToDirection": false, "loopParticleClip": true, "startScale": 2, "endScale": 500, "fadeOutDuration": 300, "inertia": 8000, "enemyVersion": null, "id": 130}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_smoke_ulti", "maxParticleCount": 100, "minLife": 2000, "maxLife": 1600, "particleMinInterval": 20, "particleMaxInterval": 20, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 20, "particleMinSpeed": 200, "particleMaxSpeed": 300, "particleStartZ": 200, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 50, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["BlackSmoke", "BlackSmoke2", "BlackSmoke3"], "rotateToDirection": false, "loopParticleClip": true, "startScale": 2, "endScale": 500, "fadeOutDuration": 300, "inertia": 8000, "enemyVersion": "barkeep_smoke_red", "id": 133}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_smoke", "maxParticleCount": 70, "minLife": 1000, "maxLife": 1000, "particleMinInterval": 20, "particleMaxInterval": 20, "particleMinLife": 700, "particleMaxLife": 2000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 20, "particleMinSpeed": 200, "particleMaxSpeed": 300, "particleStartZ": 40, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["barkeep_smoke_1", "barkeep_smoke_2", "barkeep_smoke_3"], "rotateToDirection": false, "loopParticleClip": true, "startScale": 10, "endScale": 300, "fadeOutDuration": 100, "inertia": 8000, "enemyVersion": "barkeep_smoke_red", "id": 136}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Gen_dark_smoke", "maxParticleCount": 30, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -6, "particleMaxRadius": 8, "particleMinSpeed": 200, "particleMaxSpeed": 300, "particleStartZ": 65, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["BlackSmoke", "BlackSmoke2", "BlackSmoke3"], "rotateToDirection": false, "loopParticleClip": true, "startScale": 350, "endScale": 1, "fadeOutDuration": 0, "inertia": 8000, "enemyVersion": "Death_Dust_emitter_red", "id": 139}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Gen_dust_emitter", "maxParticleCount": 20, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 200, "particleMaxLife": 700, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 5, "particleMinSpeed": 300, "particleMaxSpeed": 1000, "particleStartZ": 65, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_smoke_small_particle", "gen_smoke_small_particle_2"], "rotateToDirection": false, "loopParticleClip": true, "startScale": 200, "endScale": 1, "fadeOutDuration": 0, "inertia": 8000, "enemyVersion": "Death_Dust_emitter_red", "id": 142}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Gen_dust_emitter_big", "maxParticleCount": 20, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 200, "particleMaxLife": 700, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 10, "particleMinSpeed": 300, "particleMaxSpeed": 1000, "particleStartZ": 65, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_smoke_small_particle", "gen_smoke_small_particle_2"], "rotateToDirection": false, "loopParticleClip": true, "startScale": 300, "endScale": 1, "fadeOutDuration": 0, "inertia": 8000, "enemyVersion": "Death_Dust_emitter_red", "id": 144}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Death_Dust_emitter_top", "maxParticleCount": 5, "minLife": 100, "maxLife": 200, "particleMinInterval": 4, "particleMaxInterval": 5, "particleMinLife": 2000, "particleMaxLife": 3000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 0, "particleMinSpeed": 100, "particleMaxSpeed": 200, "particleStartZ": 100, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "BlackSmoke3", "rotateToDirection": false, "loopParticleClip": true, "startScale": 150, "endScale": 170, "fadeOutDuration": 100, "inertia": 8000, "enemyVersion": null, "id": 146}, {"name": "Death_Dust_skull", "maxParticleCount": 1, "minLife": 100, "maxLife": 200, "particleMinInterval": 4, "particleMaxInterval": 5, "particleMinLife": 2000, "particleMaxLife": 3000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 100, "particleMaxSpeed": 200, "particleStartZ": 100, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "deathskull", "rotateToDirection": false, "loopParticleClip": true, "startScale": 100, "endScale": 150, "fadeOutDuration": 100, "inertia": 8000, "enemyVersion": null, "id": 147}, {"name": "Death_Dust_emitter_red", "maxParticleCount": 40, "minLife": 100, "maxLife": 200, "particleMinInterval": 4, "particleMaxInterval": 5, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 2, "particleMinSpeed": 300, "particleMaxSpeed": 1000, "particleStartZ": 65, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "smokepuff_red_01", "rotateToDirection": false, "loopParticleClip": true, "startScale": 400, "endScale": 5, "fadeOutDuration": 100, "inertia": 8000, "enemyVersion": null, "id": 148}, {"name": "Death_Dust_emitter", "maxParticleCount": 40, "minLife": 100, "maxLife": 200, "particleMinInterval": 4, "particleMaxInterval": 5, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": -140, "particleMaxAngle": 140, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 2, "particleMinSpeed": 300, "particleMaxSpeed": 1000, "particleStartZ": 65, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 200, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "smokepuff_blue_01", "rotateToDirection": false, "loopParticleClip": true, "startScale": 400, "endScale": 5, "fadeOutDuration": 100, "inertia": 8000, "enemyVersion": "Death_Dust_emitter_red", "id": 149}, {"name": "Small_Dust_emitter", "maxParticleCount": 10, "minLife": 50, "maxLife": 100, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 10000, "particleMaxLife": 10000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 5, "particleMaxSpeed": 12, "particleStartZ": 100, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 200, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["BlackSmoke", "BlackSmoke2", "BlackSmoke3"], "rotateToDirection": false, "loopParticleClip": null, "startScale": 150, "endScale": 100, "fadeOutDuration": 100, "inertia": 100, "enemyVersion": null, "id": 150}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "huge_explosion_streaks_emitter", "maxParticleCount": 3, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 80, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": false, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["explosion_spike_1", "explosion_spike_2", "explosion_spike_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 200, "endScale": 100, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 153}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Small_explosion_streaks_emitter", "maxParticleCount": 3, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 80, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": false, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["explosion_spike_1", "explosion_spike_2", "explosion_spike_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 50, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 156}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Small_Hot_dust_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 150, "particleMaxLife": 250, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 10, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "hot_dust_particle", "rotateToDirection": null, "loopParticleClip": true, "startScale": 75, "endScale": 20, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 159}, {"name": "barkeep_shards_red", "maxParticleCount": 8, "minLife": 400, "maxLife": 400, "particleMinInterval": null, "particleMaxInterval": 1, "particleMinLife": 600, "particleMaxLife": 1000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 50, "particleMaxSpeed": 80, "particleStartZ": 20, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 250, "particleGravity": -2000, "particleMinTailLength": 30, "particleMaxTailLength": 50, "particleResource": "sc/effects.sc", "particleExportName": "shard_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 150, "endScale": 50, "fadeOutDuration": 100, "inertia": 10, "enemyVersion": null, "id": 160}, {"name": "barkeep_shards", "maxParticleCount": 8, "minLife": 400, "maxLife": 400, "particleMinInterval": null, "particleMaxInterval": 1, "particleMinLife": 600, "particleMaxLife": 1000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 50, "particleMaxSpeed": 80, "particleStartZ": 20, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 250, "particleGravity": -2000, "particleMinTailLength": 30, "particleMaxTailLength": 50, "particleResource": "sc/effects.sc", "particleExportName": ["shard", "shard_2"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 150, "endScale": 50, "fadeOutDuration": 100, "inertia": 10, "enemyVersion": "barkeep_shards_red", "id": 161}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Gen_Big_Debris_emitter", "maxParticleCount": 10, "minLife": 500, "maxLife": 500, "particleMinInterval": 5, "particleMaxInterval": 5, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 7, "particleMinSpeed": 100, "particleMaxSpeed": 200, "particleStartZ": 0, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 3000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_debris1_particle", "gen_debris2_particle"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 1, "fadeOutDuration": 200, "inertia": 30, "enemyVersion": null, "id": 163}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Gen_Small_Debris_emitter", "maxParticleCount": 8, "minLife": 400, "maxLife": 400, "particleMinInterval": null, "particleMaxInterval": 5, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 50, "particleMaxSpeed": 80, "particleStartZ": 20, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 250, "particleGravity": -2000, "particleMinTailLength": 30, "particleMaxTailLength": 50, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_debris1_particle", "gen_debris2_particle"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 10, "fadeOutDuration": 50, "inertia": 10, "enemyVersion": null, "id": 165}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Hammer_ulti_cracks", "maxParticleCount": 1, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 5000, "particleMaxLife": 6000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["cracks_ground_01", "cracks_ground_02"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 200, "endScale": 200, "fadeOutDuration": 1000, "inertia": 0, "enemyVersion": null, "id": 167}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Hammer_ulti_rocks", "maxParticleCount": 50, "minLife": 0, "maxLife": 0, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 1000, "particleMaxLife": 3000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1500, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1", "stone_2", "stone_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 30, "fadeOutDuration": 150, "inertia": 150, "enemyVersion": null, "id": 169}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "confetti_explosion", "maxParticleCount": 100, "minLife": 500, "maxLife": 500, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 5, "particleMinSpeed": 50, "particleMaxSpeed": 250, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["confetti_rotate_1", "confetti_rotate_2", "confetti_rotate_3", "confetti_rotate_4", "confetti_rotate_5", "confetti_rotate_6"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 10, "fadeOutDuration": 100, "inertia": 30, "enemyVersion": null, "id": 172}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "confetti_flying", "maxParticleCount": 100, "minLife": 1000, "maxLife": 1000, "particleMinInterval": 2, "particleMaxInterval": 5, "particleMinLife": 2000, "particleMaxLife": 4000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -30, "particleMaxRadius": 30, "particleMinSpeed": 20, "particleMaxSpeed": 300, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["confetti_rotate_1", "confetti_rotate_2", "confetti_rotate_3", "confetti_rotate_4", "confetti_rotate_5", "confetti_rotate_6"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 80, "endScale": 20, "fadeOutDuration": 500, "inertia": 30, "enemyVersion": null, "id": 178}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "one_card_flying", "maxParticleCount": 1, "minLife": 100, "maxLife": 100, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 500, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 50, "particleStartZ": 0, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 200, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["card_love", "card_money", "card_death"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 100, "endScale": 90, "fadeOutDuration": 150, "inertia": 30, "enemyVersion": null, "id": 184}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "trash_hit_particle_enemy", "maxParticleCount": 1, "minLife": 10, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 200, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 7, "particleMinSpeed": 100, "particleMaxSpeed": 100, "particleStartZ": 0, "particleMinVelocityZ": 500, "particleMaxVelocityZ": 1200, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["scrap_red_01", "scrap_red_02", "scrap_red_03"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 150, "inertia": 30, "enemyVersion": null, "id": 187}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "trash_hit_particle", "maxParticleCount": 1, "minLife": 10, "maxLife": 20, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 700, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 7, "particleMinSpeed": 100, "particleMaxSpeed": 100, "particleStartZ": 0, "particleMinVelocityZ": 500, "particleMaxVelocityZ": 1200, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["scrap_blue_01", "scrap_blue_02", "scrap_blue_03"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 150, "inertia": 30, "enemyVersion": "trash_hit_particle_enemy", "id": 190}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Cards_flying", "maxParticleCount": 10, "minLife": 100, "maxLife": 100, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 700, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 7, "particleMinSpeed": 100, "particleMaxSpeed": 100, "particleStartZ": 200, "particleMinVelocityZ": 500, "particleMaxVelocityZ": 1200, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["card_love", "card_money", "card_death"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 100, "endScale": 100, "fadeOutDuration": 150, "inertia": 30, "enemyVersion": null, "id": 193}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Gems_flying", "maxParticleCount": 40, "minLife": 1000, "maxLife": 1000, "particleMinInterval": 2, "particleMaxInterval": 2, "particleMinLife": 8000, "particleMaxLife": 10000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 7, "particleMinSpeed": 100, "particleMaxSpeed": 200, "particleStartZ": 0, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 3000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "gem_rotate", "rotateToDirection": null, "loopParticleClip": true, "startScale": 80, "endScale": 70, "fadeOutDuration": 200, "inertia": 30, "enemyVersion": null, "id": 196}, {"name": "Hammer_trail_rocks_big", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 20, "particleMaxInterval": 20, "particleMinLife": 200, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -7, "particleMaxRadius": 7, "particleMinSpeed": 20, "particleMaxSpeed": 300, "particleStartZ": 0, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1", "stone_2", "stone_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 190, "endScale": 100, "fadeOutDuration": 200, "inertia": 500, "enemyVersion": null, "id": 197}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Hammer_trail_rocks", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 300, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 200, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1500, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1", "stone_2", "stone_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 30, "fadeOutDuration": 150, "inertia": 20, "enemyVersion": null, "id": 200}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Hammer_trail_dust", "maxParticleCount": 20, "minLife": 30, "maxLife": 40, "particleMinInterval": 5, "particleMaxInterval": 5, "particleMinLife": 200, "particleMaxLife": 500, "particleMinAngle": 90, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -5, "particleMaxRadius": 7, "particleMinSpeed": 10, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["hit_dust", "hit_dust_2"], "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 1, "fadeOutDuration": 300, "inertia": 0, "enemyVersion": null, "id": 203}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "soundwave_trail_heal_ulti_red", "maxParticleCount": 40, "minLife": 500, "maxLife": 1000, "particleMinInterval": 20, "particleMaxInterval": 5, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": 90, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -8, "particleMaxRadius": 10, "particleMinSpeed": 10, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "mexico_cloud_dark_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 1, "fadeOutDuration": 10, "inertia": 0, "enemyVersion": null, "id": 205}, {"name": "soundwave_trail_heal_ulti_flowers", "maxParticleCount": 40, "minLife": 100, "maxLife": 200, "particleMinInterval": 20, "particleMaxInterval": 40, "particleMinLife": 100, "particleMaxLife": 200, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -10, "particleMaxRadius": 10, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 1, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 1, "particleGravity": 1, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "mexico_cloud_heal", "rotateToDirection": true, "loopParticleClip": null, "startScale": 200, "endScale": 1, "fadeOutDuration": 10, "inertia": 0, "enemyVersion": null, "id": 206}, {"name": "soundwave_trail_heal_ulti", "maxParticleCount": 40, "minLife": 500, "maxLife": 1000, "particleMinInterval": 20, "particleMaxInterval": 5, "particleMinLife": 200, "particleMaxLife": 1200, "particleMinAngle": 90, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -8, "particleMaxRadius": 10, "particleMinSpeed": 0, "particleMaxSpeed": 1, "particleStartZ": 1, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 1, "particleGravity": 1, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["flower_01", "music_note_3", "flower_02", "flower_03"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 150, "endScale": 50, "fadeOutDuration": 300, "inertia": 0, "enemyVersion": null, "id": 207}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "soundwave_trail_dust_red", "maxParticleCount": 20, "minLife": 30, "maxLife": 40, "particleMinInterval": 5, "particleMaxInterval": 5, "particleMinLife": 50, "particleMaxLife": 200, "particleMinAngle": 90, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 15, "particleMinSpeed": 10, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 200, "particleResource": "sc/effects.sc", "particleExportName": "mexico_cloud_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 140, "endScale": 1, "fadeOutDuration": 50, "inertia": 0, "enemyVersion": null, "id": 211}, {"name": "soundwave_trail_dust", "maxParticleCount": 20, "minLife": 100, "maxLife": 100, "particleMinInterval": 5, "particleMaxInterval": 5, "particleMinLife": 50, "particleMaxLife": 200, "particleMinAngle": 90, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 15, "particleMinSpeed": 10, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 200, "particleResource": "sc/effects.sc", "particleExportName": "mexico_cloud", "rotateToDirection": true, "loopParticleClip": null, "startScale": 140, "endScale": 1, "fadeOutDuration": 50, "inertia": 0, "enemyVersion": "soundwave_trail_dust_red", "id": 212}, {"name": "Nuts_and_bolts_particle_big", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 500, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 200, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1500, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["bolt_1", "bolt_2", "bolt_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 30, "fadeOutDuration": 150, "inertia": 20, "enemyVersion": null, "id": 213}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Nuts_and_bolts_particle", "maxParticleCount": 1, "minLife": 30, "maxLife": 40, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 200, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1500, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["bolt_1", "bolt_2", "bolt_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 30, "fadeOutDuration": 150, "inertia": 20, "enemyVersion": null, "id": 216}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Hammer_trail_particle", "maxParticleCount": 4, "minLife": 40, "maxLife": 40, "particleMinInterval": 70, "particleMaxInterval": 70, "particleMinLife": 700, "particleMaxLife": 700, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": -50, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": null, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["cracks_ground_02", "cracks_ground_01"], "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 70, "fadeOutDuration": 700, "inertia": 0, "enemyVersion": null, "id": 219}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "purple_trail_particle", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 40, "particleMinLife": 400, "particleMaxLife": 500, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_particle_purple", "rotateToDirection": true, "loopParticleClip": null, "startScale": 60, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 221}, {"name": "gen_move_dust_emitter", "maxParticleCount": 10, "minLife": 100, "maxLife": 200, "particleMinInterval": 100, "particleMaxInterval": 200, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 3, "particleMaxSpeed": 5, "particleStartZ": 10, "particleMinVelocityZ": 30, "particleMaxVelocityZ": 20, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "dust_particle1_single", "rotateToDirection": null, "loopParticleClip": true, "startScale": 20, "endScale": 2, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 222}, {"name": "Teleport_light_particles", "maxParticleCount": 33, "minLife": 40, "maxLife": 100, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 2400, "particleMaxLife": 3200, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 10, "particleMaxSpeed": 12, "particleStartZ": 30, "particleMinVelocityZ": -5, "particleMaxVelocityZ": 5, "particleGravity": 20, "particleMinTailLength": 100, "particleMaxTailLength": 100, "particleResource": "sc/effects.sc", "particleExportName": ["gen_particle", "gen_particle_black"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 20, "fadeOutDuration": 10, "inertia": null, "enemyVersion": null, "id": 223}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Stunner", "maxParticleCount": 9, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 100, "particleMaxLife": 400, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 400, "particleMaxSpeed": 500, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 200, "particleMaxTailLength": 400, "particleResource": "sc/effects.sc", "particleExportName": "SparkleBlue", "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null, "id": 225}, {"name": "Death_sparkle_still1", "maxParticleCount": 12, "minLife": 180, "maxLife": 180, "particleMinInterval": 1, "particleMaxInterval": 3, "particleMinLife": 300, "particleMaxLife": 2500, "particleMinAngle": -20, "particleMaxAngle": 20, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": 2, "particleMinSpeed": null, "particleMaxSpeed": 35, "particleStartZ": 25, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": -150, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["Death_blue_sparkle1", "Death_blue_sparkle2", "Death_blue_sparkle3", "Death_blue_sparkle4"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 80, "endScale": 10, "fadeOutDuration": 2000, "inertia": 25, "enemyVersion": "Death_sparkle2_purple", "id": 226}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Death_sparkle2_purple", "maxParticleCount": 12, "minLife": 180, "maxLife": 180, "particleMinInterval": 1, "particleMaxInterval": 3, "particleMinLife": 600, "particleMaxLife": 2900, "particleMinAngle": -20, "particleMaxAngle": 20, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": 2, "particleMinSpeed": null, "particleMaxSpeed": 35, "particleStartZ": 25, "particleMinVelocityZ": null, "particleMaxVelocityZ": 50, "particleGravity": -150, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["Death_purple_sparkle1", "Death_purple_sparkle2", "Death_purple_sparkle3", "Death_purple_sparkle4"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 80, "endScale": 10, "fadeOutDuration": 1600, "inertia": 25, "enemyVersion": null, "id": 230}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit_debris1", "maxParticleCount": 12, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 300, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 10, "particleMaxSpeed": 15, "particleStartZ": 50, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": -100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_1", "grass_straw_1"], "rotateToDirection": true, "loopParticleClip": null, "startScale": 80, "endScale": 10, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 234}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit_big_mine", "maxParticleCount": 40, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 10, "particleMaxSpeed": 200, "particleStartZ": 100, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3_mine", "grass_straw_2_mine"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 200, "endScale": 20, "fadeOutDuration": 500, "inertia": 300, "enemyVersion": null, "id": 236}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit_big_yellow", "maxParticleCount": 40, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 10, "particleMaxSpeed": 200, "particleStartZ": 100, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_1_desert", "grass_straw_2_desert", "grass_straw_3_desert"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 200, "endScale": 20, "fadeOutDuration": 500, "inertia": 300, "enemyVersion": null, "id": 238}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit_big", "maxParticleCount": 40, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 300, "particleMaxLife": 1200, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 10, "particleMaxSpeed": 200, "particleStartZ": 100, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3", "grass_straw_2"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 200, "endScale": 20, "fadeOutDuration": 500, "inertia": 300, "enemyVersion": null, "id": 241}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit_mine", "maxParticleCount": 5, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 300, "particleMaxLife": 900, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 10, "particleMaxSpeed": 200, "particleStartZ": 170, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3_mine", "grass_straw_2_mine", "grass_straw_1_mine"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 120, "endScale": 20, "fadeOutDuration": 500, "inertia": 300, "enemyVersion": null, "id": 243}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit_yellow", "maxParticleCount": 5, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 300, "particleMaxLife": 900, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 10, "particleMaxSpeed": 200, "particleStartZ": 170, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_1_desert", "grass_straw_2_desert", "grass_straw_3_desert"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 120, "endScale": 20, "fadeOutDuration": 500, "inertia": 300, "enemyVersion": null, "id": 246}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_hit", "maxParticleCount": 5, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 10, "particleMinLife": 300, "particleMaxLife": 900, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 10, "particleMaxSpeed": 200, "particleStartZ": 170, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3", "grass_straw_2", "grass_straw_1"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 120, "endScale": 20, "fadeOutDuration": 500, "inertia": 300, "enemyVersion": null, "id": 249}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_wind", "maxParticleCount": 1, "minLife": 200, "maxLife": 300, "particleMinInterval": 1, "particleMaxInterval": 3, "particleMinLife": 50, "particleMaxLife": 900, "particleMinAngle": -120, "particleMaxAngle": 90, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 30, "particleMaxSpeed": 45, "particleStartZ": 50, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3", "grass_straw_2", "grass_straw_1"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 70, "endScale": 20, "fadeOutDuration": 500, "inertia": 5, "enemyVersion": null, "id": 252}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Grass_explo_debris1", "maxParticleCount": 60, "minLife": 200, "maxLife": 300, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 500, "particleMaxLife": 900, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 30, "particleMaxSpeed": 45, "particleStartZ": 50, "particleMinVelocityZ": 20, "particleMaxVelocityZ": 40, "particleGravity": -100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3", "grass_straw_2", "grass_straw_1"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 80, "endScale": 45, "fadeOutDuration": 500, "inertia": 5, "enemyVersion": null, "id": 255}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "leaves_on_ground", "maxParticleCount": 30, "minLife": 550, "maxLife": 800, "particleMinInterval": 20, "particleMaxInterval": 30, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 20, "particleMaxSpeed": 50, "particleStartZ": 40, "particleMinVelocityZ": 10, "particleMaxVelocityZ": 20, "particleGravity": -50, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3", "grass_straw_2", "grass_straw_1"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 75, "endScale": 50, "fadeOutDuration": 400, "inertia": 20, "enemyVersion": null, "id": 258}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "shell", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 10, "particleMaxInterval": 500, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 70, "particleMaxSpeed": 100, "particleStartZ": 28, "particleMinVelocityZ": 150, "particleMaxVelocityZ": 300, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["shell_1", "shell_2", "shell_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 60, "endScale": 70, "fadeOutDuration": 300, "inertia": 10, "enemyVersion": null, "id": 261}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "shell_shotgun", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 10, "particleMaxInterval": 500, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 90, "particleMaxAngle": 110, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 70, "particleMaxSpeed": 100, "particleStartZ": 28, "particleMinVelocityZ": 150, "particleMaxVelocityZ": 300, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["shell_1", "shell_2", "shell_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 60, "endScale": 70, "fadeOutDuration": 300, "inertia": 10, "enemyVersion": null, "id": 264}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_hit_debris1_mine", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 10, "particleMaxInterval": 500, "particleMinLife": 100, "particleMaxLife": 1000, "particleMinAngle": -45, "particleMaxAngle": 45, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 20, "particleMaxSpeed": 70, "particleStartZ": 28, "particleMinVelocityZ": 150, "particleMaxVelocityZ": 300, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1_mine", "stone_2_mine", "stone_3_mine"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 75, "endScale": 40, "fadeOutDuration": 100, "inertia": 10, "enemyVersion": null, "id": 267}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_hit_debris1", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 10, "particleMaxInterval": 500, "particleMinLife": 100, "particleMaxLife": 1000, "particleMinAngle": -45, "particleMaxAngle": 45, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 20, "particleMaxSpeed": 70, "particleStartZ": 28, "particleMinVelocityZ": 150, "particleMaxVelocityZ": 300, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1", "stone_2", "stone_3"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 75, "endScale": 40, "fadeOutDuration": 100, "inertia": 10, "enemyVersion": null, "id": 270}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "splinters_small", "maxParticleCount": 1, "minLife": 200, "maxLife": 400, "particleMinInterval": 5, "particleMaxInterval": 10, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 90, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 200, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 800, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["splinter_01", "splinter_02", "splinter_03"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 30, "fadeOutDuration": 300, "inertia": 120, "enemyVersion": null, "id": 273}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "splinters", "maxParticleCount": 2, "minLife": 200, "maxLife": 400, "particleMinInterval": 5, "particleMaxInterval": 10, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 200, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1500, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["splinter_01", "nail_01", "splinter_02", "splinter_03"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 30, "fadeOutDuration": 300, "inertia": 20, "enemyVersion": null, "id": 276}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_explo_debris1_mine", "maxParticleCount": 5, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 100, "particleStartZ": 33, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 2000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1_mine", "stone_2_mine", "stone_3_mine"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 300, "inertia": 5, "enemyVersion": null, "id": 280}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "fragile_explo_debris_oasis", "maxParticleCount": 20, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 100, "particleStartZ": 33, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 2000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["vase_shard_01", "vase_shard_02", "vase_shard_03"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 300, "inertia": 5, "enemyVersion": null, "id": 283}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "fragile_explo_debris", "maxParticleCount": 10, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 100, "particleStartZ": 33, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 2000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["bone_01", "bone_02", "bone_03"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 300, "inertia": 5, "enemyVersion": null, "id": 286}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_explo_debris1", "maxParticleCount": 5, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 1000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 100, "particleStartZ": 33, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 2000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1", "stone_2", "stone_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 50, "fadeOutDuration": 300, "inertia": 5, "enemyVersion": null, "id": 289}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Hit_dust", "maxParticleCount": 1, "minLife": 200, "maxLife": 400, "particleMinInterval": 5, "particleMaxInterval": 10, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 3, "particleMinSpeed": 10, "particleMaxSpeed": 15, "particleStartZ": 0, "particleMinVelocityZ": 5, "particleMaxVelocityZ": 8, "particleGravity": 140, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["hit_dust_2", "hit_dust"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 140, "endScale": 10, "fadeOutDuration": 200, "inertia": 10, "enemyVersion": null, "id": 292}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Explo_dust", "maxParticleCount": 20, "minLife": 50, "maxLife": 500, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 100, "particleMaxLife": 1200, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 10, "particleMaxSpeed": 20, "particleStartZ": 50, "particleMinVelocityZ": 12, "particleMaxVelocityZ": 22, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["hit_dust", "hit_dust_2"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 150, "endScale": 50, "fadeOutDuration": 300, "inertia": 20, "enemyVersion": null, "id": 294}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "planks_fly", "maxParticleCount": 10, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 500, "particleMaxLife": 1000, "particleMinAngle": 90, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 10, "particleMinSpeed": 20, "particleMaxSpeed": 300, "particleStartZ": 0, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 3000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["plank_01", "plank_02", "splinter_02", "splinter_03", "plank_03"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 150, "endScale": 50, "fadeOutDuration": 200, "inertia": 20, "enemyVersion": null, "id": 296}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "fire_after_explosion", "maxParticleCount": 3, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 200, "particleMaxLife": 5000, "particleMinAngle": 90, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 15, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire_2", "fire_3", "fire_1"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 10, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 301}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "planks", "maxParticleCount": 10, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 2000, "particleMaxLife": 7000, "particleMinAngle": 90, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 10, "particleMinSpeed": 20, "particleMaxSpeed": 300, "particleStartZ": 0, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1000, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["plank_01", "plank_02", "splinter_02", "splinter_03"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 150, "endScale": 120, "fadeOutDuration": 200, "inertia": 500, "enemyVersion": null, "id": 304}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_explo_debris2_mine", "maxParticleCount": 5, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 200, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 0, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 3000, "particleGravity": -6000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1_mine", "stone_2_mine", "stone_3_mine"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 300, "endScale": 100, "fadeOutDuration": 200, "inertia": 20, "enemyVersion": null, "id": 308}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_explo_debris2", "maxParticleCount": 5, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 200, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 0, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 3000, "particleGravity": -6000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1", "stone_2", "stone_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 300, "endScale": 100, "fadeOutDuration": 200, "inertia": 20, "enemyVersion": null, "id": 311}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Pix_emitter_red", "maxParticleCount": 50, "minLife": 1200, "maxLife": 1200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 900, "particleMaxLife": 1300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 2, "particleMaxSpeed": 3, "particleStartZ": 140, "particleMinVelocityZ": -40, "particleMaxVelocityZ": -100, "particleGravity": -400, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "red_pix", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 20, "fadeOutDuration": 200, "inertia": null, "enemyVersion": null, "id": 314}, {"name": "Pix_emitter", "maxParticleCount": 50, "minLife": 1200, "maxLife": 1200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 900, "particleMaxLife": 1300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 2, "particleMaxSpeed": 3, "particleStartZ": 140, "particleMinVelocityZ": -40, "particleMaxVelocityZ": -100, "particleGravity": -400, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "blue_pix", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 20, "fadeOutDuration": 200, "inertia": null, "enemyVersion": "Pix_emitter_red", "id": 315}, {"name": "Pix_emitter_up", "maxParticleCount": 50, "minLife": 1200, "maxLife": 1200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 900, "particleMaxLife": 1300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 2, "particleMaxSpeed": 3, "particleStartZ": 0, "particleMinVelocityZ": 40, "particleMaxVelocityZ": 120, "particleGravity": 200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "blue_pix", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 20, "fadeOutDuration": 200, "inertia": null, "enemyVersion": "Pix_emitter_red", "id": 316}, {"name": "Ground_glow_emitter_red", "maxParticleCount": 1, "minLife": 100, "maxLife": 200, "particleMinInterval": 3, "particleMaxInterval": 4, "particleMinLife": 2000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "red_buildup_ground", "rotateToDirection": null, "loopParticleClip": null, "startScale": 450, "endScale": 350, "fadeOutDuration": 200, "inertia": null, "enemyVersion": null, "id": 317}, {"name": "Ground_glow_emitter", "maxParticleCount": 1, "minLife": 100, "maxLife": 200, "particleMinInterval": 3, "particleMaxInterval": 4, "particleMinLife": 2000, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "buildup_ground", "rotateToDirection": null, "loopParticleClip": null, "startScale": 450, "endScale": 350, "fadeOutDuration": 200, "inertia": null, "enemyVersion": "Ground_glow_emitter_red", "id": 318}, {"name": "gen_bouncefx_dot_blue_emitter", "maxParticleCount": 3, "minLife": 100, "maxLife": 150, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 250, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 10, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 80, "endScale": 2, "fadeOutDuration": 140, "inertia": null, "enemyVersion": null, "id": 319}, {"name": "gen_bouncefx_dot_emitter", "maxParticleCount": 3, "minLife": 100, "maxLife": 150, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 250, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 7, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 80, "endScale": 2, "fadeOutDuration": 140, "inertia": null, "enemyVersion": null, "id": 320}, {"name": "rocket_trail_emitter_red", "maxParticleCount": 25, "minLife": 8500, "maxLife": 8500, "particleMinInterval": 40, "particleMaxInterval": 40, "particleMinLife": 1000, "particleMaxLife": 1200, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "rocket_trail_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 50, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 321}, {"name": "rocket_trail_spark_emitter_red", "maxParticleCount": 20, "minLife": 8500, "maxLife": 8500, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 500, "particleMaxLife": 750, "particleMinAngle": -10, "particleMaxAngle": 10, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 5, "particleMaxSpeed": 25, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 33, "endScale": 5, "fadeOutDuration": 50, "inertia": 0, "enemyVersion": null, "id": 322}, {"name": "rocket_trail_emitter", "maxParticleCount": 25, "minLife": 8500, "maxLife": 8500, "particleMinInterval": 40, "particleMaxInterval": 40, "particleMinLife": 1000, "particleMaxLife": 1200, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "rocket_trail_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 50, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": "rocket_trail_emitter_red", "id": 323}, {"name": "rocket_trail_smoke_emitter_red", "maxParticleCount": 33, "minLife": 0, "maxLife": 0, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 5000, "particleMaxLife": 10000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "BlackSmoke_rocket_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": "rocket_trail_smoke_emitter_red", "id": 324}, {"name": "lucha_smoke_emitter_red", "maxParticleCount": 100, "minLife": 0, "maxLife": 0, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 2000, "particleMaxLife": 3000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "lucha_smoke_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 1, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": null, "id": 325}, {"name": "lucha_smoke_emitter", "maxParticleCount": 100, "minLife": 0, "maxLife": 0, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 2000, "particleMaxLife": 3000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "lucha_smoke", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 1, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": "lucha_smoke_emitter_red", "id": 326}, {"name": "shotgun_trail_smoke_emitter", "maxParticleCount": 100, "minLife": 0, "maxLife": 0, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 5000, "particleMaxLife": 10000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "BlackSmoke_rocket", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 50, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": "rocket_trail_smoke_emitter_red", "id": 327}, {"name": "lucha_smoke_emitter_super", "maxParticleCount": 33, "minLife": 0, "maxLife": 0, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 5000, "particleMaxLife": 10000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 5, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "BlackSmoke_lucha", "rotateToDirection": true, "loopParticleClip": null, "startScale": 150, "endScale": 1, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": null, "id": 328}, {"name": "rocket_trail_smoke_emitter", "maxParticleCount": 33, "minLife": 0, "maxLife": 0, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 5000, "particleMaxLife": 10000, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 1, "particleMaxSpeed": 12, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "BlackSmoke_rocket", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": "rocket_trail_smoke_emitter_red", "id": 329}, {"name": "rocket_trail_spark_emitter", "maxParticleCount": 20, "minLife": 8500, "maxLife": 8500, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 500, "particleMaxLife": 750, "particleMinAngle": -10, "particleMaxAngle": 10, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 5, "particleMaxSpeed": 25, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 33, "endScale": 5, "fadeOutDuration": 50, "inertia": 0, "enemyVersion": "rocket_trail_spark_emitter_red", "id": 330}, {"name": "gen_small_smoke_emitter_red", "maxParticleCount": 5, "minLife": 180, "maxLife": 240, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 20, "particleMaxSpeed": 30, "particleStartZ": 70, "particleMinVelocityZ": -3, "particleMaxVelocityZ": -30, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 200, "endScale": 20, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 331}, {"name": "Gen_small_smoke", "maxParticleCount": 5, "minLife": 700, "maxLife": 800, "particleMinInterval": 5, "particleMaxInterval": 7, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 0, "particleGravity": 100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "smokepuff_walk", "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 100, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 332}, {"name": "dust_puff", "maxParticleCount": 5, "minLife": 5, "maxLife": 240, "particleMinInterval": 5, "particleMaxInterval": 7, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 0, "particleGravity": 100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "smokepuff_walk", "rotateToDirection": null, "loopParticleClip": null, "startScale": 200, "endScale": 50, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 333}, {"name": "walking_smoke", "maxParticleCount": 1, "minLife": 5, "maxLife": 240, "particleMinInterval": 5, "particleMaxInterval": 7, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 0, "particleGravity": 100, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "smokepuff_walk", "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 100, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 334}, {"name": "gen_small_smoke_emitter_smaller", "maxParticleCount": 5, "minLife": 5, "maxLife": 240, "particleMinInterval": 5, "particleMaxInterval": 7, "particleMinLife": 1000, "particleMaxLife": 1700, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 40, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": -3, "particleMaxVelocityZ": -30, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 10, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 335}, {"name": "gen_small_smoke_emitter_darker", "maxParticleCount": 1, "minLife": 2, "maxLife": 240, "particleMinInterval": 5, "particleMaxInterval": 7, "particleMinLife": 1000, "particleMaxLife": 1000, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 40, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": -3, "particleMaxVelocityZ": -30, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["gen_smoke_small_particle_darker", "gen_smoke_small_particle_darker_2", "gen_smoke_small_particle_darker_3"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 120, "endScale": 20, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 336}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "gen_small_smoke_emitter", "maxParticleCount": 5, "minLife": 5, "maxLife": 240, "particleMinInterval": 5, "particleMaxInterval": 7, "particleMinLife": 1000, "particleMaxLife": 1700, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 40, "particleMaxSpeed": 50, "particleStartZ": 70, "particleMinVelocityZ": -3, "particleMaxVelocityZ": -30, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 20, "fadeOutDuration": 800, "inertia": 10, "enemyVersion": null, "id": 339}, {"name": "shooting_spark_emitter_red", "maxParticleCount": 20, "minLife": 120, "maxLife": 180, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 500, "particleMaxLife": 750, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 100, "particleMaxSpeed": 120, "particleStartZ": 70, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 33, "endScale": 1, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": null, "id": 340}, {"name": "muzzle_flash_white_tiny", "maxParticleCount": 3, "minLife": 3, "maxLife": 1, "particleMinInterval": 20, "particleMaxInterval": 100, "particleMinLife": 100, "particleMaxLife": 100, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 70, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["muzzle_flash_white", "muzzle_flash_white_2"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 100, "endScale": 200, "fadeOutDuration": 0, "inertia": 0, "enemyVersion": null, "id": 341}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "muzzle_flash_smaller", "maxParticleCount": [3, 3], "minLife": [3, 3], "maxLife": [1, 1], "particleMinInterval": [20, 20], "particleMaxInterval": [100, 100], "particleMinLife": [100, 100], "particleMaxLife": [100, 100], "particleMinAngle": [-5, -5], "particleMaxAngle": [45, 45], "particleAngleRelativeToParent": [true, true], "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": [70, 70], "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["muzzle_flash", "muzzle_flash_2"], "rotateToDirection": [true, true], "loopParticleClip": [true, true], "startScale": [100, 150], "endScale": [200, 300], "fadeOutDuration": 0, "inertia": 0, "enemyVersion": null, "id": 343}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": 0, "inertia": 0, "enemyVersion": null}, {"name": "muzzle_flash", "maxParticleCount": [3, 3], "minLife": [3, 3], "maxLife": [1, 1], "particleMinInterval": [20, 20], "particleMaxInterval": [100, 100], "particleMinLife": [100, 100], "particleMaxLife": [100, 100], "particleMinAngle": [-5, -5], "particleMaxAngle": [45, 45], "particleAngleRelativeToParent": [true, true], "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": [70, 70], "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["muzzle_flash", "muzzle_flash_2"], "rotateToDirection": [true, true], "loopParticleClip": [true, true], "startScale": [150, 150], "endScale": [300, 300], "fadeOutDuration": 0, "inertia": 0, "enemyVersion": null, "id": 345}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": 0, "inertia": 0, "enemyVersion": null}, {"name": "shooting_spark_emitter", "maxParticleCount": 7, "minLife": 10, "maxLife": 180, "particleMinInterval": 10, "particleMaxInterval": null, "particleMinLife": 300, "particleMaxLife": 750, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 100, "particleMaxSpeed": 120, "particleStartZ": 70, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_spark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 50, "endScale": 1, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": null, "id": 347}, {"name": "rocket_spark_emitter", "maxParticleCount": 1, "minLife": null, "maxLife": null, "particleMinInterval": 20, "particleMaxInterval": null, "particleMinLife": 50, "particleMaxLife": 200, "particleMinAngle": -356, "particleMaxAngle": null, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": 2, "particleMinSpeed": 100, "particleMaxSpeed": 200, "particleStartZ": 0, "particleMinVelocityZ": 200, "particleMaxVelocityZ": 300, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_spark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 30, "endScale": 1, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 348}, {"name": "rocket_attack_smoke_emitter_red", "maxParticleCount": 5, "minLife": 180, "maxLife": 240, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 2, "particleMaxSpeed": 5, "particleStartZ": 66, "particleMinVelocityZ": -100, "particleMaxVelocityZ": -200, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 60, "endScale": 300, "fadeOutDuration": 600, "inertia": 20, "enemyVersion": null, "id": 349}, {"name": "rocket_attack_smoke_emitter", "maxParticleCount": 5, "minLife": 180, "maxLife": 240, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 2, "particleMaxSpeed": 5, "particleStartZ": 66, "particleMinVelocityZ": -100, "particleMaxVelocityZ": -200, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle", "rotateToDirection": null, "loopParticleClip": null, "startScale": 60, "endScale": 300, "fadeOutDuration": 600, "inertia": 20, "enemyVersion": "rocket_attack_smoke_emitter_red", "id": 350}, {"name": "rocket_shoot_spark_emitter_red", "maxParticleCount": 8, "minLife": 120, "maxLife": 180, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 500, "particleMaxLife": 750, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 3, "particleMaxSpeed": 5, "particleStartZ": 66, "particleMinVelocityZ": -400, "particleMaxVelocityZ": -600, "particleGravity": -200, "particleMinTailLength": 10, "particleMaxTailLength": 30, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 351}, {"name": "rocket_shoot_spark_emitter", "maxParticleCount": 8, "minLife": 120, "maxLife": 180, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 500, "particleMaxLife": 750, "particleMinAngle": -5, "particleMaxAngle": 45, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 3, "particleMaxSpeed": 5, "particleStartZ": 66, "particleMinVelocityZ": -400, "particleMaxVelocityZ": -600, "particleGravity": -200, "particleMinTailLength": 10, "particleMaxTailLength": 30, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot_blue", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 1, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": "rocket_shoot_spark_emitter_red", "id": 352}, {"name": "laser_muzzle_emitter_red", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 5, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 75, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_muzzleline_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 10, "endScale": 200, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 353}, {"name": "laser_muzzle_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 5, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 75, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_muzzleline_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 10, "endScale": 200, "fadeOutDuration": 100, "inertia": null, "enemyVersion": "laser_muzzle_emitter_red", "id": 354}, {"name": "charge_fx_emitter", "maxParticleCount": 30, "minLife": 500, "maxLife": 1200, "particleMinInterval": 50, "particleMaxInterval": 100, "particleMinLife": 1200, "particleMaxLife": 2400, "particleMinAngle": 0, "particleMaxAngle": null, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 10, "particleMaxSpeed": 20, "particleStartZ": 50, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": -30, "particleMinTailLength": 40, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "gen_smoke_small_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 300, "fadeOutDuration": 300, "inertia": null, "enemyVersion": null, "id": 355}, {"name": "turret_muzzle_emitter_red", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 5, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 20, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_muzzleline_particle_red", "rotateToDirection": true, "loopParticleClip": null, "startScale": 10, "endScale": 200, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 356}, {"name": "turret_muzzle_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 2, "particleMaxInterval": 3, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 5, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 20, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_muzzleline_particle", "rotateToDirection": true, "loopParticleClip": null, "startScale": 10, "endScale": 200, "fadeOutDuration": 100, "inertia": null, "enemyVersion": "turret_muzzle_emitter_red", "id": 357}, {"name": "splat_emitter", "maxParticleCount": 4, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 30, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 2, "particleMaxSpeed": 3, "particleStartZ": 100, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 120, "particleGravity": 20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "splat", "rotateToDirection": null, "loopParticleClip": null, "startScale": 20, "endScale": 50, "fadeOutDuration": 600, "inertia": null, "enemyVersion": null, "id": 358}, {"name": "ground_splat_emitter_red", "maxParticleCount": 10, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 10000, "particleMaxLife": 10000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["splat_1_red", "splat_2_red", "splat_3_red"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 20, "fadeOutDuration": 200, "inertia": 10, "enemyVersion": null, "id": 359}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "ground_splat_small_red", "maxParticleCount": 10, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 8000, "particleMaxLife": 9000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "splat_3_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 40, "endScale": 1, "fadeOutDuration": 200, "inertia": 10, "enemyVersion": null, "id": 362}, {"name": "ground_splat_small", "maxParticleCount": 10, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 8000, "particleMaxLife": 9000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "splat_3", "rotateToDirection": null, "loopParticleClip": null, "startScale": 40, "endScale": 1, "fadeOutDuration": 200, "inertia": 10, "enemyVersion": "ground_splat_small_red", "id": 363}, {"name": "ground_splat_emitter", "maxParticleCount": 10, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 10000, "particleMaxLife": 10000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -5, "particleMaxRadius": 5, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["splat_1", "splat_2", "splat_3"], "rotateToDirection": null, "loopParticleClip": null, "startScale": 50, "endScale": 20, "fadeOutDuration": 200, "inertia": 10, "enemyVersion": "ground_splat_emitter_red", "id": 364}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_fire", "maxParticleCount": 70, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 100, "particleMaxLife": 5000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 80, "endScale": 30, "fadeOutDuration": 200, "inertia": 300, "enemyVersion": null, "id": 367}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_splat_red", "maxParticleCount": 10, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 1400, "particleMaxLife": 1400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["barkeep_splat_1_red", "barkeep_splat_2_red"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 70, "endScale": 50, "fadeOutDuration": 200, "inertia": 300, "enemyVersion": null, "id": 370}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_splat", "maxParticleCount": 10, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 1400, "particleMaxLife": 1400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -15, "particleMaxRadius": 15, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["barkeep_splat_1", "barkeep_splat_2"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 70, "endScale": 50, "fadeOutDuration": 200, "inertia": 300, "enemyVersion": "barkeep_splat_red", "id": 372}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "barkeep_splat_ulti", "maxParticleCount": 1, "minLife": 1, "maxLife": 1, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 3000, "particleMaxLife": 4000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -20, "particleMaxRadius": 20, "particleMinSpeed": 1, "particleMaxSpeed": 2, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "splat_ulti", "rotateToDirection": null, "loopParticleClip": null, "startScale": 40, "endScale": 10, "fadeOutDuration": 200, "inertia": 300, "enemyVersion": "barkeep_splat_red", "id": 374}, {"name": "splats_flying_red", "maxParticleCount": 10, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 100, "particleMaxLife": 700, "particleMinAngle": 90, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 15, "particleMinSpeed": 200, "particleMaxSpeed": 250, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "splat_3_red", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 10, "fadeOutDuration": 200, "inertia": 200, "enemyVersion": null, "id": 375}, {"name": "splats_flying", "maxParticleCount": 10, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 100, "particleMaxLife": 700, "particleMinAngle": 90, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -10, "particleMaxRadius": 15, "particleMinSpeed": 200, "particleMaxSpeed": 250, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "splat_3", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 10, "fadeOutDuration": 200, "inertia": 200, "enemyVersion": "splats_flying_red", "id": 376}, {"name": "big_explosion_streaks_emitter", "maxParticleCount": 4, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 80, "particleMaxAngle": 100, "particleAngleRelativeToParent": null, "particleRandomAngle": false, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_s1", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 10, "fadeOutDuration": 400, "inertia": null, "enemyVersion": null, "id": 377}, {"name": "big_explosion_lines_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_lines1", "rotateToDirection": false, "loopParticleClip": false, "startScale": 50, "endScale": 200, "fadeOutDuration": 33, "inertia": null, "enemyVersion": null, "id": 378}, {"name": "big_Dust_emitter", "maxParticleCount": 4, "minLife": 50, "maxLife": 100, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 1200, "particleMaxLife": 1200, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 5, "particleMaxSpeed": 12, "particleStartZ": 10, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 2, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "dust_particle1", "rotateToDirection": false, "loopParticleClip": null, "startScale": 150, "endScale": 10, "fadeOutDuration": 400, "inertia": 100, "enemyVersion": null, "id": 379}, {"name": "big_Hot_dust_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 150, "particleMaxLife": 250, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 10, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "hot_dust_particle", "rotateToDirection": null, "loopParticleClip": true, "startScale": 200, "endScale": 33, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 380}, {"name": "very_big_explosion_lines_emitter", "maxParticleCount": 4, "minLife": 200, "maxLife": 300, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 400, "particleMaxLife": 600, "particleMinAngle": 80, "particleMaxAngle": 100, "particleAngleRelativeToParent": null, "particleRandomAngle": false, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": null, "particleMinVelocityZ": 80, "particleMaxVelocityZ": 100, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_s1", "rotateToDirection": null, "loopParticleClip": null, "startScale": 150, "endScale": 70, "fadeOutDuration": 400, "inertia": null, "enemyVersion": null, "id": 381}, {"name": "very_big_explosion_streaks_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 2, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_explosion_lines1", "rotateToDirection": false, "loopParticleClip": false, "startScale": 50, "endScale": 200, "fadeOutDuration": 33, "inertia": null, "enemyVersion": null, "id": 382}, {"name": "very_big_Dust_emitter", "maxParticleCount": 4, "minLife": 50, "maxLife": 100, "particleMinInterval": 3, "particleMaxInterval": 5, "particleMinLife": 1200, "particleMaxLife": 1200, "particleMinAngle": -360, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -4, "particleMaxRadius": 4, "particleMinSpeed": 5, "particleMaxSpeed": 12, "particleStartZ": 10, "particleMinVelocityZ": 1, "particleMaxVelocityZ": 2, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "dust_particle1", "rotateToDirection": false, "loopParticleClip": null, "startScale": 200, "endScale": 10, "fadeOutDuration": 400, "inertia": 100, "enemyVersion": null, "id": 383}, {"name": "very_big_Hot_dust_emitter", "maxParticleCount": 2, "minLife": 100, "maxLife": 200, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 150, "particleMaxLife": 250, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 10, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": null, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "hot_dust_particle", "rotateToDirection": null, "loopParticleClip": true, "startScale": 300, "endScale": 33, "fadeOutDuration": 100, "inertia": null, "enemyVersion": null, "id": 384}, {"name": "bgr_test_emitter", "maxParticleCount": 15, "minLife": 8500, "maxLife": 8500, "particleMinInterval": 70, "particleMaxInterval": 120, "particleMinLife": 3200, "particleMaxLife": 6400, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 3, "particleStartZ": 10, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 200, "particleGravity": -10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "dust_particle1", "rotateToDirection": false, "loopParticleClip": false, "startScale": 15, "endScale": 150, "fadeOutDuration": 5500, "inertia": null, "enemyVersion": null, "id": 385}, {"name": "bgr_test_trail_spark_emitter", "maxParticleCount": 15, "minLife": 8500, "maxLife": 8500, "particleMinInterval": 50, "particleMaxInterval": 50, "particleMinLife": 500, "particleMaxLife": 750, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 1, "particleMaxSpeed": 3, "particleStartZ": null, "particleMinVelocityZ": 120, "particleMaxVelocityZ": 250, "particleGravity": -20, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "gen_hitfx_dot", "rotateToDirection": true, "loopParticleClip": null, "startScale": 33, "endScale": 5, "fadeOutDuration": 50, "inertia": 0, "enemyVersion": "rocket_trail_spark_emitter_red", "id": 386}, {"name": "Green_hit", "maxParticleCount": 3, "minLife": 200, "maxLife": 300, "particleMinInterval": 5, "particleMaxInterval": 5, "particleMinLife": 300, "particleMaxLife": 600, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 1, "particleMinSpeed": 15, "particleMaxSpeed": 120, "particleStartZ": 0, "particleMinVelocityZ": 50, "particleMaxVelocityZ": 500, "particleGravity": -1200, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc"], "particleExportName": ["grass_straw_3", "grass_straw_2", "grass_straw_1"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 120, "endScale": 20, "fadeOutDuration": 500, "inertia": 100, "enemyVersion": null, "id": 387}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Sharpie_emitter", "maxParticleCount": 1, "minLife": 2, "maxLife": 2, "particleMinInterval": 1, "particleMaxInterval": 5, "particleMinLife": 1200, "particleMaxLife": 1200, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 5, "particleMinVelocityZ": 5, "particleMaxVelocityZ": 15, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "sharpie_fx", "rotateToDirection": null, "loopParticleClip": true, "startScale": 45, "endScale": 45, "fadeOutDuration": 50, "inertia": 500, "enemyVersion": null, "id": 390}, {"name": "Sharpie_emitter_enemy", "maxParticleCount": 1, "minLife": 2, "maxLife": 2, "particleMinInterval": 1, "particleMaxInterval": 5, "particleMinLife": 1200, "particleMaxLife": 1200, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 5, "particleMinVelocityZ": 5, "particleMaxVelocityZ": 15, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "sharpie_fx_red", "rotateToDirection": null, "loopParticleClip": true, "startScale": 45, "endScale": 45, "fadeOutDuration": 50, "inertia": 500, "enemyVersion": null, "id": 391}, {"name": "MineRing_emitter_enemy", "maxParticleCount": 1, "minLife": 1, "maxLife": 1, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 1300, "particleMaxLife": 1300, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "mine_range600_red", "rotateToDirection": null, "loopParticleClip": null, "startScale": 70, "endScale": 70, "fadeOutDuration": 50, "inertia": null, "enemyVersion": null, "id": 392}, {"name": "MineRing_emitter", "maxParticleCount": 1, "minLife": 1, "maxLife": 1, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 1300, "particleMaxLife": 1300, "particleMinAngle": 0, "particleMaxAngle": 0, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "mine_range600_blue", "rotateToDirection": null, "loopParticleClip": null, "startScale": 70, "endScale": 70, "fadeOutDuration": 50, "inertia": null, "enemyVersion": null, "id": 393}, {"name": "SpawnShield_emitter", "maxParticleCount": 1, "minLife": 1, "maxLife": 1, "particleMinInterval": 1, "particleMaxInterval": 1, "particleMinLife": 4000, "particleMaxLife": 4000, "particleMinAngle": 180, "particleMaxAngle": 180, "particleAngleRelativeToParent": true, "particleRandomAngle": null, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 0, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "spawnshield_fx", "rotateToDirection": null, "loopParticleClip": true, "startScale": 100, "endScale": 100, "fadeOutDuration": 50, "inertia": null, "enemyVersion": null, "id": 394}, {"name": "gold_trail_emitter", "maxParticleCount": 15, "minLife": 100, "maxLife": 200, "particleMinInterval": 100, "particleMaxInterval": 150, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 3, "particleMinSpeed": 30, "particleMaxSpeed": 40, "particleStartZ": 20, "particleMinVelocityZ": 30, "particleMaxVelocityZ": 40, "particleGravity": -1500, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "coin_asset", "rotateToDirection": true, "loopParticleClip": null, "startScale": 50, "endScale": 50, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 395}, {"name": "gold_no_hit_explosion", "maxParticleCount": 15, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 3, "particleMinSpeed": 30, "particleMaxSpeed": 40, "particleStartZ": 20, "particleMinVelocityZ": 100, "particleMaxVelocityZ": 120, "particleGravity": -1500, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "coin_asset", "rotateToDirection": true, "loopParticleClip": null, "startScale": 50, "endScale": 50, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 396}, {"name": "gold_hit_explosion", "maxParticleCount": 15, "minLife": 100, "maxLife": 200, "particleMinInterval": 10, "particleMaxInterval": 20, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 1, "particleMaxRadius": 3, "particleMinSpeed": 40, "particleMaxSpeed": 60, "particleStartZ": 20, "particleMinVelocityZ": 120, "particleMaxVelocityZ": 160, "particleGravity": -1500, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "coin_asset", "rotateToDirection": true, "loopParticleClip": null, "startScale": 50, "endScale": 50, "fadeOutDuration": 200, "inertia": 0, "enemyVersion": null, "id": 397}, {"name": "stunned_particle", "maxParticleCount": 5, "minLife": 800, "maxLife": 800, "particleMinInterval": 200, "particleMaxInterval": 250, "particleMinLife": 500, "particleMaxLife": 700, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 5, "particleMaxRadius": 7, "particleMinSpeed": 0, "particleMaxSpeed": 0, "particleStartZ": 100, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_01", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 100, "fadeOutDuration": 500, "inertia": 20, "enemyVersion": null, "id": 398}, {"name": "crow_flame_trail_large_particle", "maxParticleCount": 30, "minLife": 30, "maxLife": 10, "particleMinInterval": 20, "particleMaxInterval": 20, "particleMinLife": 700, "particleMaxLife": 900, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 10, "particleMaxSpeed": 20, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "dynamike_spark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 120, "endScale": 20, "fadeOutDuration": 800, "inertia": 0, "enemyVersion": null, "id": 399}, {"name": "crow_flame_trail_small_particle", "maxParticleCount": 30, "minLife": 30, "maxLife": 10, "particleMinInterval": 20, "particleMaxInterval": 20, "particleMinLife": 600, "particleMaxLife": 800, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 2, "particleMinSpeed": 30, "particleMaxSpeed": 130, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "dynamike_spark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 70, "endScale": 10, "fadeOutDuration": 700, "inertia": 0, "enemyVersion": null, "id": 400}, {"name": "flame_trail_particle", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 30, "particleMaxInterval": 30, "particleMinLife": 200, "particleMaxLife": 300, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -1, "particleMaxRadius": 1, "particleMinSpeed": 10, "particleMaxSpeed": 70, "particleStartZ": null, "particleMinVelocityZ": -3, "particleMaxVelocityZ": 3, "particleGravity": 35, "particleMinTailLength": 500, "particleMaxTailLength": 500, "particleResource": "sc/effects.sc", "particleExportName": "dynamike_spark", "rotateToDirection": true, "loopParticleClip": null, "startScale": 100, "endScale": 20, "fadeOutDuration": 100, "inertia": 0, "enemyVersion": null, "id": 401}, {"name": "meteor_shards", "maxParticleCount": 10, "minLife": 30, "maxLife": 40, "particleMinInterval": 0, "particleMaxInterval": 0, "particleMinLife": 500, "particleMaxLife": 2000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 50, "particleMaxSpeed": 200, "particleStartZ": 33, "particleMinVelocityZ": 600, "particleMaxVelocityZ": 1500, "particleGravity": -7000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["meteor_shard_01", "meteor_shard_02", "meteor_shard_03", "meteor_shard_04"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 120, "endScale": 30, "fadeOutDuration": 150, "inertia": 20, "enemyVersion": null, "id": 402}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "power_up_bottle_sparkle_trail", "maxParticleCount": 10, "minLife": 1500, "maxLife": 3000, "particleMinInterval": 100, "particleMaxInterval": 300, "particleMinLife": 1000, "particleMaxLife": 3000, "particleMinAngle": -100, "particleMaxAngle": -60, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 5, "particleMaxRadius": 8, "particleMinSpeed": 10, "particleMaxSpeed": 30, "particleStartZ": -50, "particleMinVelocityZ": 0, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": "sc/effects.sc", "particleExportName": "sparkle_01", "rotateToDirection": true, "loopParticleClip": null, "startScale": 50, "endScale": 10, "fadeOutDuration": 500, "inertia": 0, "enemyVersion": null, "id": 406}, {"name": "mushroom_particles", "maxParticleCount": 10, "minLife": 5000, "maxLife": 5000, "particleMinInterval": 10, "particleMaxInterval": 0, "particleMinLife": 5000, "particleMaxLife": 5000, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 30, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "mushroom_growing_01", "rotateToDirection": null, "loopParticleClip": null, "startScale": 100, "endScale": 100, "fadeOutDuration": 250, "inertia": null, "enemyVersion": null, "id": 407}, {"name": "burning_particle_raid_boss", "maxParticleCount": 50, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 5500, "particleMaxLife": 6700, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 23, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 70, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 408}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "raidboss_skill_warning_short", "maxParticleCount": 1, "minLife": 2, "maxLife": 2, "particleMinInterval": 1, "particleMaxInterval": 5, "particleMinLife": 750, "particleMaxLife": 750, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 5, "particleMinVelocityZ": 5, "particleMaxVelocityZ": 15, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "sharpie_fx_red", "rotateToDirection": null, "loopParticleClip": true, "startScale": 60, "endScale": 60, "fadeOutDuration": 50, "inertia": 500, "enemyVersion": null, "id": 411}, {"name": "raidboss_skill_warning_medium", "maxParticleCount": 1, "minLife": 2, "maxLife": 2, "particleMinInterval": 1, "particleMaxInterval": 5, "particleMinLife": 1000, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 5, "particleMinVelocityZ": 5, "particleMaxVelocityZ": 15, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "sharpie_fx_red", "rotateToDirection": null, "loopParticleClip": true, "startScale": 60, "endScale": 60, "fadeOutDuration": 50, "inertia": 500, "enemyVersion": null, "id": 412}, {"name": "raidboss_skill_warning_long", "maxParticleCount": 1, "minLife": 2, "maxLife": 2, "particleMinInterval": 1, "particleMaxInterval": 5, "particleMinLife": 1250, "particleMaxLife": 1250, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": true, "particleRandomAngle": true, "particleMinRadius": 0, "particleMaxRadius": 0, "particleMinSpeed": 1, "particleMaxSpeed": 1, "particleStartZ": 5, "particleMinVelocityZ": 5, "particleMaxVelocityZ": 15, "particleGravity": 10, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": "sc/effects.sc", "particleExportName": "sharpie_fx_red", "rotateToDirection": null, "loopParticleClip": true, "startScale": 60, "endScale": 60, "fadeOutDuration": 50, "inertia": 500, "enemyVersion": null, "id": 413}, {"name": "burning_particle_wizard_ulti_blue", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 3800, "particleMaxLife": 3800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire_blue_1", "fire_blue_2", "fire_blue_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 414}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle_wizard_ulti", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 3800, "particleMaxLife": 3800, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 417}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle_wizard_blue", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 1900, "particleMaxLife": 1900, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire_blue_1", "fire_blue_2", "fire_blue_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 420}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "burning_particle_wizard", "maxParticleCount": 20, "minLife": 100, "maxLife": 200, "particleMinInterval": 1, "particleMaxInterval": 0, "particleMinLife": 1900, "particleMaxLife": 1900, "particleMinAngle": null, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": 2, "particleMaxRadius": 7, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": 0, "particleMinVelocityZ": null, "particleMaxVelocityZ": 0, "particleGravity": 0, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["fire", "fire_2", "fire_3"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 50, "endScale": 30, "fadeOutDuration": 500, "inertia": null, "enemyVersion": null, "id": 423}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_hit_debris1_town", "maxParticleCount": 1, "minLife": 0, "maxLife": 0, "particleMinInterval": 10, "particleMaxInterval": 500, "particleMinLife": 100, "particleMaxLife": 1000, "particleMinAngle": -45, "particleMaxAngle": 45, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -2, "particleMaxRadius": 2, "particleMinSpeed": 20, "particleMaxSpeed": 70, "particleStartZ": 28, "particleMinVelocityZ": 150, "particleMaxVelocityZ": 300, "particleGravity": -2000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1_town", "stone_2_town", "stone_3_town"], "rotateToDirection": true, "loopParticleClip": true, "startScale": 75, "endScale": 40, "fadeOutDuration": 100, "inertia": 10, "enemyVersion": null, "id": 426}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": "Rock_explo_debris2_town", "maxParticleCount": 5, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": 200, "particleMaxLife": 1000, "particleMinAngle": 0, "particleMaxAngle": 360, "particleAngleRelativeToParent": null, "particleRandomAngle": true, "particleMinRadius": -3, "particleMaxRadius": 3, "particleMinSpeed": 20, "particleMaxSpeed": 100, "particleStartZ": 0, "particleMinVelocityZ": 1000, "particleMaxVelocityZ": 3000, "particleGravity": -6000, "particleMinTailLength": 0, "particleMaxTailLength": 0, "particleResource": ["sc/effects.sc", "sc/effects.sc", "sc/effects.sc"], "particleExportName": ["stone_1_town", "stone_2_town", "stone_3_town"], "rotateToDirection": null, "loopParticleClip": true, "startScale": 300, "endScale": 100, "fadeOutDuration": 200, "inertia": 20, "enemyVersion": null, "id": 429}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}, {"name": null, "maxParticleCount": null, "minLife": null, "maxLife": null, "particleMinInterval": null, "particleMaxInterval": null, "particleMinLife": null, "particleMaxLife": null, "particleMinAngle": null, "particleMaxAngle": null, "particleAngleRelativeToParent": null, "particleRandomAngle": null, "particleMinRadius": null, "particleMaxRadius": null, "particleMinSpeed": null, "particleMaxSpeed": null, "particleStartZ": null, "particleMinVelocityZ": null, "particleMaxVelocityZ": null, "particleGravity": null, "particleMinTailLength": null, "particleMaxTailLength": null, "particleResource": null, "particleExportName": null, "rotateToDirection": null, "loopParticleClip": null, "startScale": null, "endScale": null, "fadeOutDuration": null, "inertia": null, "enemyVersion": null}], "shop_items": [{"name": "FreeBox", "offerType": 0, "iconFrameNumber": 0, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_boxes", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_boxes", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_boxes", "confirmItemAsset": "shop_popupitem_6", "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": null, "offerAssetLarge": null}, {"name": "UpgradeMaterial", "offerType": 1, "iconFrameNumber": [0, 1], "maxResourcePerFrame": [10, 50], "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_coins", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_resourses_coins", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_coins", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_coins_small", "offerAssetLarge": "offer_item_coins_big"}, {"name": null, "offerType": null, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": null, "shopItemAsset": null, "shopItemBg": null, "miniOfferAsset": null, "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": null, "confirmItemAsset": null, "confirmItemBg": null, "offerAssetSmall": null, "offerAssetLarge": null}, {"name": null, "offerType": null, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": null, "shopItemAsset": null, "shopItemBg": null, "miniOfferAsset": null, "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": null, "confirmItemAsset": null, "confirmItemBg": null, "offerAssetSmall": null, "offerAssetLarge": null}, {"name": null, "offerType": null, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": null, "shopItemAsset": null, "shopItemBg": null, "miniOfferAsset": null, "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": null, "confirmItemAsset": null, "confirmItemBg": null, "offerAssetSmall": null, "offerAssetLarge": null}, {"name": "GuaranteedBox", "offerType": 2, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_brawler", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_brawler", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_brawler", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_guarantee_brawler_small", "offerAssetLarge": "offer_item_guarantee_brawler_big"}, {"name": "GuaranteedHero", "offerType": 3, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_listitem_3", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_listitem_3", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_listitem_3", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_brawler_small", "offerAssetLarge": "offer_item_brawler_big"}, {"name": "Skin", "offerType": 4, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_listitem_4", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_listitem_4", "separatedSectionOfferAsset": "shop_item_skins", "separatedSectionTeaseAsset": "shop_item_skins_coming_soon", "brawlidaysOfferAsset": "shop_item_brawlidays_skins", "legendaryOfferAsset": "shop_item_legendary_skins", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_brawler_small", "offerAssetLarge": "offer_item_brawler_big"}, {"name": "StarPower", "offerType": 5, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_starpower", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_starpower", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_starpower", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_star_power_small", "offerAssetLarge": "offer_item_star_power_big"}, {"name": "BrawlBox", "offerType": 6, "iconFrameNumber": 0, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_boxes", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_boxes", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_boxes", "confirmItemAsset": "shop_popupitem_6", "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_boxes_small", "offerAssetLarge": "offer_item_boxes_big"}, {"name": "Ticket", "offerType": 7, "iconFrameNumber": [0, 1, 2], "maxResourcePerFrame": [10, 50, -1], "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_tickets", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_resourses_tickets", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_tickets", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_tickets_small", "offerAssetLarge": "offer_item_tickets_big"}, {"name": null, "offerType": null, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": null, "shopItemAsset": null, "shopItemBg": null, "miniOfferAsset": null, "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": null, "confirmItemAsset": null, "confirmItemBg": null, "offerAssetSmall": null, "offerAssetLarge": null}, {"name": null, "offerType": null, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": null, "shopItemAsset": null, "shopItemBg": null, "miniOfferAsset": null, "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": null, "confirmItemAsset": null, "confirmItemBg": null, "offerAssetSmall": null, "offerAssetLarge": null}, {"name": "HeroPower", "offerType": 8, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_powerpoints", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_powerpoints", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_powerpoints", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_brawler_ppoints_small", "offerAssetLarge": "offer_item_brawler_ppoints_big"}, {"name": "CoinDoubler", "offerType": 9, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_coin_doubler", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_coin_doubler", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_coin_doubler", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_token_doubler_small", "offerAssetLarge": "offer_item_token_doubler_big"}, {"name": "BigBox", "offerType": 10, "iconFrameNumber": 2, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_boxes", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_boxes", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_boxes", "confirmItemAsset": "shop_popupitem_10", "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_boxes_small", "offerAssetLarge": "offer_item_boxes_big"}, {"name": "Keys", "offerType": 11, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_listitem_11", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_listitem_11", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_listitem_11", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "shop_listitem_11", "offerAssetLarge": "shop_largeitem_11"}, {"name": "WildcardPower", "offerType": 12, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_listitem_12", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_listitem_12", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_listitem_12", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_power_points_small", "offerAssetLarge": "offer_item_power_points_big"}, {"name": "EventSlot", "offerType": 13, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_listitem_13", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_listitem_13", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_listitem_13", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "shop_listitem_13", "offerAssetLarge": "shop_largeitem_13"}, {"name": "MediumBox", "offerType": 14, "iconFrameNumber": 1, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_boxes", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_boxes", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_boxes", "confirmItemAsset": "shop_popupitem_14", "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_boxes_small", "offerAssetLarge": "offer_item_boxes_big"}, {"name": "AdBox", "offerType": 15, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": null, "shopItemBg": null, "miniOfferAsset": null, "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": null, "confirmItemAsset": null, "confirmItemBg": null, "offerAssetSmall": null, "offerAssetLarge": null}, {"name": "Gems", "offerType": 16, "iconFrameNumber": null, "maxResourcePerFrame": null, "fileName": "sc/ui.sc", "shopItemAsset": "shop_item_resourses_gems", "shopItemBg": "shop_price_wrapper_1", "miniOfferAsset": "shop_item_resourses_gems", "separatedSectionOfferAsset": null, "separatedSectionTeaseAsset": null, "brawlidaysOfferAsset": null, "legendaryOfferAsset": "shop_item_resourses_gems", "confirmItemAsset": null, "confirmItemBg": "shop_popupprice_wrapper_1", "offerAssetSmall": "offer_item_gems_small", "offerAssetLarge": "offer_item_gems_big"}], "sounds": [{"name": "ButtonClick2", "fileNames": "sfx/menu_click_08.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 4}, {"name": "Menu_goback", "fileNames": ["sfx/tick_vo_05hurt.ogg", "sfx/tick_vo_06hurt.ogg"], "minVolume": [55, 55], "maxVolume": [65, 65], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [3, 3], "maxRepeatMs": [15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 5}, {"name": "Menu_dismiss", "fileNames": "sfx/menu_dismiss_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 6}, {"name": "LaserShot01", "fileNames": "sfx/laser_04.ogg", "minVolume": 25, "maxVolume": 35, "minPitch": 94, "maxPitch": 106, "priority": 1, "maximumByType": 10, "maxRepeatMs": 30, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 7}, {"name": "Orb_spawn", "fileNames": "sfx/pickup_spawn_03.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 8}, {"name": "Orb_get", "fileNames": "sfx/get_pickup_06.ogg", "minVolume": 45, "maxVolume": 45, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 9}, {"name": "Orb_glow_loop", "fileNames": "sfx/orb_glow_03.ogg", "minVolume": 15, "maxVolume": 15, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 10}, {"name": "Sound_Gen_explosion", "fileNames": "sfx/laser_explo_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 97, "maxPitch": 103, "priority": 1, "maximumByType": 7, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 11}, {"name": "Sound_TNT_explosion", "fileNames": "sfx/tnt_ulti_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 97, "maxPitch": 103, "priority": 1, "maximumByType": 7, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 12}, {"name": "Sound_Gen_small_explosion", "fileNames": "sfx/gen_small_explo_02.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 13}, {"name": "TNT_reload", "fileNames": "sfx/tnt_reload_03.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 14}, {"name": "Sound_Blink", "fileNames": "sfx/blink_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 15}, {"name": "Sound_Heal", "fileNames": "sfx/heal01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 16}, {"name": "Sound_Grenade", "fileNames": "sfx/gr_launch02.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 17}, {"name": "Skill_activated", "fileNames": "sfx/skill_used_03.ogg", "minVolume": 20, "maxVolume": 25, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 18}, {"name": "Ulti_gain", "fileNames": "sfx/ulti_gain_03.ogg", "minVolume": 25, "maxVolume": 25, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 19}, {"name": "Ulti_ready", "fileNames": "sfx/ulti_ready_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 20}, {"name": "Laser_Count_15", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 75, "maxPitch": 75, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 21}, {"name": "Laser_Count_14", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 79, "maxPitch": 79, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 22}, {"name": "Laser_Count_13", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 84, "maxPitch": 84, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 23}, {"name": "Laser_Count_12", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 89, "maxPitch": 89, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 24}, {"name": "Laser_Count_11", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 94, "maxPitch": 94, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 25}, {"name": "Laser_Count_10", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 26}, {"name": "Laser_Count_9", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 106, "maxPitch": 106, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 27}, {"name": "Laser_Count_8", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 112, "maxPitch": 112, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 28}, {"name": "Laser_Count_7", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 119, "maxPitch": 119, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 29}, {"name": "Laser_Count_6", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 126, "maxPitch": 128, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 30}, {"name": "Laser_Count_5", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 133, "maxPitch": 133, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 31}, {"name": "Laser_Count_4", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 141, "maxPitch": 141, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 32}, {"name": "Laser_Count_3", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 150, "maxPitch": 150, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 33}, {"name": "Laser_Count_2", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 159, "maxPitch": 159, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 34}, {"name": "Laser_Count_1", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 168, "maxPitch": 168, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 35}, {"name": "Laser_Count_0", "fileNames": "sfx/countdown_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 178, "maxPitch": 178, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 36}, {"name": "Low_health_1_loop", "fileNames": "sfx/low_health_beep_03.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 37}, {"name": "Low_health_2_loop", "fileNames": "sfx/low_health_beep_03.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 200, "maxPitch": 200, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 38}, {"name": "bandit_reload", "fileNames": "sfx/bandit_reload_01.ogg", "minVolume": 25, "maxVolume": 25, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 39}, {"name": "gunslinger_fire", "fileNames": "sfx/pistol_fire_01.ogg", "minVolume": 15, "maxVolume": 30, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 40}, {"name": "gunslinger_fire_ulti", "fileNames": "sfx/pistol_fire_ulti_01.ogg", "minVolume": 20, "maxVolume": 30, "minPitch": 105, "maxPitch": 115, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 41}, {"name": "explosion_rocket_rose", "fileNames": "sfx/rose_rocket_explo_01.ogg", "minVolume": 25, "maxVolume": 35, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 42}, {"name": "explosion_rocket_rose_ulti", "fileNames": "sfx/rose_rocket_ulti_explo_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 43}, {"name": "tnt_attack", "fileNames": "sfx/dynamike_throw_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 44}, {"name": "tnt_attack_ulti", "fileNames": "sfx/dynamike_throw_02.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 45}, {"name": "No_ammo_shotgungirl", "fileNames": "sfx/sgg_out_of_ammo_02.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 46}, {"name": "Dry_fire_shotgungirl", "fileNames": "sfx/sgg_dryfire_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 47}, {"name": "Rhinocharge", "fileNames": "sfx/dummy.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 48}, {"name": "Rhinofire", "fileNames": "sfx/rhino_fire_01.ogg", "minVolume": 40, "maxVolume": 45, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 49}, {"name": "Rhinostep", "fileNames": "sfx/rhinostep_01.ogg", "minVolume": 35, "maxVolume": 50, "minPitch": 92, "maxPitch": 108, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 50}, {"name": "Robotfire", "fileNames": "sfx/rocket_rose_atk_02.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 51}, {"name": "Rocketgirlspecial", "fileNames": "sfx/flowerrocket_01.ogg", "minVolume": 55, "maxVolume": 55, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 52}, {"name": "Roboturret", "fileNames": "sfx/roboturret01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 53}, {"name": "Water_jess_turret", "fileNames": "sfx/roboturret01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 110, "maxPitch": 120, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 54}, {"name": "Robocon", "fileNames": "sfx/robocon_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 55}, {"name": "Timedgrenade", "fileNames": "sfx/solgrenade01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 56}, {"name": "Shotgun", "fileNames": "sfx/shotgun_fire_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 57}, {"name": "Utilshotgun", "fileNames": "sfx/bigshotgun01.ogg", "minVolume": 65, "maxVolume": 70, "minPitch": 97, "maxPitch": 103, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 58}, {"name": "Utilshotgun_Vo", "fileNames": ["sfx/shelly_ulti_01.ogg", "sfx/shelly_ulti_02.ogg", "sfx/shelly_ulti_03.ogg", "sfx/shelly_ulti_04.ogg"], "minVolume": [30, 30, 30, 30], "maxVolume": [40, 40, 40, 40], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 59}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "ShellyTakedamge_Vo", "fileNames": ["sfx/shelly_hurt_01.ogg", "sfx/shelly_hurt_02.ogg", "sfx/shelly_hurt_03.ogg", "sfx/shelly_hurt_04.ogg", "sfx/shelly_hurt_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 63}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Shelly_Die", "fileNames": ["sfx/shelly_die_01.ogg", "sfx/shelly_die_02.ogg", "sfx/shelly_die_03.ogg", "sfx/shelly_die_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 68}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Shelly_Kill", "fileNames": ["sfx/shelly_kill_01.ogg", "sfx/shelly_kill_02.ogg", "sfx/shelly_kill_03.ogg", "sfx/shelly_kill_04.ogg", "sfx/shelly_kill_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 72}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Shelly_Lead", "fileNames": ["sfx/shelly_lead_01.ogg", "sfx/shelly_lead_02.ogg", "sfx/shelly_lead_03.ogg", "sfx/shelly_lead_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 77}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Shelly_Start", "fileNames": ["sfx/shelly_start_01.ogg", "sfx/shelly_start_02.ogg", "sfx/shelly_start_03.ogg", "sfx/shelly_start_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 81}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Jess_ulti", "fileNames": ["sfx/jess_ulti_01.ogg", "sfx/jess_ulti_02.ogg", "sfx/jess_ulti_03.ogg", "sfx/jess_ulti_04.ogg", "sfx/jess_ulti_05.ogg", "sfx/jess_ulti_06.ogg"], "minVolume": [45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 85}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bull_takedamage_vo", "fileNames": ["sfx/bull_hurt_vo_01.ogg", "sfx/bull_hurt_vo_02.ogg", "sfx/bull_hurt_vo_03.ogg", "sfx/bull_hurt_vo_04.ogg", "sfx/bull_hurt_vo_05.ogg"], "minVolume": [40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 91}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bull_die", "fileNames": ["sfx/bull_die_vo_01.ogg", "sfx/bull_die_vo_02.ogg", "sfx/bull_die_vo_03.ogg", "sfx/bull_die_vo_04.ogg"], "minVolume": [40, 40, 40, 40], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 96}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bull_kill", "fileNames": ["sfx/bull_kill_vo_01.ogg", "sfx/bull_kill_vo_02.ogg", "sfx/bull_kill_vo_03.ogg", "sfx/bull_kill_vo_04.ogg"], "minVolume": [40, 40, 40, 40], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 100}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bull_lead", "fileNames": ["sfx/bull_lead_vo_01.ogg", "sfx/bull_lead_vo_02.ogg", "sfx/bull_lead_vo_03.ogg", "sfx/bull_lead_vo_04.ogg"], "minVolume": [40, 40, 40, 40], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 104}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bull_start", "fileNames": ["sfx/bull_start_vo_01.ogg", "sfx/bull_start_vo_02.ogg", "sfx/bull_start_vo_03.ogg"], "minVolume": [40, 40, 40], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 108}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bull_ulti", "fileNames": ["sfx/bull_ulti_vo_01.ogg", "sfx/bull_ulti_vo_02.ogg", "sfx/bull_ulti_vo_03.ogg", "sfx/bull_ulti_vo_04.ogg"], "minVolume": [40, 40, 40, 40], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 111}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Brock_start_vo", "fileNames": ["sfx/brock_start_vo_01.ogg", "sfx/brock_start_vo_02.ogg", "sfx/brock_start_vo_03.ogg", "sfx/brock_start_vo_04.ogg", "sfx/brock_start_vo_05.ogg", "sfx/brock_start_vo_06.ogg", "sfx/brock_start_vo_07.ogg"], "minVolume": [45, 45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 115}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Brock_die_vo", "fileNames": ["sfx/brock_death_01.ogg", "sfx/brock_death_02.ogg", "sfx/brock_death_03.ogg", "sfx/brock_death_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 122}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Brock_hurt_vo", "fileNames": ["sfx/brock_hurt_01.ogg", "sfx/brock_hurt_02.ogg", "sfx/brock_hurt_03.ogg", "sfx/brock_hurt_04.ogg", "sfx/brock_hurt_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 126}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Brock_kill_vo", "fileNames": ["sfx/brock_kill_vo_01.ogg", "sfx/brock_kill_vo_02.ogg", "sfx/brock_kill_vo_03.ogg", "sfx/brock_kill_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 131}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Brock_lead_vo", "fileNames": ["sfx/brock_lead_vo_01.ogg", "sfx/brock_lead_vo_02.ogg", "sfx/brock_lead_vo_03.ogg", "sfx/brock_lead_vo_04.ogg", "sfx/brock_lead_vo_05.ogg", "sfx/brock_lead_vo_06.ogg"], "minVolume": [45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 135}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Brock_ulti_vo", "fileNames": ["sfx/brock_ulti_vo_01.ogg", "sfx/brock_ulti_vo_02.ogg", "sfx/brock_ulti_vo_03.ogg", "sfx/brock_ulti_vo_04.ogg", "sfx/brock_ulti_vo_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 141}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Jess_takedamage", "fileNames": ["sfx/jess_hurt_01.ogg", "sfx/jess_hurt_02.ogg", "sfx/jess_hurt_03.ogg", "sfx/jess_hurt_04.ogg", "sfx/jess_hurt_05.ogg", "sfx/jess_hurt_06.ogg"], "minVolume": [45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 146}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Jess_die", "fileNames": ["sfx/jess_die_01.ogg", "sfx/jess_die_02.ogg", "sfx/jess_die_03.ogg", "sfx/jess_die_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 152}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Jess_kill", "fileNames": ["sfx/jess_kill_01.ogg", "sfx/jess_kill_02.ogg", "sfx/jess_kill_03.ogg", "sfx/jess_kill_04.ogg", "sfx/jess_kill_05.ogg", "sfx/jess_kill_06.ogg", "sfx/jess_kill_07.ogg"], "minVolume": [45, 45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 156}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Jess_lead", "fileNames": ["sfx/jess_lead_01.ogg", "sfx/jess_lead_02.ogg", "sfx/jess_lead_03.ogg", "sfx/jess_lead_04.ogg", "sfx/jess_lead_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 163}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Jess_start", "fileNames": ["sfx/jess_start_vo_01.ogg", "sfx/jess_start_vo_02.ogg", "sfx/jess_start_vo_03.ogg", "sfx/jess_start_vo_04.ogg", "sfx/jess_start_vo_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 168}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Hotshot_Takedamge_Vo", "fileNames": ["sfx/hotshot_hurt_01.ogg", "sfx/hotshot_hurt_02.ogg", "sfx/hotshot_hurt_03.ogg", "sfx/hotshot_hurt_04.ogg", "sfx/hotshot_hurt_05.ogg", "sfx/hotshot_hurt_06.ogg", "sfx/hotshot_hurt_07.ogg", "sfx/hotshot_hurt_08.ogg"], "minVolume": [45, 45, 45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 173}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Hotshot_Die", "fileNames": ["sfx/hotshot_die_01.ogg", "sfx/hotshot_die_02.ogg", "sfx/hotshot_die_03.ogg", "sfx/hotshot_die_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 181}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Hotshot_Kill", "fileNames": ["sfx/hotshot_kill_01.ogg", "sfx/hotshot_kill_02.ogg", "sfx/hotshot_kill_03.ogg", "sfx/hotshot_kill_04.ogg", "sfx/hotshot_kill_05.ogg", "sfx/hotshot_kill_06.ogg", "sfx/hotshot_kill_07.ogg"], "minVolume": [45, 45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 185}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Hotshot_Lead", "fileNames": ["sfx/hotshot_lead_01.ogg", "sfx/hotshot_lead_02.ogg", "sfx/hotshot_lead_03.ogg", "sfx/hotshot_lead_04.ogg", "sfx/hotshot_lead_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 192}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Hotshot_Start", "fileNames": ["sfx/hotshot_start_01.ogg", "sfx/hotshot_start_02.ogg", "sfx/hotshot_start_03.ogg", "sfx/hotshot_start_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 197}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Hotshot_Ulti", "fileNames": ["sfx/hotshot_ulti_01.ogg", "sfx/hotshot_ulti_02.ogg", "sfx/hotshot_ulti_03.ogg", "sfx/hotshot_ulti_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 201}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Piper_Takedamage", "fileNames": ["sfx/piper_hurt_01.ogg", "sfx/piper_hurt_02.ogg", "sfx/piper_hurt_03.ogg", "sfx/piper_hurt_04.ogg", "sfx/piper_hurt_05.ogg", "sfx/piper_hurt_06.ogg"], "minVolume": [35, 35, 35, 35, 35, 35], "maxVolume": [45, 45, 45, 45, 45, 45], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 205}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Piper_Die", "fileNames": ["sfx/piper_die_01.ogg", "sfx/piper_die_02.ogg", "sfx/piper_die_03.ogg"], "minVolume": [35, 35, 35], "maxVolume": [45, 45, 45], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 211}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Piper_Kill", "fileNames": ["sfx/piper_kill_01.ogg", "sfx/piper_kill_02.ogg", "sfx/piper_kill_03.ogg", "sfx/piper_kill_04.ogg"], "minVolume": [35, 35, 35, 35], "maxVolume": [45, 45, 45, 45], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 214}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Piper_Lead", "fileNames": ["sfx/piper_lead_01.ogg", "sfx/piper_lead_02.ogg", "sfx/piper_lead_03.ogg"], "minVolume": [35, 35, 35], "maxVolume": [45, 45, 45], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 218}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Piper_Start", "fileNames": ["sfx/piper_start_01.ogg", "sfx/piper_start_02.ogg", "sfx/piper_start_03.ogg", "sfx/piper_start_04.ogg"], "minVolume": [35, 35, 35, 35], "maxVolume": [45, 45, 45, 45], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 221}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Piper_Ulti", "fileNames": ["sfx/piper_ulti_01.ogg", "sfx/piper_ulti_02.ogg"], "minVolume": [50, 50], "maxVolume": [60, 60], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 225}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Barley_Hurt", "fileNames": ["sfx/barley_hurt_01.ogg", "sfx/barley_hurt_02.ogg", "sfx/barley_hurt_03.ogg", "sfx/barley_hurt_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 227}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Barley_Die", "fileNames": ["sfx/barley_die_01.ogg", "sfx/barley_die_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 231}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Barley_Kill", "fileNames": ["sfx/barley_kill_01.ogg", "sfx/barley_kill_02.ogg", "sfx/barley_kill_03.ogg", "sfx/barley_kill_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 233}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Barley_Lead", "fileNames": "sfx/barley_lead_01.ogg", "minVolume": 45, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": 20000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 237}, {"name": "Barley_Start", "fileNames": ["sfx/barley_start_01.ogg", "sfx/barley_start_02.ogg", "sfx/barley_start_03.ogg", "sfx/barley_start_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 238}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Barley_Ulti", "fileNames": ["sfx/barley_ulti_01.ogg", "sfx/barley_ulti_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 242}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Barley_throw", "fileNames": ["sfx/barley_throw_01.ogg", "sfx/barley_throw_02.ogg"], "minVolume": [35, 35], "maxVolume": [45, 45], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 244}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rick_start", "fileNames": ["sfx/rick_start_vo_01.ogg", "sfx/rick_start_vo_02.ogg", "sfx/rick_start_vo_03.ogg", "sfx/rick_start_vo_04.ogg", "sfx/rick_start_vo_05.ogg", "sfx/rick_start_vo_06.ogg"], "minVolume": [45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": 10000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 246}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rick_kill", "fileNames": ["sfx/rick_kill_vo_01.ogg", "sfx/rick_kill_vo_02.ogg", "sfx/rick_kill_vo_03.ogg", "sfx/rick_kill_vo_04.ogg", "sfx/rick_kill_vo_05.ogg", "sfx/rick_kill_vo_06.ogg", "sfx/rick_kill_vo_07.ogg"], "minVolume": [40, 40, 40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 252}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rick_hurt", "fileNames": ["sfx/rick_hurt_01.ogg", "sfx/rick_hurt_02.ogg", "sfx/rick_hurt_03.ogg", "sfx/rick_hurt_04.ogg", "sfx/rick_hurt_05.ogg"], "minVolume": [40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 259}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rick_ulti", "fileNames": ["sfx/rick_ulti_01.ogg", "sfx/rick_ulti_02.ogg", "sfx/rick_ulti_03.ogg", "sfx/rick_ulti_04.ogg", "sfx/rick_ulti_05.ogg", "sfx/rick_ulti_06.ogg"], "minVolume": [40, 40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 264}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rick_lead", "fileNames": ["sfx/rick_lead_01.ogg", "sfx/rick_lead_02.ogg", "sfx/rick_lead_03.ogg", "sfx/rick_lead_04.ogg", "sfx/rick_lead_05.ogg"], "minVolume": [40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 270}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rick_die", "fileNames": ["sfx/rick_die_01.ogg", "sfx/rick_die_02.ogg", "sfx/rick_die_03.ogg", "sfx/rick_die_04.ogg", "sfx/rick_die_05.ogg"], "minVolume": [40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 275}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "El_primo_start", "fileNames": ["sfx/el_primo_start_vo_01.ogg", "sfx/el_primo_start_vo_02.ogg", "sfx/el_primo_start_vo_03.ogg", "sfx/el_primo_start_vo_04.ogg", "sfx/el_primo_start_vo_05.ogg", "sfx/el_primo_start_vo_06.ogg", "sfx/el_primo_start_vo_07.ogg"], "minVolume": [45, 45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 280}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "El_primo_kill", "fileNames": ["sfx/el_primo_kill_01.ogg", "sfx/el_primo_kill_02.ogg", "sfx/el_primo_kill_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 287}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "El_primo_hurt", "fileNames": ["sfx/el_primo_hurt_01.ogg", "sfx/el_primo_hurt_02.ogg", "sfx/el_primo_hurt_03.ogg", "sfx/el_primo_hurt_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 290}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "El_primo_lead", "fileNames": ["sfx/el_primo_lead_01.ogg", "sfx/el_primo_lead_02.ogg", "sfx/el_primo_lead_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 294}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "El_primo_die", "fileNames": ["sfx/el_primo_death_01.ogg", "sfx/el_primo_death_02.ogg", "sfx/el_primo_death_03.ogg", "sfx/el_primo_death_04.ogg"], "minVolume": [50, 50, 50, 50], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 297}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "El_primo_ulti", "fileNames": "sfx/el_primo_ulti_01.ogg", "minVolume": 50, "maxVolume": 55, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 301}, {"name": "El_primo_ulti_land", "fileNames": "sfx/el_primo_ulti_02.ogg", "minVolume": 50, "maxVolume": 55, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 302}, {"name": "El_primo_atk", "fileNames": ["sfx/el_primo_atk_01.ogg", "sfx/el_primo_atk_02.ogg", "sfx/el_primo_atk_03.ogg", "sfx/el_primo_atk_04.ogg", "sfx/el_primo_atk_05.ogg"], "minVolume": [40, 40, 40, 40, 40], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 303}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Crow_Takedamage", "fileNames": ["sfx/crow_get_hit_01.ogg", "sfx/crow_get_hit_02.ogg", "sfx/crow_get_hit_03.ogg", "sfx/crow_get_hit_04.ogg", "sfx/crow_get_hit_05.ogg", "sfx/crow_get_hit_06.ogg"], "minVolume": [45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 308}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Crow_Die", "fileNames": "sfx/crow_dies_01.ogg", "minVolume": 45, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 314}, {"name": "Crow_Kill", "fileNames": ["sfx/crow_kills_01.ogg", "sfx/crow_kills_02.ogg", "sfx/crow_kills_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 315}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Crow_Lead", "fileNames": ["sfx/crow_lead_01.ogg", "sfx/crow_lead_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 318}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Crow_Start", "fileNames": ["sfx/crow_start_01.ogg", "sfx/crow_start_02.ogg", "sfx/crow_start_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 320}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Crow_Ulti", "fileNames": "sfx/crow_ulti_01.ogg", "minVolume": 45, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": 10000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 323}, {"name": "RoboCrow_Takedamage", "fileNames": ["sfx/mech_crow_get_hit_01.ogg", "sfx/mech_crow_get_hit_02.ogg", "sfx/mech_crow_get_hit_03.ogg", "sfx/mech_crow_get_hit_04.ogg", "sfx/mech_crow_get_hit_05.ogg", "sfx/mech_crow_get_hit_06.ogg"], "minVolume": [45, 45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [100, 100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 324}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "RoboCrow_Die", "fileNames": "sfx/mech_crow_dies_01.ogg", "minVolume": 45, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 330}, {"name": "RoboCrow_Kill", "fileNames": ["sfx/mech_crow_kills_01.ogg", "sfx/mech_crow_kills_02.ogg", "sfx/mech_crow_kills_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [100, 100, 100], "maxPitch": [100, 100, 100], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 331}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "RoboCrow_Lead", "fileNames": ["sfx/mech_crow_lead_01.ogg", "sfx/mech_crow_lead_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [100, 100], "maxPitch": [100, 100], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 334}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "RoboCrow_Start", "fileNames": ["sfx/mech_crow_start_01.ogg", "sfx/mech_crow_start_02.ogg", "sfx/mech_crow_start_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [100, 100, 100], "maxPitch": [100, 100, 100], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 336}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "RoboCrow_Ulti_vo", "fileNames": "sfx/mech_crow_ulti_vo_01.ogg", "minVolume": 45, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": 10000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 339}, {"name": "Penny_takedamage", "fileNames": ["sfx/penny_hurt_vo_01.ogg", "sfx/penny_hurt_vo_02.ogg", "sfx/penny_hurt_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 340}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Penny_die", "fileNames": ["sfx/penny_die_vo_01.ogg", "sfx/penny_die_vo_02.ogg", "sfx/penny_die_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 343}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Penny_kill", "fileNames": ["sfx/penny_kill_vo_01.ogg", "sfx/penny_kill_vo_02.ogg", "sfx/penny_kill_vo_03.ogg", "sfx/penny_kill_vo_04.ogg", "sfx/penny_kill_vo_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 346}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Penny_start", "fileNames": ["sfx/penny_start_vo_01.ogg", "sfx/penny_start_vo_02.ogg", "sfx/penny_start_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 351}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Penny_ulti", "fileNames": ["sfx/penny_ulti_vo_01.ogg", "sfx/penny_ulti_vo_02.ogg", "sfx/penny_ulti_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 354}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Penny_lead", "fileNames": ["sfx/penny_lead_vo_01.ogg", "sfx/penny_lead_vo_02.ogg", "sfx/penny_lead_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 357}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_start", "fileNames": ["sfx/poco_start_01.ogg", "sfx/poco_start_02.ogg", "sfx/poco_start_03.ogg", "sfx/poco_start_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 360}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_hurt", "fileNames": ["sfx/poco_hurt_01.ogg", "sfx/poco_hurt_02.ogg", "sfx/poco_hurt_03.ogg", "sfx/poco_hurt_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 364}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_kill", "fileNames": ["sfx/poco_kill_01.ogg", "sfx/poco_kill_02.ogg", "sfx/poco_kill_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 368}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_die", "fileNames": ["sfx/poco_die_01.ogg", "sfx/poco_die_02.ogg", "sfx/poco_die_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 371}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_ulti_vo", "fileNames": ["sfx/poco_ulti_01.ogg", "sfx/poco_ulti_02.ogg", "sfx/poco_ulti_03.ogg", "sfx/poco_ulti_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 374}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_lead", "fileNames": ["sfx/poco_lead_01.ogg", "sfx/poco_lead_02.ogg", "sfx/poco_lead_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 378}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rosa_hurt", "fileNames": ["sfx/rosa_hit_01.ogg", "sfx/rosa_hit_02.ogg", "sfx/rosa_hit_03.ogg", "sfx/rosa_hit_04.ogg", "sfx/rosa_hit_05.ogg", "sfx/rosa_hit_06.ogg", "sfx/rosa_hit_07.ogg"], "minVolume": [50, 50, 50, 50, 50, 50, 50], "maxVolume": [60, 60, 60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 381}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rosa_die", "fileNames": ["sfx/rosa_death_01.ogg", "sfx/rosa_death_02.ogg", "sfx/rosa_death_03.ogg", "sfx/rosa_death_04.ogg"], "minVolume": [50, 50, 50, 50], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 388}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rosa_kill", "fileNames": ["sfx/rosa_kill_01.ogg", "sfx/rosa_kill_02.ogg", "sfx/rosa_kill_03.ogg", "sfx/rosa_kill_04.ogg", "sfx/rosa_kill_05.ogg"], "minVolume": [50, 50, 50, 50, 50], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 392}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rosa_lead", "fileNames": ["sfx/rosa_lead_01.ogg", "sfx/rosa_lead_02.ogg", "sfx/rosa_lead_03.ogg"], "minVolume": [50, 50, 50], "maxVolume": [60, 60, 60], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 397}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rosa_start", "fileNames": ["sfx/rosa_start_01.ogg", "sfx/rosa_start_02.ogg", "sfx/rosa_start_03.ogg", "sfx/rosa_start_04.ogg"], "minVolume": [50, 50, 50, 50], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 400}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rosa_ulti_vo", "fileNames": ["sfx/rosa_ulti_vo_01.ogg", "sfx/rosa_ulti_vo_02.ogg", "sfx/rosa_ulti_vo_03.ogg", "sfx/rosa_ulti_vo_04.ogg"], "minVolume": [50, 50, 50, 50], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 404}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Sandy_start_vo", "fileNames": ["sfx/sandy_start_vo_01.ogg", "sfx/sandy_start_vo_02.ogg", "sfx/sandy_start_vo_03.ogg", "sfx/sandy_start_vo_04.ogg", "sfx/sandy_start_vo_05.ogg", "sfx/sandy_start_vo_06.ogg"], "minVolume": [70, 70, 70, 50, 70, 70], "maxVolume": [70, 70, 70, 60, 70, 70], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 408}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Sandy_kill_vo", "fileNames": ["sfx/sandy_kill_vo_01.ogg", "sfx/sandy_kill_vo_01.ogg", "sfx/sandy_kill_vo_01.ogg", "sfx/sandy_kill_vo_01.ogg", "sfx/sandy_kill_vo_01.ogg"], "minVolume": [70, 70, 70, 70, 70], "maxVolume": [70, 70, 70, 70, 70], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 414}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Sandy_hurt_vo", "fileNames": ["sfx/sandy_hurt_vo_01.ogg", "sfx/sandy_hurt_vo_02.ogg", "sfx/sandy_hurt_vo_03.ogg", "sfx/sandy_hurt_vo_04.ogg", "sfx/sandy_hurt_vo_05.ogg"], "minVolume": [70, 70, 70, 70, 70], "maxVolume": [70, 70, 70, 70, 70], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 419}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Sandy_die_vo", "fileNames": ["sfx/sandy_die_vo_01.ogg", "sfx/sandy_die_vo_02.ogg", "sfx/sandy_die_vo_03.ogg", "sfx/sandy_die_vo_04.ogg"], "minVolume": [70, 70, 70, 70], "maxVolume": [70, 70, 70, 70], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 424}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Sandy_ulti_vo", "fileNames": ["sfx/sandy_ulti_vo_01.ogg", "sfx/sandy_ulti_vo_02.ogg"], "minVolume": [75, 75], "maxVolume": [75, 75], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 428}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Sandy_lead_vo", "fileNames": ["sfx/sandy_lead_vo_01.ogg", "sfx/sandy_lead_vo_02.ogg", "sfx/sandy_lead_vo_03.ogg", "sfx/sandy_lead_vo_04.ogg", "sfx/sandy_lead_vo_05.ogg"], "minVolume": [70, 70, 70, 70, 70], "maxVolume": [70, 70, 70, 70, 70], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 430}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Roll", "fileNames": "sfx/safe_drop_01.ogg", "minVolume": 85, "maxVolume": 85, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 435}, {"name": "Reveal", "fileNames": "sfx/safe_drop_01.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 436}, {"name": "Upgrade", "fileNames": "sfx/laser_upgrade_char_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": 1000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 437}, {"name": "Male_1_death", "fileNames": ["sfx/death_plop_01.ogg", "sfx/death_plop_01.ogg"], "minVolume": [60, 60], "maxVolume": [70, 70], "minPitch": [96, 96], "maxPitch": [104, 104], "priority": [1, 1], "maximumByType": [3, 3], "maxRepeatMs": [300, 300], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 438}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Male_2_death", "fileNames": ["sfx/death_plop_01.ogg", "sfx/death_plop_01.ogg"], "minVolume": [60, 60], "maxVolume": [70, 70], "minPitch": [96, 96], "maxPitch": [104, 104], "priority": [1, 1], "maximumByType": [3, 3], "maxRepeatMs": [300, 300], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 440}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Female_1_death", "fileNames": ["sfx/death_plop_01.ogg", "sfx/death_plop_01.ogg"], "minVolume": [60, 60], "maxVolume": [70, 70], "minPitch": [96, 96], "maxPitch": [104, 104], "priority": [1, 1], "maximumByType": [3, 3], "maxRepeatMs": [300, 300], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 442}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Rhino_death", "fileNames": ["sfx/death_plop_01.ogg", "sfx/death_plop_01.ogg"], "minVolume": [60, 60], "maxVolume": [70, 70], "minPitch": [96, 96], "maxPitch": [104, 104], "priority": [1, 1], "maximumByType": [3, 3], "maxRepeatMs": [300, 300], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 444}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Robo_death", "fileNames": ["sfx/robo_death_01.ogg", "sfx/robo_death_02.ogg"], "minVolume": [70, 70], "maxVolume": [70, 70], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [4, 4], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 446}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_start", "fileNames": ["sfx/bo_start_vo_01.ogg", "sfx/bo_start_vo_02.ogg", "sfx/bo_start_vo_03.ogg", "sfx/bo_start_vo_04.ogg", "sfx/bo_start_vo_05.ogg"], "minVolume": [55, 55, 55, 55, 55], "maxVolume": [65, 65, 65, 65, 65], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 448}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_kill", "fileNames": ["sfx/bo_kill_vo_01.ogg", "sfx/bo_kill_vo_02.ogg", "sfx/bo_kill_vo_03.ogg", "sfx/bo_kill_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 453}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_hurt", "fileNames": ["sfx/bo_hurt_01.ogg", "sfx/bo_hurt_02.ogg", "sfx/bo_hurt_03.ogg", "sfx/bo_hurt_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 457}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_lead", "fileNames": ["sfx/bo_lead_vo_01.ogg", "sfx/bo_lead_vo_02.ogg", "sfx/bo_lead_vo_03.ogg", "sfx/bo_lead_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 461}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_die", "fileNames": ["sfx/bo_die_01.ogg", "sfx/bo_die_02.ogg", "sfx/bo_die_03.ogg", "sfx/bo_die_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 465}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_ulti_vo", "fileNames": ["sfx/bo_ulti_vo_01.ogg", "sfx/bo_ulti_vo_02.ogg", "sfx/bo_ulti_vo_03.ogg", "sfx/bo_ulti_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 469}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bo_atk_vo", "fileNames": ["sfx/bo_fire_vo_01.ogg", "sfx/bo_fire_vo_02.ogg", "sfx/bo_fire_vo_03.ogg", "sfx/bo_fire_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 473}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_start", "fileNames": ["sfx/robo_bo_start_vo_01.ogg", "sfx/robo_bo_start_vo_02.ogg", "sfx/robo_bo_start_vo_03.ogg", "sfx/robo_bo_start_vo_04.ogg", "sfx/robo_bo_start_vo_05.ogg"], "minVolume": [55, 55, 55, 55, 55], "maxVolume": [65, 65, 65, 65, 65], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 477}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_kill", "fileNames": ["sfx/robo_bo_kill_01.ogg", "sfx/robo_bo_kill_02.ogg", "sfx/robo_bo_kill_03.ogg", "sfx/robo_bo_kill_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [100, 100, 100, 100], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 482}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_hurt", "fileNames": ["sfx/robo_bo_hurt_01.ogg", "sfx/robo_bo_hurt_02.ogg", "sfx/robo_bo_hurt_03.ogg", "sfx/robo_bo_hurt_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [100, 100, 100, 100], "maxPitch": [102, 102, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 486}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_lead", "fileNames": ["sfx/robo_bo_lead_vo_01.ogg", "sfx/robo_bo_lead_vo_02.ogg", "sfx/robo_bo_lead_vo_03.ogg", "sfx/robo_bo_lead_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 490}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_die", "fileNames": ["sfx/robo_bo_die_01.ogg", "sfx/robo_bo_die_02.ogg", "sfx/robo_bo_die_03.ogg", "sfx/robo_bo_die_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 494}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_ulti_vo", "fileNames": ["sfx/robo_bo_ulti_vo_01.ogg", "sfx/robo_bo_ulti_vo_02.ogg", "sfx/robo_bo_ulti_vo_03.ogg", "sfx/robo_bo_ulti_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 498}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Bo_atk_vo", "fileNames": ["sfx/robo_bo_fire_vo_01.ogg", "sfx/robo_bo_fire_vo_02.ogg", "sfx/robo_bo_fire_vo_03.ogg", "sfx/robo_bo_fire_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [10000, 10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 502}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_start_vo", "fileNames": ["sfx/carl_start_vo_01.ogg", "sfx/carl_start_vo_02.ogg", "sfx/carl_start_vo_03.ogg", "sfx/carl_start_vo_04.ogg", "sfx/carl_start_vo_05.ogg", "sfx/carl_start_vo_06.ogg", "sfx/carl_start_vo_07.ogg"], "minVolume": [55, 55, 55, 55, 55, 55, 55], "maxVolume": [55, 55, 55, 55, 55, 55, 55], "minPitch": [98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 506}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_kill_vo", "fileNames": ["sfx/carl_kill_vo_01.ogg", "sfx/carl_kill_vo_02.ogg", "sfx/carl_kill_vo_03.ogg", "sfx/carl_kill_vo_04.ogg", "sfx/carl_kill_vo_05.ogg"], "minVolume": [55, 55, 40, 40, 40], "maxVolume": [55, 55, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 513}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_hurt_vo", "fileNames": ["sfx/carl_hurt_vo_01.ogg", "sfx/carl_hurt_vo_02.ogg", "sfx/carl_hurt_vo_03.ogg", "sfx/carl_hurt_vo_04.ogg", "sfx/carl_hurt_vo_05.ogg"], "minVolume": [50, 50, 50, 50, 50], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [12000, 12000, 12000, 12000, 12000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 518}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_die_vo", "fileNames": ["sfx/carl_death_vo_01.ogg", "sfx/carl_death_vo_02.ogg", "sfx/carl_death_vo_03.ogg", "sfx/carl_death_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 523}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_ulti_vo", "fileNames": ["sfx/carl_ulti_vo_01.ogg", "sfx/carl_ulti_vo_02.ogg"], "minVolume": [60, 60], "maxVolume": [60, 60], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 527}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_lead_vo", "fileNames": ["sfx/carl_lead_vo_01.ogg", "sfx/carl_lead_vo_02.ogg", "sfx/carl_lead_vo_03.ogg", "sfx/carl_lead_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [65, 65, 65, 65], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 529}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Carl_atk_vo", "fileNames": ["sfx/carl_atk_vo_01.ogg", "sfx/carl_atk_vo_02.ogg", "sfx/carl_atk_vo_03.ogg"], "minVolume": [50, 50, 50], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 533}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tara_start_vo", "fileNames": ["sfx/tara_start_vo_01.ogg", "sfx/tara_start_vo_02.ogg", "sfx/tara_start_vo_03.ogg"], "minVolume": [62, 62, 62], "maxVolume": [62, 62, 62], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 536}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tara_kill_vo", "fileNames": ["sfx/tara_kill_vo_01.ogg", "sfx/tara_kill_vo_02.ogg", "sfx/tara_kill_vo_03.ogg", "sfx/tara_kill_vo_04.ogg"], "minVolume": [62, 62, 62, 62], "maxVolume": [62, 62, 62, 62], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 539}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tara_die_vo", "fileNames": ["sfx/tara_die_vo_01.ogg", "sfx/tara_die_vo_02.ogg", "sfx/tara_die_vo_03.ogg", "sfx/tara_die_vo_04.ogg"], "minVolume": [62, 62, 62, 62], "maxVolume": [62, 62, 62, 62], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 543}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tara_hurt_vo", "fileNames": ["sfx/tara_hurt_vo_01.ogg", "sfx/tara_hurt_vo_02.ogg", "sfx/tara_hurt_vo_03.ogg"], "minVolume": [62, 62, 62], "maxVolume": [62, 62, 62], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [12000, 12000, 12000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 547}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tara_lead_vo", "fileNames": ["sfx/tara_lead_vo_01.ogg", "sfx/tara_lead_vo_02.ogg", "sfx/tara_lead_vo_03.ogg"], "minVolume": [62, 62, 62], "maxVolume": [62, 62, 62], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 550}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bibi_start_vo", "fileNames": ["sfx/bibi_start_vo_01.ogg", "sfx/bibi_start_vo_02.ogg", "sfx/bibi_start_vo_03.ogg", "sfx/bibi_start_vo_04.ogg", "sfx/bibi_start_vo_05.ogg", "sfx/bibi_start_vo_06.ogg"], "minVolume": [55, 55, 55, 55, 55, 55], "maxVolume": [60, 60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 553}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bibi_lead_vo", "fileNames": ["sfx/bibi_lead_vo_01.ogg", "sfx/bibi_lead_vo_02.ogg", "sfx/bibi_lead_vo_03.ogg", "sfx/bibi_lead_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 559}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bibi_kill_vo", "fileNames": ["sfx/bibi_kill_vo_01.ogg", "sfx/bibi_kill_vo_02.ogg", "sfx/bibi_kill_vo_03.ogg"], "minVolume": [55, 55, 55], "maxVolume": [60, 60, 60], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 563}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bibi_hurt_vo", "fileNames": ["sfx/bibi_hurt_vo_01.ogg", "sfx/bibi_hurt_vo_02.ogg", "sfx/bibi_hurt_vo_03.ogg", "sfx/bibi_hurt_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 566}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bibi_die_vo", "fileNames": ["sfx/bibi_die_vo_01.ogg", "sfx/bibi_die_vo_02.ogg", "sfx/bibi_die_vo_03.ogg", "sfx/bibi_die_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 570}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bibi_ulti_vo", "fileNames": ["sfx/bibi_ulti_vo_01.ogg", "sfx/bibi_ulti_vo_02.ogg", "sfx/bibi_ulti_vo_03.ogg", "sfx/bibi_ulti_vo_04.ogg"], "minVolume": [55, 55, 55, 55], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 574}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_atk", "fileNames": "sfx/emz_atk_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 578}, {"name": "Emz_dryfire", "fileNames": "sfx/emz_dryfire_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 579}, {"name": "Emz_reload", "fileNames": "sfx/emz_reload_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 580}, {"name": "Emz_ulti", "fileNames": "sfx/emz_ulti_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 581}, {"name": "Emz_start_vo", "fileNames": ["sfx/emz_start_vo_01.ogg", "sfx/emz_start_vo_02.ogg", "sfx/emz_start_vo_03.ogg", "sfx/emz_start_vo_04.ogg", "sfx/emz_start_vo_05.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 582}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_lead_vo", "fileNames": ["sfx/emz_lead_vo_02.ogg", "sfx/emz_lead_vo_03.ogg", "sfx/emz_lead_vo_04.ogg"], "minVolume": [60, 60, 60], "maxVolume": [60, 60, 60], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 587}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_kill_vo", "fileNames": ["sfx/emz_kill_vo_02.ogg", "sfx/emz_kill_vo_03.ogg", "sfx/emz_kill_vo_04.ogg", "sfx/emz_kill_vo_05.ogg", "sfx/emz_kill_vo_06.ogg", "sfx/emz_kill_vo_07.ogg"], "minVolume": [60, 60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 590}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_hurt_vo", "fileNames": ["sfx/emz_hurt_vo_01.ogg", "sfx/emz_hurt_vo_01.ogg", "sfx/emz_hurt_vo_02.ogg", "sfx/emz_hurt_vo_03.ogg", "sfx/emz_hurt_vo_04.ogg", "sfx/emz_hurt_vo_05.ogg", "sfx/emz_hurt_vo_06.ogg", "sfx/emz_hurt_vo_07.ogg"], "minVolume": [60, 60, 60, 60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1, 1, 1], "maxRepeatMs": [12000, 12000, 12000, 12000, 12000, 12000, 12000, 12000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 596}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_die_vo", "fileNames": ["sfx/emz_die_vo_04.ogg", "sfx/emz_die_vo_02.ogg", "sfx/emz_die_vo_03.ogg"], "minVolume": [60, 60, 60], "maxVolume": [60, 60, 60], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [12000, 12000, 12000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 604}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_atk_vo", "fileNames": ["sfx/emz_atk_vo_01.ogg", "sfx/emz_atk_vo_02.ogg", "sfx/emz_atk_vo_03.ogg", "sfx/emz_atk_vo_04.ogg", "sfx/emz_atk_vo_05.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [25000, 25000, 25000, 25000, 25000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 607}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emz_ulti_vo", "fileNames": ["sfx/emz_ulti_vo_01.ogg", "sfx/emz_ulti_vo_02.ogg"], "minVolume": [60, 60], "maxVolume": [60, 60], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 612}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Start_VO", "fileNames": ["sfx/max_start_vo_05.ogg", "sfx/max_start_vo_01.ogg", "sfx/max_start_vo_02.ogg", "sfx/max_start_vo_03.ogg", "sfx/max_start_vo_04.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 614}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Kill_VO", "fileNames": ["sfx/max_kill_vo_01.ogg", "sfx/max_kill_vo_02.ogg", "sfx/max_kill_vo_03.ogg", "sfx/max_kill_vo_04.ogg", "sfx/max_kill_vo_05.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 619}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Hurt_VO", "fileNames": ["sfx/max_hurt_vo_01.ogg", "sfx/max_hurt_vo_02.ogg", "sfx/max_hurt_vo_03.ogg", "sfx/max_hurt_vo_04.ogg"], "minVolume": [60, 60, 60, 60], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 624}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Die_VO", "fileNames": ["sfx/max_die_vo_01.ogg", "sfx/max_die_vo_02.ogg", "sfx/max_die_vo_03.ogg", "sfx/max_die_vo_04.ogg", "sfx/max_die_vo_05.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 628}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Ulti_VO", "fileNames": ["sfx/max_ulti_vo_01.ogg", "sfx/max_ulti_vo_02.ogg", "sfx/max_ulti_vo_03.ogg", "sfx/max_ulti_vo_04.ogg"], "minVolume": [60, 60, 60, 60], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 633}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Lead_VO", "fileNames": ["sfx/max_lead_vo_01.ogg", "sfx/max_lead_vo_02.ogg", "sfx/max_lead_vo_03.ogg", "sfx/max_lead_vo_04.ogg"], "minVolume": [60, 60, 60, 60], "maxVolume": [60, 60, 60, 60], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 637}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Max_Atk", "fileNames": "sfx/max_atk_01.ogg", "minVolume": 30, "maxVolume": 50, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 12, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 641}, {"name": "Max_Atk_Hit", "fileNames": "sfx/max_atk_impact_01.ogg", "minVolume": 10, "maxVolume": 30, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 12, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 642}, {"name": "Max_Ulti", "fileNames": "sfx/max_ulti_01.ogg", "minVolume": 90, "maxVolume": 90, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 643}, {"name": "Max_Dryfire", "fileNames": "sfx/max_dryfire_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 644}, {"name": "Max_Reload", "fileNames": "sfx/max_reload_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 645}, {"name": "laser_panic_jingle", "fileNames": "sfx/laser_panic_01.ogg", "minVolume": 85, "maxVolume": 85, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 646}, {"name": "laser_panic_bad_jingle", "fileNames": "sfx/laser_panic_bad_01.ogg", "minVolume": 85, "maxVolume": 85, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 647}, {"name": "ui_coin_gain", "fileNames": "sfx/coin_count_02.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 648}, {"name": "ui_firstcoin", "fileNames": "sfx/coin_hit_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 649}, {"name": "ui_collect_coins", "fileNames": "sfx/collect_coins_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 650}, {"name": "ui_tapbottomitem", "fileNames": "sfx/tap_normal_02.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 651}, {"name": "ui_tapbottomguns", "fileNames": "sfx/tap_guns_02.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 652}, {"name": "ui_upgradium_gain", "fileNames": "sfx/shield_03.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 20, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 653}, {"name": "ui_dust_gain", "fileNames": "sfx/get_pickup_02.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 20, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 654}, {"name": "ui_battle_end_xp_gain", "fileNames": "sfx/get_xp_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 655}, {"name": "ui_battle_end_trophy_gain", "fileNames": "sfx/get_trophies_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 656}, {"name": "ui_battle_end_trophy_loss", "fileNames": "sfx/lose_trophies_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 657}, {"name": "ui_battle_end_rank_up", "fileNames": "sfx/rank_up_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 658}, {"name": "ui_battle_end_level_up", "fileNames": "sfx/level_up_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 659}, {"name": "ui_battle_end_element_slide", "fileNames": "sfx/blink_01v2.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 20, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 660}, {"name": "ui_battle_end_victory", "fileNames": "sfx/post_match_win_cheer_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 661}, {"name": "ui_battle_end_defeat", "fileNames": "sfx/post_match_lose_cheer_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 662}, {"name": "ui_battle_end_draw", "fileNames": "sfx/post_match_draw_cheer_02.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 663}, {"name": "ui_battle_end_transition", "fileNames": "sfx/planet_whoosh_03.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 20, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 664}, {"name": "ui_battle_end_mvp_you", "fileNames": "sfx/mvp_jingle_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 665}, {"name": "ui_battle_end_mvp_enemy", "fileNames": "sfx/mvp_jingle_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 666}, {"name": "ui_battle_end_mvp_other_friendly", "fileNames": "sfx/dummy.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 667}, {"name": "ui_battle_end_score_decrease_appear", "fileNames": "sfx/dummy.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 668}, {"name": "ui_battle_end_score_increase_appear", "fileNames": "sfx/dummy.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 669}, {"name": "ui_battle_end_coin_element_appear", "fileNames": "sfx/deadyey_shot_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 20, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 670}, {"name": "can_not_cast_ulti_tutorial", "fileNames": "sfx/rhinostep_01.ogg", "minVolume": 35, "maxVolume": 50, "minPitch": 92, "maxPitch": 108, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 671}, {"name": "Bullet_rico_metal", "fileNames": "sfx/bullet_rico_metal_01.ogg", "minVolume": 20, "maxVolume": 25, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 672}, {"name": "Bullet_rico_rock", "fileNames": "sfx/bullet_rico_rock_01.ogg", "minVolume": 20, "maxVolume": 25, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 673}, {"name": "Bullet_rico_wood", "fileNames": "sfx/bullet_rico_wood_01.ogg", "minVolume": 20, "maxVolume": 25, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 674}, {"name": "Bullet_rico_grass", "fileNames": "sfx/bullet_rico_grass_02.ogg", "minVolume": 10, "maxVolume": 15, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 675}, {"name": "Chest_loop", "fileNames": "sfx/dummy.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 676}, {"name": "Ulti_button_press", "fileNames": "sfx/ulti_button_press_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 677}, {"name": "Ulti_button_cancel", "fileNames": "sfx/ulti_button_cancel_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 678}, {"name": "Slugfest_go", "fileNames": "sfx/brawl_go_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 679}, {"name": "Tick_tock", "fileNames": "sfx/slugfest_clock_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 680}, {"name": "Bad_kill", "fileNames": "sfx/slug_bad_kill_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 681}, {"name": "Good_kill", "fileNames": "sfx/slug_good_kill_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 682}, {"name": "Select_char", "fileNames": "sfx/guntown_select_char_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 683}, {"name": "Wind_gust", "fileNames": "sfx/wind_gust_01.ogg", "minVolume": 5, "maxVolume": 25, "minPitch": 92, "maxPitch": 108, "priority": 1, "maximumByType": 3, "maxRepeatMs": 2000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 684}, {"name": "Jess_shoot", "fileNames": "sfx/jess_shoot_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 685}, {"name": "Jess_hit", "fileNames": "sfx/jess_hit_01.ogg", "minVolume": 35, "maxVolume": 45, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 686}, {"name": "Jess_throw", "fileNames": "sfx/jess_throw_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 687}, {"name": "Jess_dryfire", "fileNames": "sfx/jess_dry_fire_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 688}, {"name": "Jess_reload", "fileNames": "sfx/jess_reload_02.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 689}, {"name": "Brock_dryfire", "fileNames": "sfx/brock_dryfire_01.ogg", "minVolume": 55, "maxVolume": 55, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 690}, {"name": "Brock_reload", "fileNames": "sfx/brock_reload_01.ogg", "minVolume": 55, "maxVolume": 55, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 691}, {"name": "Lucha_punch", "fileNames": "sfx/lucha_punch_01.ogg", "minVolume": 25, "maxVolume": 45, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 692}, {"name": "Lucha_ulti", "fileNames": "sfx/lucha_ulti_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 693}, {"name": "Punch_impact", "fileNames": ["sfx/punch_impact_01.ogg", "sfx/punch_impact_02.ogg"], "minVolume": [30, 30], "maxVolume": [60, 60], "minPitch": [92, 92], "maxPitch": [108, 108], "priority": [1, 1], "maximumByType": [10, 10], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 694}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Trickshot_fire", "fileNames": "sfx/bounce_fire_01.ogg", "minVolume": 35, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 10, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 696}, {"name": "Trickshot_bullet", "fileNames": "sfx/rick_bullet_01.ogg", "minVolume": 10, "maxVolume": 25, "minPitch": 92, "maxPitch": 108, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 697}, {"name": "Trickshot_fire_ulti", "fileNames": "sfx/bounce_fire_01.ogg", "minVolume": 25, "maxVolume": 40, "minPitch": 135, "maxPitch": 150, "priority": 1, "maximumByType": 20, "maxRepeatMs": 30, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 698}, {"name": "Bow_fire", "fileNames": "sfx/bow_fire_01.ogg", "minVolume": 20, "maxVolume": 40, "minPitch": 90, "maxPitch": 100, "priority": 1, "maximumByType": 12, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 699}, {"name": "Mech_bo_fire", "fileNames": "sfx/mech_bo_fire_01.ogg", "minVolume": 20, "maxVolume": 40, "minPitch": 90, "maxPitch": 100, "priority": 1, "maximumByType": 12, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 700}, {"name": "Mech_bo_ulti", "fileNames": "sfx/mech_bo_ulti_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 701}, {"name": "Mech_bo_reload", "fileNames": "sfx/mech_bo_reload_01.ogg", "minVolume": 30, "maxVolume": 35, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 702}, {"name": "Bow_reload", "fileNames": "sfx/bow_reload_01.ogg", "minVolume": 30, "maxVolume": 35, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 703}, {"name": "Bow_dryfire", "fileNames": "sfx/bow_dryfire_01.ogg", "minVolume": 35, "maxVolume": 40, "minPitch": 97, "maxPitch": 103, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 704}, {"name": "Earth_atk", "fileNames": "sfx/earth_atk_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 93, "maxPitch": 107, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 705}, {"name": "Crow_throw", "fileNames": "sfx/crow_throw_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 94, "maxPitch": 106, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 706}, {"name": "crow_reload", "fileNames": "sfx/crow_reload_01.ogg", "minVolume": 25, "maxVolume": 35, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 707}, {"name": "Mech_crow_ulti", "fileNames": "sfx/mech_crow_ulti_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 708}, {"name": "Mech_crow_atk", "fileNames": "sfx/mech_crow_atk_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 12, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 709}, {"name": "crow_dryfire", "fileNames": "sfx/crow_dryfire_01.ogg", "minVolume": 30, "maxVolume": 35, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 710}, {"name": "spike_atk", "fileNames": "sfx/spike_atk_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 97, "maxPitch": 103, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 711}, {"name": "Spike_reload", "fileNames": "sfx/spike_reload_03.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 712}, {"name": "Cactus_explo", "fileNames": "sfx/spike_ulti_explo_01.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 713}, {"name": "Mortis_atk", "fileNames": "sfx/mortis_atk_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 714}, {"name": "Mortis_ulti", "fileNames": "sfx/mortis_ulti_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 715}, {"name": "Mortis_reload", "fileNames": "sfx/mortis_reload_02.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 716}, {"name": "Barkeep_atk", "fileNames": "sfx/barkeep_throw_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 717}, {"name": "Barkeep_bottle_hit", "fileNames": "sfx/barkeep_bottle_hit_01.ogg", "minVolume": 35, "maxVolume": 55, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 718}, {"name": "Barkeep_reload", "fileNames": "sfx/barkeep_reload_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 719}, {"name": "Barkeep_ulti_throw", "fileNames": "sfx/barkeep_throw_ulti_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 720}, {"name": "Barkeep_ulti_hit", "fileNames": "sfx/barkeep_ulti_hit_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 98, "maxPitch": 105, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 721}, {"name": "Barkeep_dryfire", "fileNames": "sfx/barkeep_dryfire_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 722}, {"name": "Poco_reload", "fileNames": "sfx/poco_new_reload_02.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 723}, {"name": "Poco_atk", "fileNames": ["sfx/poco_new_atk_01.ogg", "sfx/poco_new_atk_01.ogg", "sfx/poco_new_atk_01.ogg"], "minVolume": [50, 50, 50], "maxVolume": [50, 40, 50], "minPitch": [84, 89, 100], "maxPitch": [84, 89, 100], "priority": [1, 1, 1], "maximumByType": [3, 3, 3], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 724}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Poco_ulti", "fileNames": "sfx/poco_ulti_sfx.ogg", "minVolume": 55, "maxVolume": 55, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 727}, {"name": "Tnt_guy_start_vo", "fileNames": ["sfx/tnt_guy_start_vo_01.ogg", "sfx/tnt_guy_start_vo_02.ogg", "sfx/tnt_guy_start_vo_03.ogg", "sfx/tnt_guy_start_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 728}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tnt_guy_lead_vo", "fileNames": ["sfx/tnt_guy_lead_01.ogg", "sfx/tnt_guy_lead_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 732}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tnt_guy_kill_vo", "fileNames": ["sfx/tnt_guy_kill_01.ogg", "sfx/tnt_guy_kill_02.ogg", "sfx/tnt_guy_kill_03.ogg", "sfx/tnt_guy_kill_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 734}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tnt_guy_hurt_vo", "fileNames": ["sfx/tnt_guy_hurt_01.ogg", "sfx/tnt_guy_hurt_02.ogg", "sfx/tnt_guy_hurt_03.ogg", "sfx/tnt_guy_hurt_04.ogg", "sfx/tnt_guy_hurt_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 738}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tnt_guy_ulti_vo", "fileNames": ["sfx/tnt_guy_ulti_01.ogg", "sfx/tnt_guy_ulti_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 743}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tnt_guy_die_vo", "fileNames": ["sfx/tnt_guy_die_01.ogg", "sfx/tnt_guy_die_02.ogg", "sfx/tnt_guy_die_03.ogg", "sfx/tnt_guy_die_04.ogg", "sfx/tnt_guy_die_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 745}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Mike_start_vo", "fileNames": ["sfx/mech_mike_start_vo_01.ogg", "sfx/mech_mike_start_vo_02.ogg", "sfx/mech_mike_start_vo_03.ogg", "sfx/mech_mike_start_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 750}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Mike_lead_vo", "fileNames": ["sfx/mech_mike_lead_vo_01.ogg", "sfx/mech_mike_lead_vo_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": [20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 754}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Mike_kill_vo", "fileNames": ["sfx/mech_mike_kill_vo_01.ogg", "sfx/mech_mike_kill_vo_02.ogg", "sfx/mech_mike_kill_vo_03.ogg", "sfx/mech_mike_kill_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [50, 50, 50, 50], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 756}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Mike_hurt_vo", "fileNames": ["sfx/mech_mike_hurt_vo_01.ogg", "sfx/mech_mike_hurt_vo_02.ogg", "sfx/mech_mike_hurt_vo_03.ogg", "sfx/mech_mike_hurt_vo_04.ogg", "sfx/mech_mike_hurt_vo_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [3000, 3000, 3000, 3000, 3000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 760}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Mike_ulti_vo", "fileNames": ["sfx/mech_mike_ulti_vo_01.ogg", "sfx/mech_mike_ulti_vo_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 765}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mech_Mike_die_vo", "fileNames": ["sfx/mech_mike_die_vo_01.ogg", "sfx/mech_mike_die_vo_02.ogg", "sfx/mech_mike_die_vo_03.ogg", "sfx/mech_mike_die_vo_04.ogg", "sfx/mech_mike_die_vo_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 767}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_ulti_throw", "fileNames": "sfx/nita_ulti_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 772}, {"name": "Nita_ulti_bear", "fileNames": "sfx/bear_spawn_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 773}, {"name": "Nita_kill", "fileNames": ["sfx/nita_kill_vo_01.ogg", "sfx/nita_kill_vo_02.ogg", "sfx/nita_kill_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 774}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_lead", "fileNames": ["sfx/nita_lead_01.ogg", "sfx/nita_lead_02.ogg", "sfx/nita_lead_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 777}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_start", "fileNames": ["sfx/nita_start_vo_01.ogg", "sfx/nita_start_vo_02.ogg", "sfx/nita_start_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 780}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_ulti", "fileNames": ["sfx/nita_ulti_vo_01.ogg", "sfx/nita_ulti_vo_02.ogg", "sfx/nita_ulti_vo_03.ogg"], "minVolume": [45, 45, 45], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 783}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_hurt", "fileNames": ["sfx/nita_hurt_01.ogg", "sfx/nita_hurt_02.ogg", "sfx/nita_hurt_03.ogg", "sfx/nita_hurt_04.ogg", "sfx/nita_hurt_05.ogg"], "minVolume": [35, 35, 35, 35, 35], "maxVolume": [45, 45, 45, 45, 45], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 786}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_death", "fileNames": ["sfx/nita_die_01.ogg", "sfx/nita_die_02.ogg"], "minVolume": [45, 45], "maxVolume": [50, 50], "minPitch": [98, 98], "maxPitch": [102, 102], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 791}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Nita_atk_vo", "fileNames": ["sfx/nita_atk_01.ogg", "sfx/nita_atk_02.ogg", "sfx/nita_atk_03.ogg", "sfx/nita_atk_04.ogg", "sfx/nita_atk_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 793}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Pam_start", "fileNames": ["sfx/pam_start_vo_01.ogg", "sfx/pam_start_vo_02.ogg", "sfx/pam_start_vo_03.ogg", "sfx/pam_start_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 798}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Pam_hurt", "fileNames": ["sfx/pam_hurt_vo_01.ogg", "sfx/pam_hurt_vo_02.ogg", "sfx/pam_hurt_vo_03.ogg", "sfx/pam_hurt_vo_04.ogg", "sfx/pam_hurt_vo_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [55, 55, 55, 55, 55], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 802}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Pam_kill", "fileNames": ["sfx/pam_kill_vo_01.ogg", "sfx/pam_kill_vo_02.ogg", "sfx/pam_kill_vo_03.ogg", "sfx/pam_kill_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 807}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Pam_lead", "fileNames": ["sfx/pam_lead_vo_01.ogg", "sfx/pam_lead_vo_02.ogg", "sfx/pam_lead_vo_03.ogg", "sfx/pam_lead_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 811}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Pam_ulti", "fileNames": ["sfx/pam_ulti_vo_01.ogg", "sfx/pam_ulti_vo_02.ogg", "sfx/pam_ulti_vo_03.ogg", "sfx/pam_ulti_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 815}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Pam_die", "fileNames": ["sfx/pam_die_vo_01.ogg", "sfx/pam_die_vo_02.ogg", "sfx/pam_die_vo_03.ogg", "sfx/pam_die_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 819}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_start", "fileNames": ["sfx/mortis_start_01.ogg", "sfx/mortis_start_02.ogg", "sfx/mortis_start_04.ogg", "sfx/mortis_start_03.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 823}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_hurt", "fileNames": ["sfx/mortis_hurt_01.ogg", "sfx/mortis_hurt_02.ogg", "sfx/mortis_hurt_03.ogg", "sfx/mortis_hurt_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 827}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_kill", "fileNames": ["sfx/mortis_kill_01.ogg", "sfx/mortis_kill_02.ogg", "sfx/mortis_kill_03.ogg", "sfx/mortis_kill_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 831}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_lead", "fileNames": ["sfx/mortis_lead_01.ogg", "sfx/mortis_lead_02.ogg", "sfx/mortis_lead_03.ogg", "sfx/mortis_lead_04.ogg", "sfx/mortis_lead_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [55, 55, 55, 55, 55], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 835}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_ulti_vo", "fileNames": ["sfx/mortis_ulti_vo_01.ogg", "sfx/mortis_ulti_vo_02.ogg", "sfx/mortis_ulti_vo_04.ogg", "sfx/mortis_ulti_vo_05.ogg", "sfx/mortis_ulti_vo_03.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [55, 55, 55, 55, 55], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 840}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_die", "fileNames": ["sfx/mortis_die_01.ogg", "sfx/mortis_die_02.ogg", "sfx/mortis_die_03.ogg", "sfx/mortis_die_04.ogg", "sfx/mortis_die_05.ogg"], "minVolume": [45, 45, 45, 45, 45], "maxVolume": [55, 55, 55, 55, 55], "minPitch": [98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 845}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Mortis_atk_vo", "fileNames": ["sfx/mortis_atk_vo_01.ogg", "sfx/mortis_atk_vo_02.ogg", "sfx/mortis_atk_vo_03.ogg", "sfx/mortis_atk_vo_04.ogg"], "minVolume": [45, 45, 45, 45], "maxVolume": [55, 55, 55, 55], "minPitch": [98, 98, 98, 98], "maxPitch": [102, 102, 102, 102], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 850}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "8bit_atk", "fileNames": "sfx/8bit_atk_02.ogg", "minVolume": 20, "maxVolume": 30, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 10, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 854}, {"name": "8bit_ulti", "fileNames": "sfx/8bit_ulti_02.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 855}, {"name": "8bit_ulti_vo", "fileNames": "sfx/8bit_ulti_vo_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 856}, {"name": "8bit_start_vo", "fileNames": ["sfx/8bit_start_vo_01.ogg", "sfx/8bit_start_vo_02.ogg", "Sfx/8bit_start_vo_03.ogg"], "minVolume": [60, 60, 60], "maxVolume": [60, 60, 60], "minPitch": [100, 100, 100], "maxPitch": [100, 100, 100], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 857}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "8bit_hurt_vo", "fileNames": ["sfx/8bit_hurt_vo_01.ogg", "sfx/8bit_hurt_vo_02.ogg", "sfx/8bit_hurt_vo_03.ogg", "sfx/8bit_hurt_vo_04.ogg", "sfx/8bit_hurt_vo_05.ogg"], "minVolume": [50, 50, 50, 50, 50], "maxVolume": [50, 50, 50, 50, 50], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 860}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "8bit_kill_vo", "fileNames": ["sfx/8bit_kill_vo_01.ogg", "sfx/8bit_kill_vo_02.ogg", "sfx/8bit_kill_vo_03.ogg", "sfx/8bit_kill_vo_04.ogg"], "minVolume": [60, 60, 60, 60], "maxVolume": [60, 60, 60, 60], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 865}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "8bit_lead_vo", "fileNames": ["sfx/8bit_lead_vo_01.ogg", "sfx/8bit_lead_vo_02.ogg", "sfx/8bit_lead_vo_03.ogg"], "minVolume": [60, 60, 60], "maxVolume": [60, 60, 60], "minPitch": [100, 100, 100], "maxPitch": [100, 100, 100], "priority": [1, 1, 1], "maximumByType": [1, 1, 1], "maxRepeatMs": [20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 869}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "8bit_die_vo", "fileNames": ["sfx/8bit_die_vo_01.ogg", "sfx/8bit_die_vo_02.ogg", "sfx/8bit_die_vo_03.ogg", "sfx/8bit_die_vo_04.ogg", "sfx/8bit_die_vo_05.ogg", "sfx/8bit_die_vo_06.ogg"], "minVolume": [60, 60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 872}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_start_vo", "fileNames": ["sfx/leon_start_vo_01.ogg", "sfx/leon_start_vo_02.ogg", "sfx/leon_start_vo_03.ogg", "sfx/leon_start_vo_04.ogg", "sfx/leon_start_vo_05.ogg"], "minVolume": [50, 50, 50, 50, 50], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 878}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_hurt_vo", "fileNames": ["sfx/leon_hurt_vo_01.ogg", "sfx/leon_hurt_vo_02.ogg", "sfx/leon_hurt_vo_03.ogg", "sfx/leon_hurt_vo_04.ogg", "sfx/leon_hurt_vo_05.ogg"], "minVolume": [50, 50, 50, 50, 50], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 883}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_die_vo", "fileNames": ["sfx/leon_die_vo_01.ogg", "sfx/leon_die_vo_02.ogg", "sfx/leon_die_vo_03.ogg", "sfx/leon_die_vo_04.ogg"], "minVolume": [50, 50, 50, 50], "maxVolume": [60, 60, 60, 60], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": [5000, 5000, 5000, 5000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 888}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_lead_vo", "fileNames": ["sfx/leon_lead_vo_01.ogg", "sfx/leon_lead_vo_02.ogg", "sfx/leon_lead_vo_03.ogg", "sfx/leon_lead_vo_04.ogg", "sfx/leon_lead_vo_05.ogg"], "minVolume": [50, 50, 50, 50, 50], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1], "maxRepeatMs": [20000, 20000, 20000, 20000, 20000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 892}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_ulti_vo", "fileNames": ["sfx/leon_ulti_vo_01.ogg", "sfx/leon_ulti_vo_02.ogg", "sfx/leon_ulti_vo_04.ogg", "sfx/leon_ulti_vo_05.ogg"], "minVolume": [50, 60, 50, 50], "maxVolume": [60, 60, 60, 60], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 897}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_kill_vo", "fileNames": ["sfx/leon_kill_vo_01.ogg", "sfx/leon_kill_vo_02.ogg", "sfx/leon_kill_vo_03.ogg", "sfx/leon_kill_vo_04.ogg", "sfx/leon_kill_vo_05.ogg", "sfx/leon_kill_vo_06.ogg"], "minVolume": [50, 50, 50, 50, 50, 50], "maxVolume": [60, 60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 901}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Leon_wolf_ulti_vo", "fileNames": ["sfx/leon_wolf_ulti_vo_01.ogg", "sfx/leon_wolf_ulti_vo_01.ogg"], "minVolume": [50, 50], "maxVolume": [60, 60], "minPitch": [100, 100], "maxPitch": [100, 100], "priority": [1, 1], "maximumByType": [1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 907}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bomb_bleeps", "fileNames": "sfx/bomb_bleeps_01.ogg", "minVolume": 45, "maxVolume": 45, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 909}, {"name": "Bomb_bleeps_friend", "fileNames": "sfx/blue_mine_01.ogg", "minVolume": 45, "maxVolume": 45, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 910}, {"name": "Tutorial_circle", "fileNames": "sfx/tutorial_enter_circle_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 911}, {"name": "Reveal_common", "fileNames": "sfx/reveal_common_card_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 912}, {"name": "Reveal_rare", "fileNames": "sfx/reveal_rare_card_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 913}, {"name": "Reveal_epic", "fileNames": "sfx/reveal_epic_card_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 914}, {"name": "Reveal_legendary", "fileNames": "sfx/reveal_legendary_card_01.ogg", "minVolume": 90, "maxVolume": 90, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 915}, {"name": "Reveal_loop", "fileNames": "sfx/dummy.ogg", "minVolume": 1, "maxVolume": 1, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 916}, {"name": "Bo_mine_spawn", "fileNames": "sfx/bo_mine_spawn_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 917}, {"name": "Buy_gems", "fileNames": "sfx/buy_gems_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 918}, {"name": "Become_chips", "fileNames": "sfx/become_chips_01.ogg", "minVolume": 75, "maxVolume": 75, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 919}, {"name": "Safe_open_elixir", "fileNames": "sfx/safe_open_char_01.ogg", "minVolume": 95, "maxVolume": 95, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 920}, {"name": "Safe_open_char", "fileNames": "sfx/safe_open_char_01.ogg", "minVolume": 95, "maxVolume": 95, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 921}, {"name": "Getting_healed", "fileNames": "sfx/heal_loop_01.ogg", "minVolume": 25, "maxVolume": 25, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 922}, {"name": "Sniper_atk", "fileNames": "sfx/princess_shoot_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 923}, {"name": "Sniper_trail", "fileNames": "sfx/sniper_trail_02.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 924}, {"name": "Sniper_reload", "fileNames": "sfx/sniper_reload_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 925}, {"name": "Sniper_ulti", "fileNames": "sfx/sniper_ulti_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 926}, {"name": "Piper_mine_drop", "fileNames": "sfx/piper_mine_drop_02.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 927}, {"name": "Sniper_land", "fileNames": "sfx/princess_land_01.ogg", "minVolume": 60, "maxVolume": 65, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 928}, {"name": "Throw_bawl", "fileNames": "sfx/brawl_ball_kick_02.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 929}, {"name": "Throw_bawl_ulti", "fileNames": "sfx/throw_bawl_ulti_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 930}, {"name": "Catch_bawl", "fileNames": "sfx/catch_bawl_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 931}, {"name": "Mystic_atk", "fileNames": "sfx/mystic_atk_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 932}, {"name": "Black_hole", "fileNames": "sfx/mystic_hole_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 933}, {"name": "Mystic_reload", "fileNames": "sfx/mystic_reload_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 934}, {"name": "Mystic_ulti_deploy", "fileNames": "sfx/mystic_ulti_deploy_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 935}, {"name": "Mystic_dryfire", "fileNames": "sfx/mystic_dryfire_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 936}, {"name": "Overtime", "fileNames": "sfx/overtime_02.ogg", "minVolume": 85, "maxVolume": 85, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 937}, {"name": "MiniG_fire", "fileNames": "sfx/minig_fire_01.ogg", "minVolume": 30, "maxVolume": 50, "minPitch": 85, "maxPitch": 115, "priority": 1, "maximumByType": 15, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 938}, {"name": "MiniG_reload", "fileNames": "sfx/minig_reload_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 939}, {"name": "Minig_dryfire", "fileNames": "sfx/minig_dryfire_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 940}, {"name": "MiniG_ulti", "fileNames": "sfx/minig_ulti_01.ogg", "minVolume": 65, "maxVolume": 75, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 941}, {"name": "Pve_wave_01", "fileNames": "sfx/wave_fight_01v2.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 942}, {"name": "Pve_boss_01", "fileNames": "sfx/wave_boss_fight_01.ogg", "minVolume": 85, "maxVolume": 85, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 943}, {"name": "Barrel_bot_ulti", "fileNames": "sfx/barrelroll_ulti_01.ogg", "minVolume": 75, "maxVolume": 75, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 944}, {"name": "Get_100coins", "fileNames": "sfx/100coins_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 945}, {"name": "Trophy_rank_up", "fileNames": "sfx/trophy_rank_up_01v2.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 946}, {"name": "Craft_rarity_01", "fileNames": "sfx/craft_rarity_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 947}, {"name": "Craft_rarity_02", "fileNames": "sfx/craft_rarity_02.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 948}, {"name": "Craft_rarity_03", "fileNames": "sfx/craft_rarity_03v2.ogg", "minVolume": 65, "maxVolume": 65, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 949}, {"name": "Craft_rarity_04", "fileNames": "sfx/craft_rarity_04v2.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 950}, {"name": "Craft_rarity_05", "fileNames": "sfx/craft_rarity_05.ogg", "minVolume": 75, "maxVolume": 75, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 951}, {"name": "Brawl_button", "fileNames": "sfx/brawl_button_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 952}, {"name": "Select_brawler", "fileNames": "sfx/select_brawler_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 953}, {"name": "Barrelbot_step", "fileNames": "sfx/barrel_roll_02.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 954}, {"name": "Char_rollout", "fileNames": "sfx/char_roll_out_02.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 955}, {"name": "Brawler_intro", "fileNames": "sfx/brawlerintro_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 956}, {"name": "Brawl_intro", "fileNames": "sfx/brawl_intro_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 957}, {"name": "Upgrade_count", "fileNames": "sfx/upgrade_count_01.ogg", "minVolume": 15, "maxVolume": 15, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 20, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 958}, {"name": "Count_powerpoints", "fileNames": "sfx/count_powerpoints_01.ogg", "minVolume": 10, "maxVolume": 10, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 20, "maxRepeatMs": 30, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 959}, {"name": "Emit_powerpoints", "fileNames": "sfx/emit_powerpoints_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 10, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 960}, {"name": "Gatcha_end_screen", "fileNames": "sfx/gatcha_summary_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 961}, {"name": "Gatcha_star_power", "fileNames": "sfx/startwirl_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 962}, {"name": "Buy_from_shop", "fileNames": "sfx/brawlbuy_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 963}, {"name": "Shop_item_appear", "fileNames": "sfx/item_swirl_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 964}, {"name": "Coins_gatcha", "fileNames": "sfx/get_coins_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": 310, "startDelayMaxMs": 310, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 965}, {"name": "Upgrade_unlocked", "fileNames": "sfx/unlock_new_power_lvl_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 966}, {"name": "2x_gatcha", "fileNames": "sfx/2x_gatcha_double_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": 310, "startDelayMaxMs": 310, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 967}, {"name": "Get_powerpoints_small", "fileNames": "sfx/get_powerpoints_01v2.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 968}, {"name": "Get_powerpoints_medium", "fileNames": "sfx/get_powerpoints_02v2.ogg", "minVolume": 65, "maxVolume": 65, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 969}, {"name": "Get_powerpoints_big", "fileNames": "sfx/get_powerpoints_03v2.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 970}, {"name": "Get_powerpoints_accent", "fileNames": "sfx/get_pp_accent_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 971}, {"name": "Get_powerpoints_accent_2", "fileNames": "sfx/get_pp_2_accent_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 972}, {"name": "Friend_online", "fileNames": "sfx/friend_online_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 973}, {"name": "Ticket_gatcha", "fileNames": "sfx/get_tickets_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": 310, "startDelayMaxMs": 310, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 974}, {"name": "Bad_brawler", "fileNames": "sfx/bad_move_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 975}, {"name": "Tut_speech", "fileNames": "sfx/tut_speech_01.ogg", "minVolume": 35, "maxVolume": 35, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 976}, {"name": "Marig_nohit", "fileNames": "sfx/marig_miss_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 977}, {"name": "Marig_hit", "fileNames": "sfx/marig_hit_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 978}, {"name": "Marig_fire", "fileNames": "sfx/marig_fire_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 979}, {"name": "Marig_ulti", "fileNames": "sfx/marig_turret_02.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 980}, {"name": "Hammer_atk", "fileNames": "sfx/frank_swing_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": 200, "startDelayMaxMs": 200, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 981}, {"name": "Hammer_hit", "fileNames": "sfx/frank_hit_01.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 982}, {"name": "Hammer_u_atk", "fileNames": "sfx/frank_ulti_swing_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": 200, "startDelayMaxMs": 200, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 983}, {"name": "Hammer_u_hit", "fileNames": "sfx/frank_ulti_hit_01.ogg", "minVolume": 80, "maxVolume": 90, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 984}, {"name": "New_reward_home", "fileNames": "sfx/craft_rarity_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 985}, {"name": "Trophy_rank_up_home", "fileNames": "sfx/trophy_rank_up_01v2.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 986}, {"name": "Unlock_event_slot", "fileNames": "sfx/brawlerintro_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 987}, {"name": "Frank_vo", "fileNames": ["sfx/frank_vo_06.ogg", "sfx/frank_vo_05.ogg", "sfx/frank_vo_04.ogg", "sfx/frank_vo_03.ogg", "sfx/frank_vo_02.ogg", "sfx/frank_vo_01.ogg"], "minVolume": [50, 50, 50, 50, 50, 50], "maxVolume": [50, 50, 50, 50, 50, 50], "minPitch": [96, 96, 96, 96, 96, 96], "maxPitch": [104, 104, 104, 104, 104, 104], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [1, 1, 1, 1, 1, 1], "maxRepeatMs": [12000, 12000, 12000, 12000, 12000, 12000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 988}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Emit_coins", "fileNames": "sfx/emit_coins_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 10, "maxRepeatMs": 150, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 994}, {"name": "Emit_gems", "fileNames": "sfx/emit_gems_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 10, "maxRepeatMs": 150, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 995}, {"name": "ui_gem_gain", "fileNames": "sfx/count_gems_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": 80, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 996}, {"name": "Emit_tickets", "fileNames": "sfx/emit_tickets_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 10, "maxRepeatMs": 150, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 997}, {"name": "ui_ticket_gain", "fileNames": "sfx/count_tickets_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": 80, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 998}, {"name": "Emit_keys", "fileNames": "sfx/emit_keys_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 10, "maxRepeatMs": 150, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 999}, {"name": "ui_key_gain", "fileNames": "sfx/count_keys_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": 80, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1000}, {"name": "Emit_star_keys", "fileNames": "sfx/emit_starkeys_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 10, "maxRepeatMs": 150, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1001}, {"name": "ui_star_key_gain", "fileNames": "sfx/count_starkeys_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": 80, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1002}, {"name": "Emit_trophies", "fileNames": "sfx/emit_trophies_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 200, "maxPitch": 200, "priority": 2, "maximumByType": 10, "maxRepeatMs": 150, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1003}, {"name": "ui_trophy_gain", "fileNames": "sfx/count_trophies_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 10, "maxRepeatMs": 80, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1004}, {"name": "Gems_gatcha", "fileNames": "sfx/gems_gatcha_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": 310, "startDelayMaxMs": 310, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1005}, {"name": "Meteor_seq", "fileNames": ["sfx/meteor_01.ogg", "sfx/meteor_02.ogg", "sfx/meteor_03.ogg"], "minVolume": [40, 40, 40], "maxVolume": [40, 40, 40], "minPitch": [97, 97, 97], "maxPitch": [103, 103, 103], "priority": [1, 1, 1], "maximumByType": [3, 3, 3], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1006}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Powerup_seq", "fileNames": "sfx/power_up_spawn_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1009}, {"name": "Boss_seq", "fileNames": "sfx/boss_spawn_seq_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1010}, {"name": "Emit_drops", "fileNames": "sfx/emit_tickets_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1011}, {"name": "Get_powerup", "fileNames": "sfx/drink_powerup_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1012}, {"name": "Join_game_room", "fileNames": "sfx/join_game_room_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1013}, {"name": "Leave_game_room", "fileNames": "sfx/leave_game_room_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1014}, {"name": "raidboss_warning", "fileNames": ["sfx/rick_ulti_01.ogg", "sfx/rick_ulti_02.ogg", "sfx/rick_ulti_03.ogg", "sfx/rick_ulti_04.ogg"], "minVolume": [40, 40, 40, 40], "maxVolume": [50, 50, 50, 50], "minPitch": [65, 65, 65, 65], "maxPitch": [68, 68, 68, 68], "priority": [1, 1, 1, 1], "maximumByType": [1, 1, 1, 1], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1015}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "raidboss_attack", "fileNames": "sfx/roborocket01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 20, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1019}, {"name": "raidboss_rocket_attack", "fileNames": "sfx/robotshoot_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 1, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1020}, {"name": "Shrooms", "fileNames": "sfx/shroomz.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1021}, {"name": "Char_respawn", "fileNames": "sfx/char_respawn_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1022}, {"name": "Enemy_char_respawn", "fileNames": "sfx/enemy_char_respawn_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1023}, {"name": "Respawn_count_3", "fileNames": "sfx/respawn_count_01.ogg", "minVolume": 40, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1024}, {"name": "Respawn_count_2", "fileNames": "sfx/respawn_count_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1025}, {"name": "Respawn_count_1", "fileNames": "sfx/respawn_count_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1026}, {"name": "Respawn_count_0", "fileNames": "sfx/respawn_count_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 200, "maxPitch": 200, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1027}, {"name": "Leon_atk", "fileNames": "sfx/ninja_star_01.ogg", "minVolume": 20, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 2, "maximumByType": 12, "maxRepeatMs": 50, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1028}, {"name": "Leon_ulti", "fileNames": "sfx/ninja_invis_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1029}, {"name": "Leon_ulti_end", "fileNames": "sfx/ninja_invis_end_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1030}, {"name": "Leon_reload", "fileNames": "sfx/leon_reload_01.ogg", "minVolume": 30, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 2, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1031}, {"name": "Dry_fire_leon", "fileNames": "sfx/ninja_star_dry_01.ogg", "minVolume": 40, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 2, "maximumByType": 6, "maxRepeatMs": 100, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1032}, {"name": "Wiz_barley_fireball", "fileNames": "sfx/bar_fire_atk_01.ogg", "minVolume": 30, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1033}, {"name": "Wiz_barley_fireball_hit", "fileNames": "sfx/bar_fire_hit_01.ogg", "minVolume": 30, "maxVolume": 50, "minPitch": 90, "maxPitch": 110, "priority": 2, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1034}, {"name": "Gene_atk", "fileNames": "sfx/gene_atk_02.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1035}, {"name": "Gene_atk_dry", "fileNames": "sfx/gene_atk_dry_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 1, "maxRepeatMs": 200, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1036}, {"name": "Gene_atk_reload", "fileNames": "sfx/gene_atk_reload_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1037}, {"name": "Gene_atk_split", "fileNames": "sfx/gene_atk_split_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1038}, {"name": "Penny_turret_spawn", "fileNames": "sfx/marig_turret_spawn_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1039}, {"name": "Gene_ulti", "fileNames": "sfx/gene_atk_ulti_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1040}, {"name": "Gene_ulti_hit", "fileNames": "sfx/gene_hit_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1041}, {"name": "Gene_atk_hit", "fileNames": "sfx/gene_atk_hit_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1042}, {"name": "Gene_atk_hit_2", "fileNames": "sfx/gene_atk_hit_02.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1043}, {"name": "Gene_vo", "fileNames": ["sfx/gene_vo_01.ogg", "sfx/gene_vo_02.ogg", "sfx/gene_vo_03.ogg", "sfx/gene_vo_04.ogg", "sfx/gene_vo_05.ogg", "sfx/gene_vo_06.ogg", "sfx/gene_vo_07.ogg", "sfx/gene_vo_08.ogg", "sfx/gene_vo_09.ogg", "sfx/gene_vo_10.ogg", "sfx/gene_vo_11.ogg", "sfx/gene_vo_12.ogg", "sfx/gene_vo_13.ogg", "sfx/gene_vo_14.ogg"], "minVolume": [45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45], "maxVolume": [55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55], "minPitch": [98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98, 98], "maxPitch": [102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102, 102], "priority": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "maximumByType": [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1044}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Start_VO", "fileNames": ["sfx/bea_start_vo_01.ogg", "sfx/bea_start_vo_04.ogg", "sfx/bea_start_vo_03.ogg", "sfx/bea_start_vo_02.ogg", "sfx/bea_start_vo_05.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1], "maximumByType": [3, 3, 3, 3, 3], "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1058}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Hurt_VO", "fileNames": ["sfx/bea_hurt_vo_01.ogg", "sfx/bea_hurt_vo_02.ogg", "sfx/bea_hurt_vo_03.ogg"], "minVolume": [60, 60, 60], "maxVolume": [60, 60, 60], "minPitch": [100, 100, 100], "maxPitch": [100, 100, 100], "priority": [1, 1, 1], "maximumByType": [3, 3, 3], "maxRepeatMs": [10000, 10000, 10000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1063}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Kill_VO", "fileNames": ["sfx/bea_kill_vo_01.ogg", "sfx/bea_kill_vo_02.ogg", "sfx/bea_kill_vo_03.ogg", "sfx/bea_kill_vo_04.ogg"], "minVolume": [60, 60, 60, 60], "maxVolume": [60, 60, 60, 60], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [3, 3, 3, 3], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1066}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Ulti_VO", "fileNames": ["sfx/bea_ulti_vo_01.ogg", "sfx/bea_ulti_vo_02.ogg", "sfx/bea_ulti_vo_03.ogg", "sfx/bea_ulti_vo_04.ogg"], "minVolume": [60, 60, 60, 60], "maxVolume": [60, 60, 60, 60], "minPitch": [100, 100, 100, 100], "maxPitch": [100, 100, 100, 100], "priority": [1, 1, 1, 1], "maximumByType": [3, 3, 3, 3], "maxRepeatMs": [15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1070}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Die_VO", "fileNames": ["sfx/bea_die_vo_01.ogg", "sfx/bea_die_vo_01.ogg", "sfx/bea_die_vo_03.ogg"], "minVolume": [60, 60, 60], "maxVolume": [60, 60, 60], "minPitch": [100, 100, 100], "maxPitch": [100, 100, 100], "priority": [1, 1, 1], "maximumByType": [3, 3, 3], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1074}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Lead_VO", "fileNames": ["sfx/bea_lead_vo_01.ogg", "sfx/bea_lead_vo_02.ogg", "sfx/bea_lead_vo_03.ogg", "sfx/bea_lead_vo_04.ogg", "sfx/bea_lead_vo_05.ogg"], "minVolume": [60, 60, 60, 60, 60], "maxVolume": [60, 60, 60, 60, 60], "minPitch": [100, 100, 100, 100, 100], "maxPitch": [100, 100, 100, 100, 100], "priority": [1, 1, 1, 1, 1], "maximumByType": [3, 3, 3, 3, 3], "maxRepeatMs": [22000, 22000, 22000, 22000, 22000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1077}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Atk_VO", "fileNames": ["sfx/bea_atk_vo_03.ogg", "sfx/bea_atk_vo_01.ogg", "sfx/bea_atk_vo_02.ogg"], "minVolume": [50, 50, 50], "maxVolume": [50, 50, 50], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [3, 3, 3], "maxRepeatMs": [8000, 8000, 8000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1082}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Bea_Atk", "fileNames": "sfx/bea_atk_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1085}, {"name": "Bea_Atk_Hit", "fileNames": "sfx/bea_atk_hit_01.ogg", "minVolume": 10, "maxVolume": 30, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 12, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1086}, {"name": "Bea_Ulti", "fileNames": "sfx/bea_ulti_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1087}, {"name": "Bea_No_Ammo", "fileNames": "sfx/bea_no_ammo_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": 1000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1088}, {"name": "Bea_Reload", "fileNames": "sfx/bea_reload_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": 1000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1089}, {"name": "Springboard_charge", "fileNames": "sfx/springboard_charge_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1090}, {"name": "Springboard_jump", "fileNames": "sfx/springboard_jump_01.ogg", "minVolume": 75, "maxVolume": 75, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1091}, {"name": "Carl_atk", "fileNames": "sfx/carl_atk_01v2.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1092}, {"name": "Carl_reload", "fileNames": "sfx/carl_reload_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1093}, {"name": "Carl_no_ammo", "fileNames": "sfx/carl_no_ammo.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1094}, {"name": "Carl_ulti", "fileNames": "sfx/carl_twirl_02.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1095}, {"name": "Carl_atk_return", "fileNames": "sfx/carl_atk_return_03.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": true, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1096}, {"name": "Carl_atk_hit_return", "fileNames": "sfx/carl_atk_hit_return_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1097}, {"name": "Train_warning", "fileNames": "sfx/troll_train_warn_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1098}, {"name": "Nita_dog_summon", "fileNames": "sfx/Nita_dog_summon_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1099}, {"name": "Rosa_ulti", "fileNames": "sfx/Rosa_ulti_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1100}, {"name": "Rosa_punch", "fileNames": "sfx/Rosa_punch_01.ogg", "minVolume": 20, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1101}, {"name": "Rosa_reload", "fileNames": "sfx/Rosa_reload_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1102}, {"name": "bibi_atk", "fileNames": "sfx/bibi_swing_03.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1103}, {"name": "Bibi_reload", "fileNames": "sfx/bibi_reload_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1104}, {"name": "Bibi_bat_hit", "fileNames": "sfx/bibibat_impact_01.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": 200, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1105}, {"name": "bibi_bubble_hit", "fileNames": "sfx/bibi_bubble_hit_01.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 3, "maxRepeatMs": 200, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1106}, {"name": "bibi_ulti", "fileNames": "sfx/bibi_ulti_02.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1107}, {"name": "bibi_ulti_hit", "fileNames": "sfx/bibi_ulti_hit_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": 200, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1108}, {"name": "bibi_bubble_pop", "fileNames": "sfx/bibi_bubble_pop_01.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 92, "maxPitch": 108, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1109}, {"name": "Bull_berserk", "fileNames": "sfx/bull_berserk_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1110}, {"name": "Starpower_speed", "fileNames": "sfx/starpower_speed_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1111}, {"name": "Starpower_shield", "fileNames": "sfx/starpower_shield_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1112}, {"name": "Tick_vo_1", "fileNames": ["sfx/tick_vo_01v2.ogg", "sfx/tick_vo_02v2.ogg", "sfx/tick_vo_03v2.ogg", "sfx/tick_vo_04v2.ogg", "sfx/tick_vo_05v2.ogg", "sfx/tick_vo_06v2.ogg"], "minVolume": [55, 55, 55, 55, 55, 55], "maxVolume": [65, 65, 65, 65, 65, 65], "minPitch": [95, 95, 95, 95, 95, 95], "maxPitch": [105, 105, 105, 105, 105, 105], "priority": [1, 1, 1, 1, 1, 1], "maximumByType": [3, 3, 3, 3, 3, 3], "maxRepeatMs": [15000, 15000, 15000, 15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1113}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tick_vo_hurt", "fileNames": ["sfx/tick_vo_05hurt.ogg", "sfx/tick_vo_06hurt.ogg", "sfx/tick_vo_07hurt.ogg"], "minVolume": [55, 55, 55], "maxVolume": [65, 65, 65], "minPitch": [98, 98, 98], "maxPitch": [102, 102, 102], "priority": [1, 1, 1], "maximumByType": [3, 3, 3], "maxRepeatMs": [15000, 15000, 15000], "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1119}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": null, "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null}, {"name": "Tick_vo_die", "fileNames": "sfx/tick_vo_08die.ogg", "minVolume": 55, "maxVolume": 65, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": 15000, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1122}, {"name": "Star_power_equip", "fileNames": "sfx/star_power_equip_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1123}, {"name": "Get_star_points", "fileNames": "sfx/get_star_points_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1124}, {"name": "Get_star_points_season_end", "fileNames": "sfx/get_star_points_01.ogg", "minVolume": 40, "maxVolume": 40, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 6, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1125}, {"name": "Tick_atk", "fileNames": "sfx/tick_atk_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1126}, {"name": "Tick_ulti", "fileNames": "sfx/tick_ulti_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1127}, {"name": "Tick_reload", "fileNames": "sfx/tick_reload_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1128}, {"name": "Tick_atk_split", "fileNames": "sfx/tick_atk_split_02.ogg", "minVolume": 55, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1129}, {"name": "Mech_mike_ulti", "fileNames": "sfx/mech_mike_ulti_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1130}, {"name": "Mech_mike_atk", "fileNames": "sfx/mech_mike_atk_01.ogg", "minVolume": 50, "maxVolume": 60, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1131}, {"name": "Mech_spike_atk", "fileNames": "sfx/mech_spike_atk_01.ogg", "minVolume": 60, "maxVolume": 65, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1132}, {"name": "Mech_spike_ulti", "fileNames": "sfx/mech_spike_ulti_01.ogg", "minVolume": 70, "maxVolume": 80, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1133}, {"name": "8bit_reload", "fileNames": "sfx/8bit_reload_01.ogg", "minVolume": 20, "maxVolume": 20, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1134}, {"name": "8bit_noammo", "fileNames": "sfx/8bit_noammo_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1135}, {"name": "Sandy_atk", "fileNames": "sfx/sandy_atk_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": 200, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1136}, {"name": "Sandy_reload", "fileNames": "sfx/sandy_reload_01.ogg", "minVolume": 30, "maxVolume": 30, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1137}, {"name": "Sandy_no_ammo", "fileNames": "sfx/sandy_no_ammo_01.ogg", "minVolume": 50, "maxVolume": 50, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1138}, {"name": "Sandy_ulti", "fileNames": "sfx/sandy_ulti_01.ogg", "minVolume": 75, "maxVolume": 75, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1139}, {"name": "Beach_brock_atk", "fileNames": "sfx/water_brock_atk_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1140}, {"name": "Water_jess_atk", "fileNames": "sfx/water_jess_atk_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 96, "maxPitch": 104, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1141}, {"name": "Water_jess_ulti", "fileNames": "sfx/water_jess_ulti_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1142}, {"name": "Water_jess_turret_atk", "fileNames": "sfx/water_jess_turret_atk_01.ogg", "minVolume": 40, "maxVolume": 50, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1143}, {"name": "Water_jess_hit", "fileNames": "sfx/water_jess_hit_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 5, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1144}, {"name": "Beach_brock_explo", "fileNames": "sfx/beach_brock_explo_01.ogg", "minVolume": 60, "maxVolume": 70, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 12, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1145}, {"name": "Slimey_shelly_shot", "fileNames": "sfx/slimey_shotgun_01.ogg", "minVolume": 45, "maxVolume": 55, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 8, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1146}, {"name": "Slimey_shotgun_ulti", "fileNames": "sfx/slimey_shotgun_ulti_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1147}, {"name": "No_vo", "fileNames": null, "minVolume": null, "maxVolume": null, "minPitch": null, "maxPitch": null, "priority": null, "maximumByType": null, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1148}, {"name": "LL_Atk", "fileNames": "sfx/ll_atk_01.ogg", "minVolume": 30, "maxVolume": 40, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 10, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1149}, {"name": "LL_Hurt", "fileNames": "sfx/ll_hurt_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1150}, {"name": "LL_Die", "fileNames": "sfx/ll_die_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1151}, {"name": "LL_Ulti", "fileNames": "sfx/ll_ulti_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 98, "maxPitch": 102, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1152}, {"name": "LL_Kill", "fileNames": "sfx/ll_kill_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1153}, {"name": "LL_Start", "fileNames": "sfx/ll_start_01.ogg", "minVolume": 60, "maxVolume": 60, "minPitch": 90, "maxPitch": 110, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1154}, {"name": "LL_Ulti_Hit", "fileNames": "sfx/ll_ulti_hit_01.ogg", "minVolume": 80, "maxVolume": 80, "minPitch": 95, "maxPitch": 105, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1155}, {"name": "Championship_challenge_strike", "fileNames": "sfx/ll_die_01.ogg", "minVolume": 70, "maxVolume": 70, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 4, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1156}, {"name": "Championship_challenge_qualified", "fileNames": "sfx/craft_rarity_05.ogg", "minVolume": 75, "maxVolume": 75, "minPitch": 100, "maxPitch": 100, "priority": 1, "maximumByType": 3, "maxRepeatMs": null, "loop": null, "playVariationsInSequence": null, "playVariationsInSequenceManualReset": null, "startDelayMinMs": null, "startDelayMaxMs": null, "playOnlyWhenInView": null, "maxVolumeScaleLimit": null, "noSoundScaleLimit": null, "padEmpyToEndMs": null, "id": 1157}], "tutorial": [{"name": 1, "stepName": "loot_1", "startDelayMS": 10000, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "loot", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Hi, I'm Shelly! Let's collect all those GEMS! DRAG the BLUE CONTROL with your left thumb to get me moving.", "startSound": "Tut_speech", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": 3, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 26, "rawSpeechBubbleTIDs": "TUTORIAL_1"}, {"name": 2, "stepName": "loot_2", "startDelayMS": 0, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "loot", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Gotta collect them all! These GEMS are mine!", "startSound": "Tut_speech", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": 0, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 27, "rawSpeechBubbleTIDs": "TUTORIAL_2"}, {"name": 3, "stepName": null, "startDelayMS": 500, "endDelayMS": 2500, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Good job!", "startSound": "Tutorial_circle", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 28, "rawSpeechBubbleTIDs": "TUTORIAL_GOOD_JOB_1"}, {"name": 4, "stepName": null, "startDelayMS": 500, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": "Pve_wave_01", "spawnCharacter": "TutorialDummy", "spawnLocationX": 1400, "spawnLocationY": 3200, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 29}, {"name": 5, "stepName": null, "startDelayMS": 300, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": null, "spawnCharacter": "TutorialDummy", "spawnLocationX": 2200, "spawnLocationY": 3200, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 30}, {"name": 6, "stepName": null, "startDelayMS": 300, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": null, "spawnCharacter": "TutorialDummy", "spawnLocationX": 3000, "spawnLocationY": 3200, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 31}, {"name": 7, "stepName": null, "startDelayMS": 300, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": null, "spawnCharacter": "TutorialDummy", "spawnLocationX": 3800, "spawnLocationY": 3200, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 32}, {"name": 8, "stepName": "manual_shoot", "startDelayMS": 1000, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "kill_everything", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Robo targets! DRAG the RED CONTROL with your right thumb to aim your shots, and release to fire. Destroy the robos!", "startSound": "Tut_speech", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": true, "leftSpeechBubble": null, "id": 33, "rawSpeechBubbleTIDs": "TUTORIAL_3"}, {"name": 9, "stepName": null, "startDelayMS": 500, "endDelayMS": 6000, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Good job! The ORANGE BARS show your ammo. I'll reload as fast as I can.", "startSound": "Tutorial_circle", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 34, "rawSpeechBubbleTIDs": "TUTORIAL_GOOD_JOB_2"}, {"name": 10, "stepName": null, "startDelayMS": 500, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": "Pve_wave_01", "spawnCharacter": "TutorialDummy2", "spawnLocationX": 1400, "spawnLocationY": 4500, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 35}, {"name": 11, "stepName": null, "startDelayMS": 300, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": null, "spawnCharacter": "TutorialDummy2", "spawnLocationX": 1900, "spawnLocationY": 3100, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 36}, {"name": 12, "stepName": null, "startDelayMS": 300, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": null, "spawnCharacter": "TutorialDummy2", "spawnLocationX": 3000, "spawnLocationY": 2900, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 37}, {"name": 13, "stepName": null, "startDelayMS": 300, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": null, "spawnCharacter": "TutorialDummy2", "spawnLocationX": 3800, "spawnLocationY": 4000, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 38}, {"name": 14, "stepName": "auto_shoot", "startDelayMS": 1000, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "kill_everything", "shouldUseAutoShoot": true, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "More targets! You can TAP the RED CONTROL to shoot at the closest enemy. Destroy the robos!", "startSound": "Tut_speech", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 39, "rawSpeechBubbleTIDs": "TUTORIAL_5"}, {"name": 15, "stepName": null, "startDelayMS": 500, "endDelayMS": 6000, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Good job! Attacking enemies charges up your SUPER ATTACK!", "startSound": "Tutorial_circle", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 40, "rawSpeechBubbleTIDs": "TUTORIAL_GOOD_JOB_3"}, {"name": 16, "stepName": null, "startDelayMS": 500, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": null, "speechBubbleCharacterMovieClip": null, "speechBubbleTIDs": null, "startSound": "Pve_wave_01", "spawnCharacter": "TutorialDummy3", "spawnLocationX": 2600, "spawnLocationY": 1600, "customData": 1, "blockingSpeechBubble": null, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 41}, {"name": 17, "stepName": "use_ulti", "startDelayMS": 1000, "endDelayMS": null, "forceSpeechBubbleCloseMS": null, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "use_ulti", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": 2600, "useUltiY": 1200, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "Now use your Super to shoot the BOSS behind the wall! DRAG the YELLOW CONTROL to aim your Super, and release to fire!", "startSound": "Tut_speech", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": null, "showUlti": true, "showShootStick": null, "leftSpeechBubble": null, "id": 42, "rawSpeechBubbleTIDs": "TUTORIAL_6"}, {"name": 18, "stepName": "click_to_end", "startDelayMS": 1500, "endDelayMS": null, "forceSpeechBubbleCloseMS": 4000, "startCondition": "none", "startLocationX": null, "startLocationY": null, "startLocationRadius": null, "animationX": null, "animationY": null, "animationX2": null, "animationY2": null, "completeCondition": "none", "shouldUseAutoShoot": null, "completeLocationX": null, "completeLocationY": null, "completeLocationRadius": null, "useUltiX": null, "useUltiY": null, "animationClipSWF": null, "animationMovieClip": null, "animationClipSWF2": null, "animationMovieClip2": null, "speechBubbleCharacterSWF": "sc/ui.sc", "speechBubbleCharacterMovieClip": "tutorial_character_top", "speechBubbleTIDs": "You're a natural Brawler!\\n\\nNow, let's go get 'em!", "startSound": "Tutorial_circle", "spawnCharacter": null, "spawnLocationX": null, "spawnLocationY": null, "customData": null, "blockingSpeechBubble": true, "showUlti": null, "showShootStick": null, "leftSpeechBubble": null, "id": 43, "rawSpeechBubbleTIDs": "TUTORIAL_9"}], "alliance_badges": [{"name": "clan_badge_01_01", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_01_01", "category": null, "id": 8}, {"name": "clan_badge_01_02", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_01_02", "category": null, "id": 9}, {"name": "clan_badge_01_03", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_01_03", "category": null, "id": 10}, {"name": "clan_badge_01_04", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_01_04", "category": null, "id": 11}, {"name": "clan_badge_02_01", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_02_01", "category": null, "id": 12}, {"name": "clan_badge_02_02", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_02_02", "category": null, "id": 13}, {"name": "clan_badge_02_03", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_02_03", "category": null, "id": 14}, {"name": "clan_badge_02_04", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_02_04", "category": null, "id": 15}, {"name": "clan_badge_03_01", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_03_01", "category": null, "id": 16}, {"name": "clan_badge_03_02", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_03_02", "category": null, "id": 17}, {"name": "clan_badge_03_03", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_03_03", "category": null, "id": 18}, {"name": "clan_badge_03_04", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_03_04", "category": null, "id": 19}, {"name": "clan_badge_04_01", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_04_01", "category": null, "id": 20}, {"name": "clan_badge_04_02", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_04_02", "category": null, "id": 21}, {"name": "clan_badge_04_03", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_04_03", "category": null, "id": 22}, {"name": "clan_badge_04_04", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_04_04", "category": null, "id": 23}, {"name": "clan_badge_05_01", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_05_01", "category": null, "id": 24}, {"name": "clan_badge_05_02", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_05_02", "category": null, "id": 25}, {"name": "clan_badge_05_03", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_05_03", "category": null, "id": 26}, {"name": "clan_badge_05_04", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_05_04", "category": null, "id": 27}, {"name": "clan_badge_01_05", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_01_05", "category": null, "id": 28}, {"name": "clan_badge_01_06", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_01_06", "category": null, "id": 29}, {"name": "clan_badge_02_05", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_02_05", "category": null, "id": 30}, {"name": "clan_badge_02_06", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_02_06", "category": null, "id": 31}, {"name": "clan_badge_03_05", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_03_05", "category": null, "id": 32}, {"name": "clan_badge_03_06", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_03_06", "category": null, "id": 33}, {"name": "clan_badge_04_05", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_04_05", "category": null, "id": 34}, {"name": "clan_badge_04_06", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_04_06", "category": null, "id": 35}, {"name": "clan_badge_05_05", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_05_05", "category": null, "id": 36}, {"name": "clan_badge_05_06", "iconSWF": "sc/ui.sc", "iconExportName": "clan_badge_05_06", "category": null, "id": 37}], "alliance_roles": [{"name": "NonMember", "level": 0, "tID": null, "canInvite": false, "canSendMail": false, "canChangeAllianceSettings": false, "canAcceptJoinRequest": false, "canKick": null, "canBePromotedToLeader": null, "promoteSkill": 0, "id": 25}, {"name": "Member", "level": 1, "tID": "Member", "canInvite": false, "canSendMail": false, "canChangeAllianceSettings": false, "canAcceptJoinRequest": false, "canKick": false, "canBePromotedToLeader": null, "promoteSkill": 0, "id": 26, "rawTID": "ALLIANCE_ROLE_MEMBER"}, {"name": "Leader", "level": 20, "tID": "President", "canInvite": true, "canSendMail": true, "canChangeAllianceSettings": true, "canAcceptJoinRequest": true, "canKick": true, "canBePromotedToLeader": true, "promoteSkill": 2, "id": 27, "rawTID": "ALLIANCE_ROLE_LEADER"}, {"name": "Elder", "level": 5, "tID": "Senior", "canInvite": true, "canSendMail": false, "canChangeAllianceSettings": false, "canAcceptJoinRequest": true, "canKick": true, "canBePromotedToLeader": null, "promoteSkill": 0, "id": 28, "rawTID": "ALLIANCE_ROLE_ELDER"}, {"name": "Co-leader", "level": 10, "tID": "Vice President", "canInvite": true, "canSendMail": true, "canChangeAllianceSettings": true, "canAcceptJoinRequest": true, "canKick": true, "canBePromotedToLeader": true, "promoteSkill": 2, "id": 29, "rawTID": "ALLIANCE_ROLE_CO_LEADER"}], "area_effects": [{"name": "Brock_def_atk_area", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_def_explosion_blue", "loopingEffect": null, "scale": 70, "timeMs": 700, "radius": 300, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 17}, {"name": "Brock_def_ulti_area", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_def_ultiExp_blue", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 450, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 18}, {"name": "Brock_002_atk_area", "parentAreaEffectForSkin": "Brock_def_atk_area", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_002_explosion_blue", "loopingEffect": null, "scale": 70, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 19}, {"name": "Brock_002_ulti_area", "parentAreaEffectForSkin": "Brock_def_ulti_area", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_def_ultiExp_blue", "loopingEffect": null, "scale": 100, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 20}, {"name": "Brock_004_atk_area", "parentAreaEffectForSkin": "Brock_def_atk_area", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_004_explosion_blue", "loopingEffect": null, "scale": 70, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 21}, {"name": "Brock_004_ulti_area", "parentAreaEffectForSkin": "Brock_def_ulti_area", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_004_ultiExp_blue", "loopingEffect": null, "scale": 100, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 22}, {"name": "RocketGirlExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range400_blue", "blueExportName": "range400_blue", "redExportName": "range400_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_rocket_rose", "loopingEffect": null, "scale": 70, "timeMs": 700, "radius": 300, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 23}, {"name": "RocketGirlUltiExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_rocket_rose_ulti", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 450, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 24}, {"name": "CactusExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "spike_def_atk1_explosion", "loopingEffect": null, "scale": 70, "timeMs": 700, "radius": 300, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 25}, {"name": "CactusSpikeExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 300, "damage": null, "customValue": 6, "type": "BulletExplosion", "bulletExplosionBullet": "CactusSpike", "bulletExplosionBulletDistance": 13, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 26}, {"name": "CactusUltiExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "spike_def_ulti_explosion", "loopingEffect": null, "scale": 170, "timeMs": 4500, "radius": 800, "damage": 800, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": 350, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 27}, {"name": "Spike_002_atk1_explosion", "parentAreaEffectForSkin": "CactusExplosion", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "spike_002_atk1_explosion", "loopingEffect": null, "scale": 70, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 28}, {"name": "Spike_002_atk2", "parentAreaEffectForSkin": "CactusSpikeExplosion", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 100, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": "Spike002Spike", "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 29}, {"name": "Spike_002_ulti_explosion", "parentAreaEffectForSkin": "CactusUltiExplosion", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "spike_002_ulti_explosion", "loopingEffect": null, "scale": 170, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 30}, {"name": "Spike_003_atk1_explosion", "parentAreaEffectForSkin": "CactusExplosion", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "spike_003_atk1_explosion", "loopingEffect": null, "scale": 70, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 31}, {"name": "Spike_003_atk2", "parentAreaEffectForSkin": "CactusSpikeExplosion", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 100, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": "Spike003Frag", "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 32}, {"name": "Spike_003_ulti_explosion", "parentAreaEffectForSkin": "CactusUltiExplosion", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "spike_003_ulti_explosion", "loopingEffect": null, "scale": 170, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 33}, {"name": "Barley_def_atk", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_def_atk", "loopingEffect": null, "scale": 55, "timeMs": 1900, "radius": 600, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 34}, {"name": "Barley_def_ulti", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_def_ulti", "loopingEffect": null, "scale": 55, "timeMs": 3900, "radius": 600, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": 1000, "dontShowToEnemy": null, "id": 35}, {"name": "Barley_002_atk", "parentAreaEffectForSkin": "Barley_def_atk", "fileName": "sc/effects_brawler.sc", "ownExportName": "fireball_ground", "blueExportName": "fireball_ground", "redExportName": "fireball_ground_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_002_atk", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 36}, {"name": "Barley_002_ulti", "parentAreaEffectForSkin": "Barley_def_ulti", "fileName": "sc/effects_brawler.sc", "ownExportName": "fireball_ground", "blueExportName": "fireball_ground", "redExportName": "fireball_ground_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_002_ulti", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 37}, {"name": "Barley_004_atk", "parentAreaEffectForSkin": "Barley_def_atk", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_004_atk", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 38}, {"name": "Barley_004_ulti", "parentAreaEffectForSkin": "Barley_def_ulti", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_004_ulti", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 39}, {"name": "Barley_005_atk", "parentAreaEffectForSkin": "Barley_def_atk", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_005_atk", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 40}, {"name": "Barley_005_ulti", "parentAreaEffectForSkin": "Barley_def_ulti", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_005_ulti", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 41}, {"name": "Bo_def_ulti1_area", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "bo_def_ulti1_explosion", "loopingEffect": null, "scale": 70, "timeMs": 700, "radius": 300, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 42}, {"name": "Bo_def_ulti2_area", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "bo_def_ulti2_explosion", "loopingEffect": null, "scale": 133, "timeMs": 700, "radius": 600, "damage": 99, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 70, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 43}, {"name": "BarkeepExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "toxic_area_effect_blue", "blueExportName": "toxic_area_effect_blue", "redExportName": "toxic_area_effect_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_barkeep", "loopingEffect": null, "scale": 55, "timeMs": 1900, "radius": 600, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 44}, {"name": "BarkeepWizardExplosion", "parentAreaEffectForSkin": "BarkeepExplosion", "fileName": "sc/effects.sc", "ownExportName": "fireball_ground", "blueExportName": "fireball_ground", "redExportName": "fireball_ground_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_barkeep_wizard", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 45}, {"name": "BarkeepUltiExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "toxic_area_effect_ulti_blue", "blueExportName": "toxic_area_effect_ulti_blue", "redExportName": "toxic_area_effect_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_barkeep_ulti", "loopingEffect": null, "scale": 55, "timeMs": 3900, "radius": 600, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": 1000, "dontShowToEnemy": null, "id": 46}, {"name": "BarkeepWizardUltiExplosion", "parentAreaEffectForSkin": "BarkeepUltiExplosion", "fileName": "sc/effects.sc", "ownExportName": "fireball_ground", "blueExportName": "fireball_ground", "redExportName": "fireball_ground_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_ulti_barkeep_wizard", "loopingEffect": null, "scale": 55, "timeMs": null, "radius": null, "damage": null, "customValue": null, "type": null, "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 47}, {"name": "ExplodingBarrelExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "gen_explosion_ring1_area", "blueExportName": "gen_explosion_ring1_area", "redExportName": "gen_explosion_ring1_area", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_600", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 600, "damage": 2000, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 120, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 48}, {"name": "PoisonBarrelExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "toxic_area_effect_blue", "blueExportName": "toxic_area_effect_blue", "redExportName": "toxic_area_effect_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_800", "loopingEffect": null, "scale": 100, "timeMs": 10500, "radius": 800, "damage": 400, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 49}, {"name": "TntDudeExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_tnt_dude", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 450, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": 150, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 50}, {"name": "TntDudeUltiExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_tnt_dude_ulti", "loopingEffect": null, "scale": 165, "timeMs": 700, "radius": 800, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 150, "pushbackStrengthSelf": 250, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 51}, {"name": "BowDudeExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range400_blue", "blueExportName": "range400_blue", "redExportName": "range400_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_bow_dude", "loopingEffect": null, "scale": 70, "timeMs": 700, "radius": 300, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 52}, {"name": "CrowUltiKnifes", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 300, "damage": null, "customValue": 14, "type": "BulletExplosion", "bulletExplosionBullet": "CrowUltiProjectile", "bulletExplosionBulletDistance": 22, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 53}, {"name": "HealingStationHeal", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "pam_def_ulti_area_active", "loopingEffect": "pam_def_ulti_area_loop", "scale": 125, "timeMs": 600000, "radius": 1000, "damage": -320, "customValue": null, "type": "Hot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 54}, {"name": "Heal", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "heal_area_effect_blue", "blueExportName": "heal_area_effect_blue", "redExportName": "heal_area_effect_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 800, "damage": -560, "customValue": null, "type": "Heal", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 55}, {"name": "MineExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_600", "loopingEffect": null, "scale": 133, "timeMs": 700, "radius": 600, "damage": 99, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 70, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 56}, {"name": "SniperBombExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_600", "loopingEffect": null, "scale": 133, "timeMs": 700, "radius": 600, "damage": 99, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 70, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 57}, {"name": "BlackHoleUltiExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "blackhole_ulti_damage", "loopingEffect": null, "scale": 100, "timeMs": 1400, "radius": 450, "damage": null, "customValue": 700, "type": "DelayedDamage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 50, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 58}, {"name": "BlackHoleUltiSuck", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "blackhole_ulti_suck", "loopingEffect": null, "scale": 235, "timeMs": 700, "radius": 1200, "damage": null, "customValue": null, "type": "Pushback", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": -150, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 59}, {"name": "ArtilleryDudeTurretExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "penny_def_turret_explosion", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 450, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 60}, {"name": "SelfDestructExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "explosion_artillery_dude_turret", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 450, "damage": null, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 61}, {"name": "HealWithAutoAttack", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": "pam_def_starPower", "scale": 125, "timeMs": 250, "radius": 1000, "damage": -320, "customValue": null, "type": "Heal", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 62}, {"name": "BurnMainAttack", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_def_starPower", "loopingEffect": null, "scale": 28, "timeMs": 2900, "radius": 300, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 63}, {"name": "PowerupSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "power_area_effect_blue", "blueExportName": "power_area_effect_blue", "redExportName": "power_area_effect_blue", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "powerup_indicator", "loopingEffect": null, "scale": 40, "timeMs": 5000, "radius": 300, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": true, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 64}, {"name": "BossSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "meteor_area_effect", "blueExportName": "meteor_area_effect", "redExportName": "meteor_area_effect", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "boss_warning", "loopingEffect": null, "scale": 40, "timeMs": 5000, "radius": 300, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": true, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 65}, {"name": "EventExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "meteor_area_explosion", "loopingEffect": null, "scale": 225, "timeMs": 700, "radius": 1200, "damage": 2000, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 150, "pushbackStrengthSelf": 250, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 66}, {"name": "ExplosionSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "meteor_area_effect", "blueExportName": "meteor_area_effect", "redExportName": "meteor_area_effect", "layer": "Above", "exportNameTop": "meteor_ball_animation", "exportNameObject": null, "effect": "meteor_warning", "loopingEffect": null, "scale": 126, "timeMs": 2500, "radius": 800, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": true, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 67}, {"name": "ClusterBombExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "tick_def_atk1_explode", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 800, "damage": null, "customValue": 3, "type": "BulletExplosion", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": 6, "bulletExplosionItem": "ClusterMine", "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 68}, {"name": "ClusterBombExplosion2", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_def_ultiExp_blue", "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 468, "damage": 99, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 69}, {"name": "Sandstorm", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "sandy_def_ulti_loop", "loopingEffect": null, "scale": 1000, "timeMs": 9000, "radius": 2000, "damage": null, "customValue": null, "type": "SmokeScreen", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 70}, {"name": "EventHealing", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "healing_mushroom_area_effect_02", "blueExportName": "healing_mushroom_area_effect_02", "redExportName": "healing_mushroom_area_effect_02", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": "mushroom_heal", "scale": 125, "timeMs": 5000, "radius": 1000, "damage": -1000, "customValue": null, "type": "Hot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 71}, {"name": "HealingSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "healing_mushroom_area_effect", "blueExportName": "healing_mushroom_area_effect", "redExportName": "healing_mushroom_area_effect", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "healing_spawn", "loopingEffect": null, "scale": 125, "timeMs": 2500, "radius": 800, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 72}, {"name": "RaidBossExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "raidboss_rocket_explosion", "loopingEffect": null, "scale": 185, "timeMs": 700, "radius": 1000, "damage": 2000, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 150, "pushbackStrengthSelf": 250, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 73}, {"name": "RaidBossExplosionSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "meteor_area_effect", "blueExportName": "meteor_area_effect", "redExportName": "meteor_area_effect", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "raidboss_rocket_warning", "loopingEffect": null, "scale": 105, "timeMs": 2000, "radius": 800, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": true, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 74}, {"name": "RaidBossRocketBurn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "brock_ground_fire_red", "blueExportName": "brock_ground_fire_red", "redExportName": "brock_ground_fire_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "burning_ground_raid_boss", "loopingEffect": null, "scale": 100, "timeMs": 6900, "radius": 1000, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": true, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 75}, {"name": "HeroSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "hero_spawn_green", "blueExportName": "hero_spawn_blue", "redExportName": "hero_spawn_red", "layer": "Above", "exportNameTop": null, "exportNameObject": null, "effect": "hero_spawn", "loopingEffect": null, "scale": 35, "timeMs": 2100, "radius": 300, "damage": null, "customValue": null, "type": "HeroSpawn", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 76}, {"name": "AutoHeal", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "heal_area_effect_blue", "blueExportName": "heal_area_effect_blue", "redExportName": "heal_area_effect_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": "heal_area_fx", "scale": 125, "timeMs": 350, "radius": 1000, "damage": -320, "customValue": null, "type": "Heal", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": true, "id": 77}, {"name": "RoboWarsBoxSpawn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "power_area_effect_blue", "blueExportName": "power_area_effect_blue", "redExportName": "power_area_effect_blue", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 30, "timeMs": 2500, "radius": 300, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 78}, {"name": "RoboWarsBaseExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range400_blue", "blueExportName": "range400_blue", "redExportName": "range400_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_def_explosion_blue", "loopingEffect": null, "scale": 70, "timeMs": 700, "radius": 300, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 79}, {"name": "RoboWarsBaseAreaIndicator", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 650, "timeMs": 600000, "radius": 4000, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 80}, {"name": "ClusterBombPetExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "bo_def_ulti2_explosion", "loopingEffect": null, "scale": 133, "timeMs": 700, "radius": 600, "damage": 99, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 120, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 81}, {"name": "BurnUlti", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": "fireball_ground", "blueExportName": "fireball_ground", "redExportName": "fireball_ground_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "barley_002_ulti", "loopingEffect": null, "scale": 55, "timeMs": 3900, "radius": 600, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 82}, {"name": "SpikeExplosionLowHealth", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 100, "timeMs": 700, "radius": 300, "damage": null, "customValue": 6, "type": "BulletExplosion", "bulletExplosionBullet": "CactusSpike", "bulletExplosionBulletDistance": 13, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 83}, {"name": "DamageBoost", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "arcade_def_ulti_area_active", "loopingEffect": "arcade_def_ulti_area_loop", "scale": 125, "timeMs": 600000, "radius": 1000, "damage": 30, "customValue": null, "type": "DamageBoost", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 84}, {"name": "DamageBoost_larger", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "arcade_def_ulti_areaBig_active", "loopingEffect": "arcade_def_ulti_areaBig_loop", "scale": 188, "timeMs": 600000, "radius": 1500, "damage": 30, "customValue": null, "type": "DamageBoost", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 85}, {"name": "BurnMainAttackWater", "parentAreaEffectForSkin": "BurnMainAttack", "fileName": "sc/effects.sc", "ownExportName": null, "blueExportName": null, "redExportName": null, "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "brock_004_starPower", "loopingEffect": null, "scale": 28, "timeMs": 2900, "radius": 300, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 86}, {"name": "MummyUltiArea", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": "emz_def_ulti_area", "blueExportName": "emz_def_ulti_area", "redExportName": "emz_def_ulti_area_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "emz_def_ulti", "loopingEffect": null, "scale": 350, "timeMs": 5000, "radius": 1700, "damage": 200, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": 350, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 87}, {"name": "BossRaceBossRocketExplosion", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "range450_blue", "blueExportName": "range450_blue", "redExportName": "range450_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "bossrace_rocket_explosion", "loopingEffect": null, "scale": 185, "timeMs": 700, "radius": 1000, "damage": 2000, "customValue": null, "type": "Damage", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": true, "pushbackStrength": 150, "pushbackStrengthSelf": 250, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 88}, {"name": "BossRaceBossRocketBurn", "parentAreaEffectForSkin": null, "fileName": "sc/effects.sc", "ownExportName": "brock_ground_fire_red", "blueExportName": "brock_ground_fire_red", "redExportName": "brock_ground_fire_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "burning_ground_raid_boss", "loopingEffect": null, "scale": 100, "timeMs": 6900, "radius": 1000, "damage": null, "customValue": null, "type": "Dot", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": true, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 89}, {"name": "SpeedyUltiArea", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": "max_def_ulti_area", "blueExportName": "max_def_ulti_area", "redExportName": "max_def_ulti_area_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": "max_def_ulti_active", "loopingEffect": null, "scale": 120, "timeMs": 1000, "radius": 1200, "damage": 300, "customValue": 80, "type": "SpeedBuff", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 90}, {"name": "ReloadBoostPersonal", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": "fireball_ground", "blueExportName": "fireball_ground", "redExportName": "fireball_ground_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": null, "scale": 90, "timeMs": 600000, "radius": 900, "damage": null, "customValue": 100, "type": "ReloadBoostPersonal", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 91}, {"name": "CTFHomeBase", "parentAreaEffectForSkin": null, "fileName": "sc/effects_brawler.sc", "ownExportName": "area_mode_gift", "blueExportName": "area_mode_gift", "redExportName": "area_mode_gift_red", "layer": "GroundHigh", "exportNameTop": null, "exportNameObject": null, "effect": null, "loopingEffect": "mode_gift_aura", "scale": 250, "timeMs": 600000, "radius": 1000, "damage": null, "customValue": null, "type": "Effect", "bulletExplosionBullet": null, "bulletExplosionBulletDistance": null, "bulletExplosionItem": null, "destroysEnvironment": null, "pushbackStrength": null, "pushbackStrengthSelf": null, "freezeStrength": null, "shouldShowEvenIfOutsideScreen": null, "sameAreaEffectCanNotDamageMs": null, "dontShowToEnemy": null, "id": 92}], "bosses": [{"name": "boss1", "tID": "Calamity Canyon", "playerCount": 3, "requiredCampaignProgressToUnlock": 6, "location": "Planet1", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss2", "bossLevel": 1, "id": 22, "rawTID": "BOSS_1"}, {"name": "boss2", "tID": "Hall of the Mole King", "playerCount": 3, "requiredCampaignProgressToUnlock": 12, "location": "Planet2", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss1", "bossLevel": 5, "id": 23, "rawTID": "BOSS_2"}, {"name": "boss3", "tID": "Chew Out", "playerCount": 3, "requiredCampaignProgressToUnlock": 18, "location": "Planet3", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss2", "bossLevel": 9, "id": 24, "rawTID": "BOSS_3"}, {"name": "boss4", "tID": "Team Day", "playerCount": 3, "requiredCampaignProgressToUnlock": 24, "location": "Planet4", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss1", "bossLevel": 12, "id": 25, "rawTID": "BOSS_4"}, {"name": "boss5", "tID": "Table Flip", "playerCount": 3, "requiredCampaignProgressToUnlock": 30, "location": "Planet5", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss2", "bossLevel": 15, "id": 26, "rawTID": "BOSS_5"}, {"name": "boss6", "tID": "Hunting Party", "playerCount": 3, "requiredCampaignProgressToUnlock": 36, "location": "Planet6", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss1", "bossLevel": 18, "id": 27, "rawTID": "BOSS_6"}, {"name": "boss7", "tID": null, "playerCount": 3, "requiredCampaignProgressToUnlock": 54, "location": "Planet7", "allowedHeroes": "Trooper,Techie,Vanguard,Sniper,PoisonDude,Healer", "reward": "Diamonds:10:", "levelGenerationSeed": null, "map": "Pvp4", "boss": "Boss2", "bossLevel": 20, "id": 28}], "campaign": [{"name": "Campaign_tutorial_1", "tID": null, "location": "Planet1", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp1", "enemies": "CampaignAlienRanged", "enemyLevel": 1, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 1, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 1, "requiredStars": 3, "id": 21}, {"name": "Campaign_tutorial_2", "tID": null, "location": "Planet1", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp2", "enemies": "CampaignAlienRanged", "enemyLevel": 1, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 1, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 1, "requiredStars": 4, "id": 22}, {"name": "Campaign_tutorial_3", "tID": null, "location": "Planet1", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp3", "enemies": "CampaignAlienRanged", "enemyLevel": 1, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 1, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 1, "requiredStars": 5, "id": 23}, {"name": "Campaign_1", "tID": null, "location": "Planet1", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 4, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 4, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 4, "requiredStars": 10, "id": 24}, {"name": "Campaign_2", "tID": null, "location": "Planet1", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 3, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 3, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 3, "requiredStars": 9, "id": 25}, {"name": "Campaign_3", "tID": null, "location": "Planet1", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp4", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 5, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 5, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 5, "requiredStars": 7, "id": 26}, {"name": "Campaign_4", "tID": null, "location": "Planet2", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 1, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 1, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 1, "requiredStars": 6, "id": 27}, {"name": "Campaign_4_1", "tID": null, "location": "Planet2", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 6, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 6, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 6, "requiredStars": 12, "id": 28}, {"name": "Campaign_5", "tID": null, "location": "Planet2", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 6, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 6, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 6, "requiredStars": 12, "id": 29}, {"name": "Campaign_6", "tID": null, "location": "Planet2", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp5", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 8, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 8, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 8, "requiredStars": 10, "id": 30}, {"name": "Campaign_7", "tID": null, "location": "Planet2", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 3, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 3, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 3, "requiredStars": 9, "id": 31}, {"name": "Campaign_8", "tID": null, "location": "Planet2", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 8, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 8, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 8, "requiredStars": 14, "id": 32}, {"name": "Campaign_9", "tID": null, "location": "Planet3", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 8, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 8, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 8, "requiredStars": 14, "id": 33}, {"name": "Campaign_10", "tID": null, "location": "Planet3", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp6", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 9, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 9, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 9, "requiredStars": 11, "id": 34}, {"name": "Campaign_11", "tID": null, "location": "Planet3", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 4, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 4, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 4, "requiredStars": 10, "id": 35}, {"name": "Campaign_12", "tID": null, "location": "Planet3", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 10, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 10, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 10, "requiredStars": 16, "id": 36}, {"name": "Campaign_13", "tID": null, "location": "Planet3", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 9, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 9, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 9, "requiredStars": 15, "id": 37}, {"name": "Campaign_14", "tID": null, "location": "Planet3", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp7", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 10, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 10, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 10, "requiredStars": 12, "id": 38}, {"name": "Campaign_15", "tID": null, "location": "Planet4", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 6, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 6, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 6, "requiredStars": 12, "id": 39}, {"name": "Campaign_16", "tID": null, "location": "Planet4", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 11, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 11, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 11, "requiredStars": 17, "id": 40}, {"name": "Campaign_17", "tID": null, "location": "Planet4", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 10, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 10, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 10, "requiredStars": 16, "id": 41}, {"name": "Campaign_18", "tID": null, "location": "Planet4", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp8", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 12, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 12, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 12, "requiredStars": 14, "id": 42}, {"name": "Campaign_19", "tID": null, "location": "Planet4", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 6, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 6, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 6, "requiredStars": 12, "id": 43}, {"name": "Campaign_20", "tID": null, "location": "Planet4", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 12, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 12, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 12, "requiredStars": 18, "id": 44}, {"name": "Campaign_21", "tID": null, "location": "Planet5", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 11, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 11, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 11, "requiredStars": 17, "id": 45}, {"name": "Campaign_22", "tID": null, "location": "Planet5", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp9", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 12, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 12, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 12, "requiredStars": 14, "id": 46}, {"name": "Campaign_23", "tID": null, "location": "Planet5", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 8, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 8, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 8, "requiredStars": 14, "id": 47}, {"name": "Campaign_24", "tID": null, "location": "Planet5", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 13, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 13, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 13, "requiredStars": 19, "id": 48}, {"name": "Campaign_25", "tID": null, "location": "Planet5", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 12, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 12, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 12, "requiredStars": 18, "id": 49}, {"name": "Campaign_26", "tID": null, "location": "Planet5", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp10", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 14, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 14, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 14, "requiredStars": 16, "id": 50}, {"name": "Campaign_27", "tID": null, "location": "Planet6", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 8, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 8, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 8, "requiredStars": 14, "id": 51}, {"name": "Campaign_28", "tID": null, "location": "Planet6", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 14, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 14, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 14, "requiredStars": 20, "id": 52}, {"name": "Campaign_29", "tID": null, "location": "Planet6", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 13, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 13, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 13, "requiredStars": 19, "id": 53}, {"name": "Campaign_30", "tID": null, "location": "Planet6", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp1", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 14, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 14, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 14, "requiredStars": 16, "id": 54}, {"name": "Campaign_31", "tID": null, "location": "Planet6", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 9, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 9, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 9, "requiredStars": 15, "id": 55}, {"name": "Campaign_32", "tID": null, "location": "Planet6", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 15, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 15, "requiredStars": 21, "id": 56}, {"name": "Campaign_33", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 14, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 14, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 14, "requiredStars": 20, "id": 57}, {"name": "Campaign_34", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp2", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 15, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 15, "requiredStars": 17, "id": 58}, {"name": "Campaign_35", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 10, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 10, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 10, "requiredStars": 16, "id": 59}, {"name": "Campaign_36", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense3", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 16, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 16, "tower": "CampaignCannon", "numTowers": 2, "towerLevel": 16, "requiredStars": 22, "id": 60}, {"name": "Campaign_37", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense2", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 14, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 14, "tower": "CampaignCannon", "numTowers": 3, "towerLevel": 14, "requiredStars": 20, "id": 61}, {"name": "Campaign_38", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Pvp3", "enemies": "CampaignAlienRangedFast,CampaignAlienMeleeFast", "enemyLevel": 16, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 0, "baseLevel": 16, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 16, "requiredStars": 18, "id": 62}, {"name": "Campaign_39", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 11, "boss": null, "bossLevel": null, "base": "CampaignDrone", "numBases": 1, "baseLevel": 11, "tower": "CampaignCannon", "numTowers": 0, "towerLevel": 11, "requiredStars": 17, "id": 63}, {"name": "Campaign_40", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 15, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 21, "id": 64}, {"name": "Campaign_41", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 16, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 22, "id": 65}, {"name": "Campaign_42", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 17, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 23, "id": 66}, {"name": "Campaign_43", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 18, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 24, "id": 67}, {"name": "Campaign_44", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 19, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 25, "id": 68}, {"name": "Campaign_45", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 20, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 26, "id": 69}, {"name": "Campaign_46", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 20, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 27, "id": 70}, {"name": "Campaign_47", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 20, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 27, "id": 71}, {"name": "Campaign_48", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 20, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 27, "id": 72}, {"name": "Campaign_49", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 20, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 27, "id": 73}, {"name": "Campaign_50", "tID": null, "location": "Planet7", "allowedHeroes": "GenericSoldier", "reward": "Diamonds:3:", "levelGenerationSeed": null, "map": "Defense1", "enemies": "CampaignAlienRanged,CampaignAlienMelee", "enemyLevel": 20, "boss": null, "bossLevel": null, "base": "CampaignBase", "numBases": 1, "baseLevel": 15, "tower": "CampaignCannon", "numTowers": 4, "towerLevel": 15, "requiredStars": 27, "id": 74}], "cards": [{"name": "ShotgunGirl_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "ShotgunGirl", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 101, "dontUpgradeStat": null, "id": 23}, {"name": "ShotgunGirl_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "ShotgunGirl", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 24, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "ShotgunGirl_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "ShotgunGirl", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "ShotgunGirlWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BUCKSHOT", "powerNumberTID": "Damage per shell", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 25, "rawTID": "LONG_RANGE_SHOTGUN", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHELL"}, {"name": "ShotgunGirl_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "ShotgunGirl", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "ShotgunGirlUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SUPER SHELL", "powerNumberTID": "Damage per shell", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 26, "rawTID": "MEGA_BLASH_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHELL"}, {"name": "Gunslinger_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Gunslinger", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 103, "dontUpgradeStat": null, "id": 27}, {"name": "Gunslinger_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Gunslinger", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 28, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Gunslinger_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Gunslinger", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "GunslingerWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SIX-SHOOTERS", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 29, "rawTID": "RAPID_FIRE", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "Gunslinger_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Gunslinger", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "GunslingerUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BULLET STORM", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 30, "rawTID": "RAPID_FIRE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "BullDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "BullDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 104, "dontUpgradeStat": null, "id": 31}, {"name": "BullDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "BullDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 32, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "BullDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "BullDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BullDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "DOUBLE-BARREL", "powerNumberTID": "Damage per shell", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 33, "rawTID": "SHOTGUN_BLAST", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHELL"}, {"name": "BullDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "BullDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BullDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BULLDOZER", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 34, "rawTID": "CHARGE", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "RocketGirl_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "RocketGirl", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 106, "dontUpgradeStat": null, "id": 35}, {"name": "RocketGirl_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "RocketGirl", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 36, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "RocketGirl_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "RocketGirl", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "RocketGirlWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "ROCKIN' ROCKET", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 37, "rawTID": "FIREWORKS_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "RocketGirl_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "RocketGirl", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "RocketGirlUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "ROCKET RAIN", "powerNumberTID": "Damage per rocket", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 38, "rawTID": "FIREWORKS_ULTI", "rawPowerNumberTID": "STAT_MISSILE_DAMAGE"}, {"name": "TrickshotDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "TrickshotDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "super_rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 301, "dontUpgradeStat": null, "id": 39}, {"name": "TrickshotDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "TrickshotDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 40, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "TrickshotDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "TrickshotDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "TrickshotDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BOUNCY BULLETS", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 41, "rawTID": "TRICKSHOT_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "TrickshotDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "TrickshotDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "TrickshotDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TRICK SHOT", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 42, "rawTID": "TRICKSHOT_DUDE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "Cactus_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Cactus", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "legendary", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 601, "dontUpgradeStat": null, "id": 43}, {"name": "Cactus_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Cactus", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 44, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Cactus_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Cactus", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "CactusWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "NEEDLE GRENADE", "powerNumberTID": "Damage per spike", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 45, "rawTID": "CACTUS_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SPIKE"}, {"name": "Cactus_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Cactus", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "CactusUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "STICK AROUND!", "powerNumberTID": "Damage per second", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 46, "rawTID": "CACTUS_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SECOND"}, {"name": "Barkeep_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Barkeep", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 202, "dontUpgradeStat": null, "id": 47}, {"name": "Barkeep_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Barkeep", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 48, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Barkeep_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Barkeep", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BarkeepWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "UNDILUTED", "powerNumberTID": "Damage per second", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 49, "rawTID": "BARKEEP_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SECOND"}, {"name": "Barkeep_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Barkeep", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BarkeepUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "LAST CALL", "powerNumberTID": "Damage per second", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 50, "rawTID": "BARKEEP_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SECOND_EACH"}, {"name": "Mechanic_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Mechanic", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 105, "dontUpgradeStat": null, "id": 51}, {"name": "Mechanic_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Mechanic", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 52, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Mechanic_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Mechanic", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "MechanicWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SHOCK RIFLE", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 53, "rawTID": "MECHANIC_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Mechanic_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Mechanic", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "MechanicUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SCRAPPY!", "powerNumberTID": "Turret Damage", "powerNumber2TID": "Turret Health", "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 54, "rawTID": "MECHANIC_ULTI", "rawPowerNumberTID": "TURRET_DAMAGE", "rawPowerNumber2TID": "TURRET_HEALTH"}, {"name": "Shaman_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Shaman", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 102, "dontUpgradeStat": null, "id": 55}, {"name": "Shaman_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Shaman", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 56, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Shaman_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Shaman", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "ShamanWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "RUPTURE", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 57, "rawTID": "SHAMAN_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Shaman_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Shaman", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "ShamanUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "OVERBEARING", "powerNumberTID": "Bear Damage", "powerNumber2TID": "Bear Health", "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 58, "rawTID": "SHAMAN_ULTI", "rawPowerNumberTID": "BEAR_DAMAGE", "rawPowerNumber2TID": "BEAR_HEALTH"}, {"name": "TntDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "TntDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 107, "dontUpgradeStat": null, "id": 59}, {"name": "TntDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "TntDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 60, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "TntDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "TntDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "TntDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SHORT FUSE", "powerNumberTID": "Damage per dynamite", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 61, "rawTID": "MORTAR", "rawPowerNumberTID": "STAT_PER_DYNAMITE"}, {"name": "TntDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "TntDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "TntDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BIG BARREL O' BOOM", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 62, "rawTID": "MORTAR_ULTI", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Luchador_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Luchador", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 201, "dontUpgradeStat": null, "id": 63}, {"name": "Luchador_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Luchador", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 64, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Luchador_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Luchador", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "LuchadorWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "FISTS OF FURY", "powerNumberTID": "Damage per punch", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 65, "rawTID": "LUCHADOR_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_STRIKE"}, {"name": "Luchador_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Luchador", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "LuchadorUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "FLYING ELBOW DROP", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 66, "rawTID": "LUCHADOR_ULTI", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Undertaker_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Undertaker", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "mega_epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 501, "dontUpgradeStat": null, "id": 67}, {"name": "Undertaker_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Undertaker", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 68, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Undertaker_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Undertaker", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "UndertakerWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SHOVEL SWING", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 69, "rawTID": "UNDERTAKER_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Undertaker_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Undertaker", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "UndertakerUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "LIFE BLOOD", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 70, "rawTID": "UNDERTAKER_ULTI", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Crow_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Crow", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "legendary", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 602, "dontUpgradeStat": null, "id": 71}, {"name": "Crow_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Crow", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 72, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Crow_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Crow", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "CrowWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SWITCHBLADE", "powerNumberTID": "Damage per dagger", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 73, "rawTID": "CROW_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_DAGGER"}, {"name": "Crow_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Crow", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "CrowUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SWOOP", "powerNumberTID": "Damage per dagger", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 74, "rawTID": "CROW_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_DAGGER"}, {"name": "DeadMariachi_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "DeadMariachi", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 203, "dontUpgradeStat": null, "id": 75}, {"name": "DeadMariachi_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "DeadMariachi", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 76, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "DeadMariachi_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "DeadMariachi", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "DeadMariachiWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "POWER CHORD", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 77, "rawTID": "DEAD_MARIACHI_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "DeadMariachi_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "DeadMariachi", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "DeadMariachiUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "ENCORE", "powerNumberTID": "Heal", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 78, "rawTID": "DEAD_MARIACHI_ULTI", "rawPowerNumberTID": "STAT_HEAL"}, {"name": "BowDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "BowDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 108, "dontUpgradeStat": null, "id": 79}, {"name": "BowDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "BowDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 80, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "BowDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "BowDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BowDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "EAGLE-EYED", "powerNumberTID": "Damage per arrow", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 81, "rawTID": "BOW_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_ARROW"}, {"name": "BowDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "BowDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BowDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "CATCH A FOX", "powerNumberTID": "Damage per trap", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 82, "rawTID": "BOW_DUDE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_MINE"}, {"name": "Sniper_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Sniper", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 401, "dontUpgradeStat": null, "id": 83}, {"name": "Sniper_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Sniper", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 84, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Sniper_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Sniper", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "SniperWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "GUNBRELLA", "powerNumberTID": "Damage at max range", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 85, "rawTID": "SNIPER_WEAPON", "rawPowerNumberTID": "STAT_MAX_DAMAGE"}, {"name": "Sniper_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Sniper", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "SniperUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "POPPIN'", "powerNumberTID": "Damage per grenade", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 86, "rawTID": "SNIPER_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_BOMB"}, {"name": "MinigunDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "MinigunDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 402, "dontUpgradeStat": null, "id": 87}, {"name": "MinigunDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "MinigunDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 88, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "MinigunDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "MinigunDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "MinigunDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SCRAPSTORM", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 89, "rawTID": "MINIGUN_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "MinigunDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "MinigunDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "MinigunDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "MAMA'S KISS", "powerNumberTID": "Healing per second", "powerNumber2TID": "Turret Health", "powerIcon1ExportName": "genicon_heal", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 90, "rawTID": "MINIGUN_DUDE_ULTI", "rawPowerNumberTID": "STAT_HEALING_PER_SEC", "rawPowerNumber2TID": "TURRET_HEALTH"}, {"name": "BlackHole_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "BlackHole", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "mega_epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 502, "dontUpgradeStat": null, "id": 91}, {"name": "BlackHole_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "BlackHole", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 92, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "BlackHole_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "BlackHole", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BlackHoleWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TRIPLE TAROT", "powerNumberTID": "Damage per card", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 93, "rawTID": "BLACK_HOLE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_CARD"}, {"name": "BlackHole_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "BlackHole", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BlackHoleUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "GRAVITY", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 94, "rawTID": "BLACK_HOLE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "BarrelBot_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "BarrelBot", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "super_rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 302, "dontUpgradeStat": null, "id": 95}, {"name": "BarrelBot_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "BarrelBot", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 96, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "BarrelBot_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "BarrelBot", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BarrelBotWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "DOUBLE DEUCE", "powerNumberTID": "Damage per shell", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 97, "rawTID": "BARREL_BOT_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHELL"}, {"name": "BarrelBot_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "BarrelBot", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BarrelBotUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BARREL ROLL", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 98, "rawTID": "BARREL_BOT_ULTI", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "ShotgunGirl_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ShotgunGirl", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "freeze", "skill": null, "value": 60, "value2": 350, "value3": null, "rarity": "common", "tID": "Shell Shock", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 99, "rawTID": "SPEC_ABI_FREEZE"}, {"name": "Gunslinger_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Gunslinger", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "speed", "skill": null, "value": 75, "value2": null, "value3": null, "rarity": "common", "tID": "Slick Boots", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 100, "rawTID": "SPEC_ABI_SPEED"}, {"name": "BullDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BullDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "berserker", "skill": null, "value": 40, "value2": null, "value3": null, "rarity": "common", "tID": "Berserker", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 101, "rawTID": "SPEC_ABI_BERSERKER"}, {"name": "RocketGirl_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "RocketGirl", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "main_attack_burn", "skill": null, "value": 600, "value2": null, "value3": null, "rarity": "common", "tID": "Incendiary", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 102, "rawTID": "SPEC_BURN"}, {"name": "TrickshotDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "TrickshotDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "bounced_bullets_stronger", "skill": null, "value": 100, "value2": null, "value3": null, "rarity": "common", "tID": "Super Bouncy", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 103, "rawTID": "SPEC_BOUNCED_BULLETS_STRONGER"}, {"name": "Cactus_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Cactus", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "cactus_heal", "skill": null, "value": 800, "value2": null, "value3": null, "rarity": "common", "tID": "Fertilize", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 104, "rawTID": "SPEC_ABI_CACTUS_HEAL"}, {"name": "Barkeep_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Barkeep", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "heal_self_main_attack", "skill": null, "value": 400, "value2": null, "value3": null, "rarity": "common", "tID": "Medical Use", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 105, "rawTID": "SPEC_ABI_HEAL_SELF_MAIN_ATTACK"}, {"name": "Mechanic_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Mechanic", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "repair_turret", "skill": null, "value": 800, "value2": null, "value3": null, "rarity": "common", "tID": "Energize", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 106, "rawTID": "SPEC_ABI_REPAIR_TURRET"}, {"name": "Shaman_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Shaman", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "pet_lifesteal", "skill": null, "value": 500, "value2": 500, "value3": null, "rarity": "common", "tID": "Bear With Me", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 107, "rawTID": "SPEC_ABI_PET_LIFESTEAL"}, {"name": "TntDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "TntDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "pushback_self", "skill": null, "value": 972, "value2": null, "value3": null, "rarity": "common", "tID": "Dyna-Jump", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 108, "rawTID": "SPEC_ABI_PUSHBACK_SELF"}, {"name": "Luchador_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Luchador", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "fire_dot_ulti", "skill": null, "value": 1200, "value2": null, "value3": null, "rarity": "common", "tID": "El Fuego", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 109, "rawTID": "SPEC_ABI_FIRE_DOT_ULTI"}, {"name": "Undertaker_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Undertaker", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "steal_souls", "skill": null, "value": 1800, "value2": null, "value3": null, "rarity": "common", "tID": "Creepy Harvest", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 110, "rawTID": "SPEC_ABI_STEAL_SOULS"}, {"name": "Crow_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Crow", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "cripple", "skill": null, "value": 20, "value2": null, "value3": null, "rarity": "common", "tID": "Extra Toxic", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 111, "rawTID": "SPEC_CRIPPLE"}, {"name": "DeadMariachi_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "DeadMariachi", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "heal_main_attack", "skill": null, "value": 800, "value2": null, "value3": null, "rarity": "common", "tID": "Da Capo!", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 112, "rawTID": "SPEC_HEAL_MAIN_ATTACK"}, {"name": "BowDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BowDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "spot", "skill": null, "value": 5, "value2": null, "value3": null, "rarity": "common", "tID": "Circling Eagle", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 113, "rawTID": "SPEC_ABI_SPOT"}, {"name": "Sniper_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Sniper", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "ambush", "skill": null, "value": 800, "value2": null, "value3": null, "rarity": "common", "tID": "Ambush", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 114, "rawTID": "SPEC_ABI_AMBUSH"}, {"name": "MinigunDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "MinigunDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "heal_others_main_attack", "skill": null, "value": 40, "value2": null, "value3": null, "rarity": "common", "tID": "Mama's Hug", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 115, "rawTID": "SPEC_ABI_HEAL_OTHERS_MAIN_ATTACK"}, {"name": "BlackHole_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BlackHole", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "black_hole_monster", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Black Portal", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 116, "rawTID": "SPEC_ABI_BLACK_HOLE_MONSTER"}, {"name": "BarrelBot_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BarrelBot", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "barrel_defense", "skill": null, "value": 60, "value2": 30, "value3": null, "rarity": "common", "tID": "Steel Hoops", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 117, "rawTID": "SPEC_ABI_BARREL_DEFENSE"}, {"name": "ArtilleryDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "ArtilleryDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "super_rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 303, "dontUpgradeStat": null, "id": 118}, {"name": "ArtilleryDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "ArtilleryDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 119, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "ArtilleryDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "ArtilleryDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "ArtilleryDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "PLUNDERBUSS", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 120, "rawTID": "ARTILLERY_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "ArtilleryDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "ArtilleryDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "ArtilleryDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "OLD LOBBER", "powerNumberTID": "Cannon Damage", "powerNumber2TID": "Cannon Health", "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 121, "rawTID": "ARTILLERY_DUDE_ULTI", "rawPowerNumberTID": "CANNON_DAMAGE", "rawPowerNumber2TID": "CANNON_HEALTH"}, {"name": "ArtilleryDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ArtilleryDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "self_destruct", "skill": null, "value": 1680, "value2": null, "value3": null, "rarity": "common", "tID": "Last Blast", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 122, "rawTID": "SPEC_ABI_SELF_DESTRUCT"}, {"name": "HammerDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "HammerDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 403, "dontUpgradeStat": null, "id": 123}, {"name": "HammerDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "HammerDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 124, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "HammerDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "HammerDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "HammerDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HAMMER HIT", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 125, "rawTID": "HAMMER_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "HammerDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "HammerDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "HammerDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "STUNNING BLOW", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 126, "rawTID": "HAMMER_DUDE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "HammerDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "HammerDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "steal_souls2", "skill": null, "value": 50, "value2": 12, "value3": null, "rarity": "common", "tID": "Power Grab", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 127, "rawTID": "SPEC_ABI_STEAL_SOULS2"}, {"name": "HookDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "HookDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "mega_epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 503, "dontUpgradeStat": null, "id": 128}, {"name": "HookDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "HookDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 129, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "HookDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "HookDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "HookWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SMOKE BLAST", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 130, "rawTID": "HOOK_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "HookDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "HookDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "HookUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "MAGIC HAND", "powerNumberTID": "MAGIC HAND", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 131, "rawTID": "HOOK_ULTI", "rawPowerNumberTID": "HOOK_ULTI"}, {"name": "HookDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "HookDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "aoe_regenerate", "skill": null, "value": 400, "value2": null, "value3": null, "rarity": "common", "tID": "Magic Puffs", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 132, "rawTID": "SPEC_ABI_HOOK"}, {"name": "ClusterBombDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "ClusterBombDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 109, "dontUpgradeStat": null, "id": 133}, {"name": "ClusterBombDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "ClusterBombDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 134, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "ClusterBombDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "ClusterBombDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "ClusterBombDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "MINIMINES", "powerNumberTID": "Damage per mine", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 135, "rawTID": "CLUSTER_BOMB_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_PROXIMITY_MINE"}, {"name": "ClusterBombDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "ClusterBombDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "ClusterBombDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEADFIRST", "powerNumberTID": "Damage", "powerNumber2TID": "Head Health", "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 136, "rawTID": "CLUSTER_BOMB_DUDE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE", "rawPowerNumber2TID": "HEAD_HEALTH"}, {"name": "ClusterBombDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ClusterBombDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "repair_self", "skill": null, "value": 40, "value2": null, "value3": null, "rarity": "common", "tID": "Well Oiled", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 137, "rawTID": "SPEC_ABI_REPAIR_SELF"}, {"name": "Ninja_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Ninja", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "legendary", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 603, "dontUpgradeStat": null, "id": 138}, {"name": "Ninja_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Ninja", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 139, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Ninja_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Ninja", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "NinjaWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SPINNER BLADES", "powerNumberTID": "Damage per blade at close range", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 140, "rawTID": "NINJA_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHURIKEN"}, {"name": "Ninja_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Ninja", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "NinjaUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SMOKE BOMB", "powerNumberTID": "Smoke Bomb", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 141, "rawTID": "NINJA_ULTI", "rawPowerNumberTID": "STAT_INVISIBLE"}, {"name": "Ninja_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Ninja", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "speed_invisible", "skill": null, "value": 200, "value2": null, "value3": null, "rarity": "common", "tID": "Smoke Trails", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 142, "rawTID": "SPEC_ABI_SPEED_INVISIBLE"}, {"name": "Rosa_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Rosa", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 204, "dontUpgradeStat": null, "id": 143}, {"name": "Rosa_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Rosa", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 144, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Rosa_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Rosa", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "RosaWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Hands of Stone", "powerNumberTID": "Damage per punch", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 145, "rawTID": "ROSA_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_STRIKE"}, {"name": "Rosa_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Rosa", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "RosaUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Strong Stuff", "powerNumberTID": "Shield", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 146, "rawTID": "ROSA_ULTI", "rawPowerNumberTID": "STAT_SHIELD"}, {"name": "Rosa_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Rosa", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "heal_forest", "skill": null, "value": 200, "value2": null, "value3": null, "rarity": "common", "tID": "Plant Life", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 147, "rawTID": "SPEC_ABI_HEAL_FOREST"}, {"name": "Whirlwind_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Whirlwind", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "super_rare", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 304, "dontUpgradeStat": null, "id": 148}, {"name": "Whirlwind_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Whirlwind", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 149, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Whirlwind_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Whirlwind", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "WhirlwindWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "PICKAXE", "powerNumberTID": "Damage on hit", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 150, "rawTID": "WHIRLWIND_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_EACH_WAY"}, {"name": "Whirlwind_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Whirlwind", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "WhirlwindUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TAILSPIN", "powerNumberTID": "Damage per swing", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 151, "rawTID": "WHIRLWIND_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SWING"}, {"name": "Whirlwind_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Whirlwind", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "projectile_speed", "skill": null, "value": 360, "value2": null, "value3": null, "rarity": "common", "tID": "Power Throw", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 152, "rawTID": "SPEC_ABI_PROJECTILE_SPEED"}, {"name": "Baseball_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Baseball", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 404, "dontUpgradeStat": null, "id": 153}, {"name": "Baseball_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Baseball", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 154, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Baseball_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Baseball", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BaseballWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "THREE STRIKES", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 155, "rawTID": "BASEBALL_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Baseball_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Baseball", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BaseballUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "SPITBALL", "powerNumberTID": "Damage on hit", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 156, "rawTID": "BASEBALL_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_EACH_WAY"}, {"name": "Baseball_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Baseball", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "speed_full_ammo", "skill": null, "value": 100, "value2": null, "value3": null, "rarity": "common", "tID": "Home Run", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 157, "rawTID": "SPEC_ABI_SPED_FULL_AMMO"}, {"name": "ShotgunGirl_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ShotgunGirl", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "medikit", "skill": null, "value": 40, "value2": 1800, "value3": 20000, "rarity": "common", "tID": "Band-Aid", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 158, "rawTID": "SPEC_ABI_MEDIKIT"}, {"name": "Shaman_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Shaman", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "pet_attack_speed", "skill": null, "value": 60, "value2": null, "value3": null, "rarity": "common", "tID": "Hyper Bear", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 159, "rawTID": "SPEC_ABI_PET_ATTACK_SPEED"}, {"name": "BullDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BullDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "low_health_shield", "skill": null, "value": 40, "value2": 30, "value3": null, "rarity": "common", "tID": "Tough Guy", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 160, "rawTID": "SPEC_ABI_LOW_HEALTH_SHIELD"}, {"name": "Gunslinger_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Gunslinger", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "attack_range", "skill": null, "value": 3, "value2": null, "value3": null, "rarity": "common", "tID": "Magnum Special", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 161, "rawTID": "SPEC_ABI_ATTACK_RANGE"}, {"name": "MinigunDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "MinigunDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "aoe_dot", "skill": null, "value": 500, "value2": null, "value3": null, "rarity": "common", "tID": "Mama's Squeeze", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 162, "rawTID": "SPEC_ABI_TURRET_AOE"}, {"name": "Luchador_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Luchador", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "speed_after_ulti", "skill": null, "value": 200, "value2": 80, "value3": null, "rarity": "common", "tID": "Meteor Rush", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 163, "rawTID": "SPEC_ABI_SPEED_AFTER_ULTI"}, {"name": "Ninja_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Ninja", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "heal_invisible", "skill": null, "value": 1000, "value2": null, "value3": null, "rarity": "common", "tID": "Invisiheal", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 164, "rawTID": "SPEC_ABI_HOT_INVISIBLE"}, {"name": "ArtilleryDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ArtilleryDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "ulti_burn", "skill": null, "value": 400, "value2": null, "value3": null, "rarity": "common", "tID": "Balls of Fire", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 165, "rawTID": "SPEC_ULTI_BURN"}, {"name": "Crow_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Crow", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "prey_on_the_weak", "skill": null, "value": 50, "value2": 120, "value3": null, "rarity": "common", "tID": "Carrion Crow", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 166, "rawTID": "SPEC_ABI_PREY_ON_THE_WEAK"}, {"name": "DeadMariachi_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "DeadMariachi", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "damage_super", "skill": null, "value": 800, "value2": null, "value3": null, "rarity": "common", "tID": "Screeching Solo", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 167, "rawTID": "SPEC_DAMAGE_SUPER"}, {"name": "Whirlwind_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Whirlwind", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "ulti_defense", "skill": null, "value": 60, "value2": 40, "value3": null, "rarity": "common", "tID": "Protective Pirouette", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 168, "rawTID": "SPEC_ABI_WHIRLWIND_SHIELD"}, {"name": "Baseball_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Baseball", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "shield_homerun", "skill": null, "value": 30, "value2": null, "value3": null, "rarity": "common", "tID": "Batting Stance", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 169, "rawTID": "SPEC_ABI_SHIELD_HOMERUN"}, {"name": "Rosa_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Rosa", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "damage_buff_super", "skill": null, "value": 220, "value2": null, "value3": null, "rarity": "common", "tID": "Thorny Gloves", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 170, "rawTID": "SPEC_ABI_DAMAGE_BUFF_SUPER"}, {"name": "BowDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BowDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "stun_trap", "skill": null, "value": 40, "value2": null, "value3": null, "rarity": "common", "tID": "Snare a Bear", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 171, "rawTID": "SPEC_ABI_STUN_TRAP"}, {"name": "Mechanic_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Mechanic", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "turret_electricity", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Shocky", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 172, "rawTID": "SPEC_ABI_TURRET_ELECTRICITY"}, {"name": "RocketGirl_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "RocketGirl", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "extra_bullet", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Rocket No. Four", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 173, "rawTID": "SPEC_EXTRA_BULLET"}, {"name": "Cactus_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Cactus", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "curve_ball", "skill": null, "value": 50, "value2": 100, "value3": null, "rarity": "common", "tID": "Curveball", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 174, "rawTID": "SPEC_ABI_CURVEBALL"}, {"name": "Sniper_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Sniper", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "reload_on_hit", "skill": null, "value": 30, "value2": null, "value3": null, "rarity": "common", "tID": "Snappy Sniping", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 175, "rawTID": "SPEC_ABI_RELOAD_ON_HIT"}, {"name": "HammerDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "HammerDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "gain_health", "skill": null, "value": 1100, "value2": null, "value3": null, "rarity": "common", "tID": "Sponge", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 176, "rawTID": "SPEC_ABI_GAIN_HEALTH"}, {"name": "Undertaker_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Undertaker", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "longer_dash", "skill": null, "value": 6, "value2": null, "value3": 3500, "rarity": "common", "tID": "Coiled Snake", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 177, "rawTID": "SPEC_ABI_LONGER_DASH"}, {"name": "TntDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "TntDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "gain_damage_super", "skill": null, "value": 1000, "value2": null, "value3": null, "rarity": "common", "tID": "Demolition", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 178, "rawTID": "SPEC_ABI_SUPER_DAMAGE"}, {"name": "TrickshotDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "TrickshotDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "speed_low_health", "skill": null, "value": 250, "value2": 40, "value3": null, "rarity": "common", "tID": "Robo Retreat", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 179, "rawTID": "SPEC_ABI_SPEED_LOW_HEALTH"}, {"name": "BarrelBot_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BarrelBot", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "super_reload", "skill": null, "value": 100, "value2": null, "value3": null, "rarity": "common", "tID": "Rolling Reload", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 180, "rawTID": "SPEC_ABI_SUPER_RELOAD"}, {"name": "Barkeep_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Barkeep", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "damage_main_attack", "skill": null, "value": 140, "value2": null, "value3": null, "rarity": "common", "tID": "Extra Noxious", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 181, "rawTID": "SPEC_ABI_DAMAGE_MAIN_ATTACK"}, {"name": "HookDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "HookDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "damage_ulti", "skill": null, "value": 300, "value2": null, "value3": null, "rarity": "common", "tID": "Spirit Slap", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 182, "rawTID": "SPEC_ABI_DAMAGE_ULTI"}, {"name": "BlackHole_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BlackHole", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "black_hole_healer", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Healing Shade", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 183, "rawTID": "SPEC_ABI_BLACK_HOLE_HEALER"}, {"name": "ClusterBombDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ClusterBombDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "recharge", "skill": null, "value": 220, "value2": null, "value3": null, "rarity": "common", "tID": "Automa-Tick Reload", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 184, "rawTID": "SPEC_ABI_RECHARGE"}, {"name": "ShotgunGirl_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "ShotgunGirl", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "super_range", "skill": null, "value": 7, "value2": 40, "value3": null, "rarity": "common", "tID": "Buckshot Barrage", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 185, "rawTID": "SPEC_SUPER_RANGE"}, {"name": "BullDude_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BullDude", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "immune_to_cc", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Sandstone", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 186, "rawTID": "SPEC_ABI_IMMUNE_TO_CC"}, {"name": "DeadMariachi_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "DeadMariachi", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "cure_debuffs", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Musical Cleanse", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 187, "rawTID": "SPEC_ABI_CURE_DEBUFFS"}, {"name": "Baseball_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Baseball", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "freeze", "skill": null, "value": 60, "value2": 350, "value3": null, "rarity": "common", "tID": "Sticky Bubble Gum", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 188, "rawTID": "SPEC_ABI_SUPER_SLOW"}, {"name": "Whirlwind_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Whirlwind", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "super_destroy_walls", "skill": null, "value": 600, "value2": null, "value3": null, "rarity": "common", "tID": "Smashing Spin", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 189, "rawTID": "SPEC_ABI_SUPER_DESTROY_WALLS"}, {"name": "Undertaker_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Undertaker", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "barrel_defense", "skill": null, "value": 15, "value2": 30, "value3": null, "rarity": "common", "tID": "Just Too Fast", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 190, "rawTID": "SPEC_ABI_DASH_SHIELD"}, {"name": "Arcade_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Arcade", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "larger_area_ulti", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Boosted Booster", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 191, "rawTID": "SPEC_ABI_LARGER_AREA_ULTI"}, {"name": "Luchador_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Luchador", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "grow_from_damage", "skill": null, "value": 500, "value2": 2880, "value3": null, "rarity": "common", "tID": "Grow Stronger", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 192, "rawTID": "SPEC_ABI_GROW_FROM_DAMAGE"}, {"name": "Gunslinger_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Gunslinger", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "armor", "skill": null, "value": 2000, "value2": null, "value3": null, "rarity": "common", "tID": "Bullet proof vest", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 193, "rawTID": "SPEC_ABI_ARMOR"}, {"name": "Mechanic_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Mechanic", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "walking_turret", "skill": null, "value": 600, "value2": null, "value3": null, "rarity": "common", "tID": "Walk the Dog", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 194, "rawTID": "SPEC_ABI_WALKING_TURRET"}, {"name": "RocketGirl_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "RocketGirl", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "shield_ulti", "skill": null, "value": 30, "value2": null, "value3": null, "rarity": "common", "tID": "Shield", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 195, "rawTID": "SPEC_SHIELD_ULTI"}, {"name": "TntDude_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "TntDude", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "pet", "skill": null, "value": 1, "value2": null, "value3": null, "rarity": "common", "tID": "Release the bird", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 196, "rawTID": "SPEC_ABI_PET"}, {"name": "Sniper_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Sniper", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "spot_from_air", "skill": null, "value": 15, "value2": null, "value3": null, "rarity": "common", "tID": "Spot", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 197, "rawTID": "SPEC_SPOT_FROM_AIR"}, {"name": "Ninja_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Ninja", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "damage_ulti", "skill": null, "value": 140, "value2": null, "value3": null, "rarity": "common", "tID": "Spirit Slap", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 198, "rawTID": "SPEC_ABI_DAMAGE_ULTI"}, {"name": "Cactus_unique_3", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Cactus", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "spikes_low_health", "skill": null, "value": 40, "value2": 672, "value3": 20, "rarity": "common", "tID": "Spiky Outbreak", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 199, "rawTID": "SPEC_ABI_SPIKES_LOW_HEALTH"}, {"name": "Arcade_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Arcade", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 110, "dontUpgradeStat": null, "id": 200}, {"name": "Arcade_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Arcade", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 201, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Arcade_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Arcade", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "ArcadeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Blaster Beams", "powerNumberTID": "Damage per Beam", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 202, "rawTID": "ARCADE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_BEAM"}, {"name": "Arcade_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Arcade", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "ArcadeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Damage Booster", "powerNumberTID": "Damage Boost", "powerNumber2TID": "Damage Booster Health", "powerIcon1ExportName": "genicon_heal", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": true, "id": 203, "rawTID": "ARCADE_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_BOOST", "rawPowerNumber2TID": "DAMAGE_BOOSTER_HEALTH"}, {"name": "Arcade_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Arcade", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "resurrect", "skill": null, "value": 100, "value2": 20, "value3": 0, "rarity": "common", "tID": "Extra Life", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 204, "rawTID": "SPEC_ABI_RESURRECT"}, {"name": "Sandstorm_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Sandstorm", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "legendary", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 604, "dontUpgradeStat": null, "id": 205}, {"name": "Sandstorm_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Sandstorm", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 206, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Sandstorm_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Sandstorm", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "SandstormWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Pebble Blast", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 207, "rawTID": "SANDSTORM_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "Sandstorm_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Sandstorm", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "SandstormUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Sandstorm", "powerNumberTID": "Sandstorm", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 208, "rawTID": "SANDSTORM_ULTI", "rawPowerNumberTID": "STAT_SANDSTORM"}, {"name": "Sandstorm_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Sandstorm", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "aoe_dot", "skill": null, "value": 120, "value2": null, "value3": null, "rarity": "common", "tID": "Rude Sands", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 209, "rawTID": "SPEC_ABI_SANDSTORM_DOT"}, {"name": "Sandstorm_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Sandstorm", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "aoe_dot", "skill": null, "value": -250, "value2": null, "value3": null, "rarity": "common", "tID": "Healing Winds", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 210, "rawTID": "SPEC_ABI_SANDSTORM_HOT"}, {"name": "BeeSniper_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "BeeSniper", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 405, "dontUpgradeStat": null, "id": 211}, {"name": "BeeSniper_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "BeeSniper", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 212, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "BeeSniper_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "BeeSniper", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "BeeSniperWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "BIG STING", "powerNumberTID": "Damage", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 213, "rawTID": "BEE_SNIPER_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE"}, {"name": "BeeSniper_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "BeeSniper", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "BeeSniperUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "IRON HIVE", "powerNumberTID": "Damage per drone", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 214, "rawTID": "BEE_SNIPER_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_DRONE"}, {"name": "BeeSniper_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BeeSniper", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "instant_charged_shot", "skill": null, "value": 2, "value2": null, "value3": null, "rarity": "common", "tID": "Insta Beeload", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 215, "rawTID": "SPEC_ABI_BEE_SNIPER_1"}, {"name": "BeeSniper_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "BeeSniper", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "ignore_lethal_damage", "skill": null, "value": 20, "value2": 100, "value3": null, "rarity": "common", "tID": "Honey Coat", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 216, "rawTID": "SPEC_ABI_BEE_SNIPER_2"}, {"name": "Mummy_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Mummy", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 111, "dontUpgradeStat": null, "id": 217}, {"name": "Mummy_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Mummy", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 218, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Mummy_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Mummy", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "MummyWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Spray", "powerNumberTID": "Damage per half a second", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 219, "rawTID": "MUMMY_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_HALF_SECOND"}, {"name": "Mummy_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Mummy", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "MummyUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "Caustic Charisma", "powerNumberTID": "Damage per second", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 220, "rawTID": "MUMMY_ULTI", "rawPowerNumberTID": "STAT_DAMAGE_PER_SECOND"}, {"name": "Mummy_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Mummy", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "increase_dmg_consecutive_dot", "skill": null, "value": 20, "value2": null, "value3": null, "rarity": "common", "tID": "Bad Karma", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 221, "rawTID": "SPEC_ABI_TICK_DMG_GROW"}, {"name": "Mummy_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Mummy", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "ulti_heals_self", "skill": null, "value": 300, "value2": null, "value3": null, "rarity": "common", "tID": "Hype", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 222, "rawTID": "SPEC_ABI_HEAL_SUPER_DMG"}, {"name": "SpawnerDude_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "SpawnerDude", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 0, "dontUpgradeStat": null, "id": 223}, {"name": "SpawnerDude_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "SpawnerDude", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 224, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "SpawnerDude_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "SpawnerDude", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "SpawnerDudeWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TID_SPAWNER_DUDE_WEAPON", "powerNumberTID": "Damage on hit", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 225, "rawTID": "SPAWNER_DUDE_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_EACH_WAY"}, {"name": "SpawnerDude_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "SpawnerDude", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "SpawnerDudeUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TID_SPAWNER_DUDE_ULTI", "powerNumberTID": "TID_SPAWNER_DUDE_ULTI", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 226, "rawTID": "SPAWNER_DUDE_ULTI", "rawPowerNumberTID": "SPAWNER_DUDE_ULTI"}, {"name": "SpawnerDude_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "SpawnerDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "increase_dmg_consecutive_dot", "skill": null, "value": 20, "value2": null, "value3": null, "rarity": "common", "tID": "Bad Karma", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 227, "rawTID": "SPEC_ABI_TICK_DMG_GROW"}, {"name": "SpawnerDude_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "SpawnerDude", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "increase_dmg_consecutive_dot", "skill": null, "value": 20, "value2": null, "value3": null, "rarity": "common", "tID": "Bad Karma", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 228, "rawTID": "SPEC_ABI_TICK_DMG_GROW"}, {"name": "Speedy_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Speedy", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "mega_epic", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 504, "dontUpgradeStat": null, "id": 229}, {"name": "Speedy_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Speedy", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 230, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Speedy_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Speedy", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "SpeedyWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "FASTER BLASTER", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 231, "rawTID": "SPEEDY_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "Speedy_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Speedy", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "SpeedyUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "LET'S GO!", "powerNumberTID": "Let's Go!", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": "genicon_health", "sortOrder": null, "dontUpgradeStat": null, "id": 232, "rawTID": "SPEEDY_ULTI", "rawPowerNumberTID": "SPEEDY_ULTI_STAT"}, {"name": "Speedy_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Speedy", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "running_charges_ulti", "skill": null, "value": 7, "value2": 1, "value3": null, "rarity": "common", "tID": "Super Charged", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 233, "rawTID": "SPEC_ABI_SPEEDY_1"}, {"name": "Speedy_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Speedy", "lockedForChronos": true, "metaType": 4, "requiresCard": null, "type": "running_charges_weapon", "skill": null, "value": 20, "value2": 1, "value3": null, "rarity": "common", "tID": "Run n' Gun", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 234, "rawTID": "SPEC_ABI_SPEEDY_2"}, {"name": "Homer_unlock", "iconSWF": "sc/ui.sc", "iconExportName": null, "target": "Homer", "lockedForChronos": null, "metaType": 0, "requiresCard": null, "type": "unlock", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": null, "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": null, "powerIcon2ExportName": null, "sortOrder": 0, "dontUpgradeStat": null, "id": 235}, {"name": "Homer_hp", "iconSWF": "sc/ui.sc", "iconExportName": "health_icon", "target": "Homer", "lockedForChronos": null, "metaType": 1, "requiresCard": null, "type": "hp", "skill": null, "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "HEALTH", "powerNumberTID": "Health", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_health", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 236, "rawTID": "ARMOR", "rawPowerNumberTID": "ARMOR_STAT"}, {"name": "Homer_abi", "iconSWF": "sc/ui.sc", "iconExportName": "attack_icon", "target": "Homer", "lockedForChronos": null, "metaType": 2, "requiresCard": null, "type": "skill", "skill": "HomerWeapon", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TID_HOMER_WEAPON", "powerNumberTID": "Damage per bullet", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 237, "rawTID": "HOMER_WEAPON", "rawPowerNumberTID": "STAT_DAMAGE_PER_SHOT"}, {"name": "Homer_ulti", "iconSWF": "sc/ui.sc", "iconExportName": "ulti_icon", "target": "Homer", "lockedForChronos": null, "metaType": 3, "requiresCard": null, "type": "skill", "skill": "HomerUlti", "value": null, "value2": null, "value3": null, "rarity": "common", "tID": "TID_HOMER_ULTI", "powerNumberTID": "TID_HOMER_ULTI_STAT", "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 238, "rawTID": "HOMER_ULTI", "rawPowerNumberTID": "HOMER_ULTI_STAT"}, {"name": "Homer_unique", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Homer", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "increase_dmg_consecutive_dot", "skill": null, "value": 20, "value2": null, "value3": null, "rarity": "common", "tID": "Bad Karma", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 239, "rawTID": "SPEC_ABI_TICK_DMG_GROW"}, {"name": "Homer_unique_2", "iconSWF": "sc/ui.sc", "iconExportName": "icon_eiuD", "target": "Homer", "lockedForChronos": null, "metaType": 4, "requiresCard": null, "type": "increase_dmg_consecutive_dot", "skill": null, "value": 20, "value2": null, "value3": null, "rarity": "common", "tID": "Bad Karma", "powerNumberTID": null, "powerNumber2TID": null, "powerIcon1ExportName": "genicon_damage", "powerIcon2ExportName": null, "sortOrder": null, "dontUpgradeStat": null, "id": 240, "rawTID": "SPEC_ABI_TICK_DMG_GROW"}], "characters": [{"name": "ShotgunGirl", "lockedForChronos": null, "disabled": null, "itemName": "shelly", "weaponSkill": "ShotgunGirlWeapon", "ultimateSkill": "ShotgunGirlUlti", "pet": null, "speed": 720, "hitpoints": 3600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 128, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BanditGirlDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_shotgun_girl", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_shotgun_girl", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_shotgungirl", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Shelly_Kill", "inLeadCelebrationSoundVO": "Shelly_Lead", "startSoundVO": "Shelly_Start", "useUltiSoundVO": "Utilshotgun_Vo", "takeDamageSoundVO": "ShellyTakedamge_Vo", "deathSoundVO": "Shelly_Die", "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 210, "fitToBoxScale": 284, "endScreenScale": 90, "gatchaScreenScale": 175, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -48, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "SHELLY", "heroBundleTID": "Shelly's Stash", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_shelly", "recoilAmount": 1000, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 200, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "ShellyTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 16, "scId": 1600000, "rawTID": "SHOTGUN_GIRL", "rawHeroBundleTID": "HERO_BUNDLE_0"}, {"name": "Gunslinger", "lockedForChronos": null, "disabled": null, "itemName": "colt", "weaponSkill": "GunslingerWeapon", "ultimateSkill": "GunslingerUlti", "pet": null, "speed": 720, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 115, "ultiChargeUltiMul": 90, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "GunSlingerDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_gunslinger", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_gunslinger", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_shotgungirl", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Hotshot_Kill", "inLeadCelebrationSoundVO": "Hotshot_Lead", "startSoundVO": "Hotshot_Start", "useUltiSoundVO": "Hotshot_Ulti", "takeDamageSoundVO": "Hotshot_Takedamge_Vo", "deathSoundVO": "Hotshot_Die", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": 50, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 210, "fitToBoxScale": 284, "endScreenScale": 90, "gatchaScreenScale": 185, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -52, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "COLT", "heroBundleTID": "Colt's Holster", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_colt", "recoilAmount": 300, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 300, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "ColtTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 17, "scId": 1600001, "rawTID": "GUNSLINGER", "rawHeroBundleTID": "HERO_BUNDLE_1"}, {"name": "BullDude", "lockedForChronos": null, "disabled": null, "itemName": "bull", "weaponSkill": "BullDudeWeapon", "ultimateSkill": "BullDudeUlti", "pet": null, "speed": 770, "hitpoints": 4900, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 95, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BullGuyDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_bull_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_bull_dude", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_shotgungirl", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Bull_kill", "inLeadCelebrationSoundVO": "Bull_lead", "startSoundVO": "Bull_start", "useUltiSoundVO": "Bull_ulti", "takeDamageSoundVO": "Bull_takedamage_vo", "deathSoundVO": "Bull_die", "attackSoundVO": null, "attackStartEffectOffset": 40, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 175, "fitToBoxScale": 236, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 220, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -64, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "BULL", "heroBundleTID": "Bull's Bag", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_bull", "recoilAmount": 600, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 40, "footstepIntervalMS": 300, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "BullTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 18, "scId": 1600002, "rawTID": "BULL_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_2"}, {"name": "RocketGirl", "lockedForChronos": null, "disabled": null, "itemName": "brock", "weaponSkill": "RocketGirlWeapon", "ultimateSkill": "RocketGirlUlti", "pet": null, "speed": 720, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 100, "ultiChargeUltiMul": 80, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "RocketGirlDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_rocket_girl", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_rocket_girl", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Brock_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Brock_kill_vo", "inLeadCelebrationSoundVO": "Brock_lead_vo", "startSoundVO": "Brock_start_vo", "useUltiSoundVO": "Brock_ulti_vo", "takeDamageSoundVO": "Brock_hurt_vo", "deathSoundVO": "Brock_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": 90, "gatchaScreenScale": 180, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -52, "flyingHeight": null, "projectileStartZ": 500, "stopMovementAfterMS": null, "waitMS": null, "tID": "BROCK", "heroBundleTID": "Brock's Box", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_brock", "recoilAmount": 300, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 500, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "BrockTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 19, "scId": 1600003, "rawTID": "ROCKET_GIRL", "rawHeroBundleTID": "HERO_BUNDLE_3"}, {"name": "TrickshotDude", "lockedForChronos": null, "disabled": null, "itemName": "ricochet", "weaponSkill": "TrickshotDudeWeapon", "ultimateSkill": "TrickshotDudeUlti", "pet": null, "speed": 720, "hitpoints": 2600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 105, "ultiChargeUltiMul": 105, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "TrickshotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_trickshot_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_trickshot_dude", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_mechanic", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Rick_kill", "inLeadCelebrationSoundVO": "Rick_lead", "startSoundVO": "Rick_start", "useUltiSoundVO": "Rick_ulti", "takeDamageSoundVO": "Rick_hurt", "deathSoundVO": "Rick_die", "attackSoundVO": null, "attackStartEffectOffset": 60, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 200, "fitToBoxScale": 280, "endScreenScale": 90, "gatchaScreenScale": 175, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "RICO", "heroBundleTID": "Rico's Bank", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_rick", "recoilAmount": 300, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 300, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "RicoTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 20, "scId": 1600004, "rawTID": "TRICKSHOT_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_4"}, {"name": "Cactus", "lockedForChronos": null, "disabled": null, "itemName": "spike", "weaponSkill": "CactusWeapon", "ultimateSkill": "CactusUlti", "pet": null, "speed": 720, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 120, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "CactusDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_cactus", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_cactus", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "crow_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 240, "fitToBoxScale": 324, "endScreenScale": 80, "gatchaScreenScale": 210, "homeScreenScale": 290, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -32, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "SPIKE", "heroBundleTID": "Spike's Granary", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_spike", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 40, "footstepIntervalMS": 300, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": true, "useThrowingRightWeaponBoneScaling": true, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 1, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "SpikeTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 21, "scId": 1600005, "rawTID": "CACTUS", "rawHeroBundleTID": "HERO_BUNDLE_5"}, {"name": "Barkeep", "lockedForChronos": null, "disabled": null, "itemName": "barley", "weaponSkill": "BarkeepWeapon", "ultimateSkill": "BarkeepUlti", "pet": null, "speed": 720, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 100, "ultiChargeUltiMul": 70, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BarkeepDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_barkeep", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_barkeep", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Barley_Kill", "inLeadCelebrationSoundVO": "Barley_Lead", "startSoundVO": "Barley_Start", "useUltiSoundVO": "Barley_Ulti", "takeDamageSoundVO": "Barley_Hurt", "deathSoundVO": "Barley_Die", "attackSoundVO": "Barley_throw", "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 290, "endScreenScale": 80, "gatchaScreenScale": 180, "homeScreenScale": 250, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -45, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": "BARLEY", "heroBundleTID": "Barley's Cellar", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_barley", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 300, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": true, "useThrowingRightWeaponBoneScaling": true, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "BarleyTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 22, "scId": 1600006, "rawTID": "BARKEEP", "rawHeroBundleTID": "HERO_BUNDLE_6"}, {"name": "Mechanic", "lockedForChronos": null, "disabled": null, "itemName": "jessie", "weaponSkill": "MechanicWeapon", "ultimateSkill": "MechanicUlti", "pet": null, "speed": 720, "hitpoints": 3200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 83, "ultiChargeUltiMul": 92, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "MechanicDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_mechanic", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_mechanic", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_mechanic", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Jess_kill", "inLeadCelebrationSoundVO": "Jess_lead", "startSoundVO": "Jess_start", "useUltiSoundVO": "Jess_ulti", "takeDamageSoundVO": "Jess_takedamage", "deathSoundVO": "Jess_die", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 300, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 270, "heroScreenXOffset": -800, "heroScreenZOffset": 100, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -47, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": "JESSIE", "heroBundleTID": "Jessie's Junkpile", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_jess", "recoilAmount": 500, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 20, "footstepIntervalMS": 200, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "JessieTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 23, "scId": 1600007, "rawTID": "MECHANIC", "rawHeroBundleTID": "HERO_BUNDLE_7"}, {"name": "Shaman", "lockedForChronos": null, "disabled": null, "itemName": "nita", "weaponSkill": "ShamanWeapon", "ultimateSkill": "ShamanUlti", "pet": null, "speed": 720, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 78, "ultiChargeUltiMul": 90, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "ShamanDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_shaman", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Nita_kill", "inLeadCelebrationSoundVO": "Nita_lead", "startSoundVO": "Nita_start", "useUltiSoundVO": "Nita_ulti", "takeDamageSoundVO": "Nita_hurt", "deathSoundVO": "Nita_death", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 250, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 270, "heroScreenXOffset": -600, "heroScreenZOffset": 1000, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -46, "flyingHeight": null, "projectileStartZ": 100, "stopMovementAfterMS": null, "waitMS": null, "tID": "NITA", "heroBundleTID": "Nita's Nest", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_nita", "recoilAmount": 1000, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 1, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "NitaTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 24, "scId": 1600008, "rawTID": "SHAMAN", "rawHeroBundleTID": "HERO_BUNDLE_8"}, {"name": "TntDude", "lockedForChronos": null, "disabled": null, "itemName": "dynamike", "weaponSkill": "TntDudeWeapon", "ultimateSkill": "TntDudeUlti", "pet": "TntPet", "speed": 720, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 120, "ultiChargeUltiMul": 91, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "TntGuyDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_tnt_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_tnt_dude", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Tnt_guy_kill_vo", "inLeadCelebrationSoundVO": "Tnt_guy_lead_vo", "startSoundVO": "Tnt_guy_start_vo", "useUltiSoundVO": "Tnt_guy_ulti_vo", "takeDamageSoundVO": "Tnt_guy_hurt_vo", "deathSoundVO": "Tnt_guy_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 300, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -50, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": "DYNAMIKE", "heroBundleTID": "Dynamike's Satchel", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_mike", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 200, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": true, "useThrowingRightWeaponBoneScaling": true, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 1, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "MikeTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 25, "scId": 1600009, "rawTID": "TNT_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_9"}, {"name": "Luchador", "lockedForChronos": null, "disabled": null, "itemName": "elprimo", "weaponSkill": "LuchadorWeapon", "ultimateSkill": "LuchadorUlti", "pet": null, "speed": 770, "hitpoints": 5800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 120, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "LuchadorDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_luchador", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": "Gen_hit_melee", "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "El_primo_kill", "inLeadCelebrationSoundVO": "El_primo_lead", "startSoundVO": "El_primo_start", "useUltiSoundVO": "El_primo_ulti", "takeDamageSoundVO": "El_primo_hurt", "deathSoundVO": "El_primo_die", "attackSoundVO": "El_primo_atk", "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": 50, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 170, "fitToBoxScale": 245, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 235, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -56, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "EL PRIMO", "heroBundleTID": "El Primo's Locker", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_primo", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 40, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "PrimpTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 26, "scId": 1600010, "rawTID": "LUCHADOR", "rawHeroBundleTID": "HERO_BUNDLE_10"}, {"name": "Undertaker", "lockedForChronos": null, "disabled": null, "itemName": "mortis", "weaponSkill": "UndertakerWeapon", "ultimateSkill": "UndertakerUlti", "pet": null, "speed": 820, "hitpoints": 3800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 92, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "UndertakerDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_undertaker", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_undertaker", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": "Dummy_effect", "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Mortis_kill", "inLeadCelebrationSoundVO": "Mortis_lead", "startSoundVO": "Mortis_start", "useUltiSoundVO": "Mortis_ulti_vo", "takeDamageSoundVO": "Mortis_hurt", "deathSoundVO": "Mortis_die", "attackSoundVO": "Mortis_atk_vo", "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 130, "heroScreenScale": 200, "fitToBoxScale": 285, "endScreenScale": 95, "gatchaScreenScale": 170, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": "MORTIS", "heroBundleTID": "Coffer Offer", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_mortis", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 350, "attackingWeaponScale": 165, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "MortisTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 27, "scId": 1600011, "rawTID": "UNDERTAKER", "rawHeroBundleTID": "HERO_BUNDLE_11"}, {"name": "Crow", "lockedForChronos": null, "disabled": null, "itemName": "crow", "weaponSkill": "CrowWeapon", "ultimateSkill": "CrowUlti", "pet": null, "speed": 820, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 84, "ultiChargeUltiMul": 75, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "CrowDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_crow", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_crow", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "crow_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Crow_Kill", "inLeadCelebrationSoundVO": "Crow_Lead", "startSoundVO": "Crow_Start", "useUltiSoundVO": "Crow_Ulti", "takeDamageSoundVO": "Crow_Takedamage", "deathSoundVO": "Crow_Die", "attackSoundVO": null, "attackStartEffectOffset": 45, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 230, "fitToBoxScale": 350, "endScreenScale": 90, "gatchaScreenScale": 210, "homeScreenScale": 290, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -41, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "CROW", "heroBundleTID": "Crow's Collection", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_crow", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 20, "footstepIntervalMS": 200, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": true, "useThrowingRightWeaponBoneScaling": true, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 1, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "CrowTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 28, "scId": 1600012, "rawTID": "CROW", "rawHeroBundleTID": "HERO_BUNDLE_12"}, {"name": "DeadMariachi", "lockedForChronos": null, "disabled": null, "itemName": "poco", "weaponSkill": "DeadMariachiWeapon", "ultimateSkill": "DeadMariachiUlti", "pet": null, "speed": 720, "hitpoints": 3800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 130, "ultiChargeUltiMul": 150, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "DeadMariachiDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_dead_mariachi", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_dead_mariachi", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Poco_kill", "inLeadCelebrationSoundVO": "Poco_lead", "startSoundVO": "Poco_start", "useUltiSoundVO": "Poco_ulti_vo", "takeDamageSoundVO": "Poco_hurt", "deathSoundVO": "Poco_die", "attackSoundVO": null, "attackStartEffectOffset": 20, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 200, "fitToBoxScale": 300, "endScreenScale": 85, "gatchaScreenScale": 180, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -56, "flyingHeight": null, "projectileStartZ": 0, "stopMovementAfterMS": null, "waitMS": null, "tID": "POCO", "heroBundleTID": "Poco's Pouch", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_poco", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "PocoTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 29, "scId": 1600013, "rawTID": "DEAD_MARIACHI", "rawHeroBundleTID": "HERO_BUNDLE_13"}, {"name": "BowDude", "lockedForChronos": null, "disabled": null, "itemName": "bo", "weaponSkill": "BowDudeWeapon", "ultimateSkill": "BowDudeUlti", "pet": null, "speed": 720, "hitpoints": 3600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 80, "ultiChargeUltiMul": 95, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BowDudeDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_bow_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_bow_dude", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_bowdude", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Bo_kill", "inLeadCelebrationSoundVO": "Bo_lead", "startSoundVO": "Bo_start", "useUltiSoundVO": "Bo_ulti_vo", "takeDamageSoundVO": "Bo_hurt", "deathSoundVO": "Bo_die", "attackSoundVO": "Bo_atk_vo", "attackStartEffectOffset": 45, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 106, "heroScreenScale": 170, "fitToBoxScale": 245, "endScreenScale": 75, "gatchaScreenScale": 165, "homeScreenScale": 220, "heroScreenXOffset": -150, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -56, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "BO", "heroBundleTID": "Bo's Bundle", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_bo", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 30, "footstepIntervalMS": 300, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": true, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "BoTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 30, "scId": 1600014, "rawTID": "BOW_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_14"}, {"name": "Sniper", "lockedForChronos": null, "disabled": null, "itemName": "piper", "weaponSkill": "SniperWeapon", "ultimateSkill": "SniperUlti", "pet": null, "speed": 720, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 97, "ultiChargeUltiMul": 90, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "SniperDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_sniper", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_sniper", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Minig_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Piper_Kill", "inLeadCelebrationSoundVO": "Piper_Lead", "startSoundVO": "Piper_Start", "useUltiSoundVO": "Piper_Ulti", "takeDamageSoundVO": "Piper_Takedamage", "deathSoundVO": "Piper_Die", "attackSoundVO": null, "attackStartEffectOffset": 45, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 200, "fitToBoxScale": 320, "endScreenScale": 90, "gatchaScreenScale": 190, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -46, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "PIPER", "heroBundleTID": "Piper's Clutch", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_piper", "recoilAmount": 100, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "PiperTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 31, "scId": 1600015, "rawTID": "SNIPER", "rawHeroBundleTID": "HERO_BUNDLE_15"}, {"name": "MinigunDude", "lockedForChronos": null, "disabled": null, "itemName": "pam", "weaponSkill": "MinigunDudeWeapon", "ultimateSkill": "MinigunDudeUlti", "pet": null, "speed": 720, "hitpoints": 4500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 105, "ultiChargeUltiMul": 130, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "MinigunDudeDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_minigun", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_minigun", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Minig_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Pam_kill", "inLeadCelebrationSoundVO": "Pam_lead", "startSoundVO": "Pam_start", "useUltiSoundVO": "Pam_ulti", "takeDamageSoundVO": "Pam_hurt", "deathSoundVO": "Pam_die", "attackSoundVO": null, "attackStartEffectOffset": 40, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 95, "heroScreenScale": 140, "fitToBoxScale": 205, "endScreenScale": 70, "gatchaScreenScale": 140, "homeScreenScale": 190, "heroScreenXOffset": -500, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "PAM", "heroBundleTID": "Pam's Purse", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_mj", "recoilAmount": 400, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 30, "footstepIntervalMS": 400, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "PamTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 32, "scId": 1600016, "rawTID": "MINIGUN_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_16"}, {"name": "BlackHole", "lockedForChronos": null, "disabled": null, "itemName": "tara", "weaponSkill": "BlackHoleWeapon", "ultimateSkill": "BlackHoleUlti", "pet": "BlackHolePet", "speed": 720, "hitpoints": 3200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 75, "ultiChargeUltiMul": 90, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BlackholeDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_blackhole", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_blackhole", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Mystic_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Tara_kill_vo", "inLeadCelebrationSoundVO": "Tara_lead_vo", "startSoundVO": "Tara_start_vo", "useUltiSoundVO": null, "takeDamageSoundVO": "Tara_hurt_vo", "deathSoundVO": "Tara_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 120, "heroScreenScale": 210, "fitToBoxScale": 300, "endScreenScale": 90, "gatchaScreenScale": 175, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "TARA", "heroBundleTID": "Tara's Chest", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_taro", "recoilAmount": 400, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 300, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "TaraTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 33, "scId": 1600017, "rawTID": "BLACK_HOLE", "rawHeroBundleTID": "HERO_BUNDLE_17"}, {"name": "BarrelBot", "lockedForChronos": null, "disabled": null, "itemName": "darryl", "weaponSkill": "BarrelBotWeapon", "ultimateSkill": "BarrelBotUlti", "pet": null, "speed": 770, "hitpoints": 4800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 117, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BarrelbotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_barrel_bot", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_barrel_bot", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_shotgungirl", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": 0, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 257, "endScreenScale": 80, "gatchaScreenScale": 175, "homeScreenScale": 230, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -48, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "DARRYL", "heroBundleTID": "Darryl's Barrel", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_barrelbot", "recoilAmount": 600, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 40, "footstepIntervalMS": 300, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 3, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": 33, "videoLink": "DarrylTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 34, "scId": 1600018, "rawTID": "BARREL_BOT", "rawHeroBundleTID": "HERO_BUNDLE_18"}, {"name": "ArtilleryDude", "lockedForChronos": null, "disabled": null, "itemName": "penny", "weaponSkill": "ArtilleryDudeWeapon", "ultimateSkill": "ArtilleryDudeUlti", "pet": null, "speed": 720, "hitpoints": 3200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 93, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "ArtilleryGalDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_artillery_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_artillery_dude", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_mechanic", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Penny_kill", "inLeadCelebrationSoundVO": "Penny_lead", "startSoundVO": "Penny_start", "useUltiSoundVO": "Penny_ulti", "takeDamageSoundVO": "Penny_takedamage", "deathSoundVO": "Penny_die", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 110, "heroScreenScale": 190, "fitToBoxScale": 290, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 260, "heroScreenXOffset": -500, "heroScreenZOffset": 600, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -45, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "PENNY", "heroBundleTID": "Penny's Treasure", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_penny", "recoilAmount": 500, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 20, "footstepIntervalMS": 200, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "PennyTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 35, "scId": 1600019, "rawTID": "ARTILLERY_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_19"}, {"name": "HammerDude", "lockedForChronos": null, "disabled": null, "itemName": "frank", "weaponSkill": "HammerDudeWeapon", "ultimateSkill": "HammerDudeUlti", "pet": null, "speed": 770, "hitpoints": 6100, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 120, "ultiChargeUltiMul": 120, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "FrankDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_hammer_dude", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Frank_vo", "inLeadCelebrationSoundVO": "Frank_vo", "startSoundVO": "Frank_vo", "useUltiSoundVO": "Frank_vo", "takeDamageSoundVO": "Frank_vo", "deathSoundVO": "Frank_vo", "attackSoundVO": "Frank_vo", "attackStartEffectOffset": 75, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 110, "heroScreenScale": 150, "fitToBoxScale": 240, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 230, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -60, "flyingHeight": null, "projectileStartZ": 100, "stopMovementAfterMS": null, "waitMS": null, "tID": "FRANK", "heroBundleTID": "Frank's Feature", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_frank", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 40, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "FrankTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 36, "scId": 1600020, "rawTID": "HAMMER_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_20"}, {"name": "HookDude", "lockedForChronos": null, "disabled": null, "itemName": "gene", "weaponSkill": "HookWeapon", "ultimateSkill": "HookUlti", "pet": null, "speed": 720, "hitpoints": 3600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 130, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "HookDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_hook_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_gene", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_gene", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Gene_vo", "inLeadCelebrationSoundVO": "Gene_vo", "startSoundVO": "Gene_vo", "useUltiSoundVO": "Gene_vo", "takeDamageSoundVO": "Gene_vo", "deathSoundVO": "Gene_vo", "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 230, "fitToBoxScale": 340, "endScreenScale": 90, "gatchaScreenScale": 175, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -36, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": "GENE", "heroBundleTID": "Gene's Grant", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_gene", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 350, "attackingWeaponScale": 200, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "GeneTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 37, "scId": 1600021, "rawTID": "HOOK", "rawHeroBundleTID": "HERO_BUNDLE_HOOK"}, {"name": "ClusterBombDude", "lockedForChronos": null, "disabled": null, "itemName": "tick", "weaponSkill": "ClusterBombDudeWeapon", "ultimateSkill": "ClusterBombDudeUlti", "pet": null, "speed": 720, "hitpoints": 2200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 100, "ultiChargeUltiMul": 70, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "ClusterBombDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_artillery_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_tick", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_shotgungirl", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Tick_vo_1", "inLeadCelebrationSoundVO": "Tick_vo_1", "startSoundVO": "Tick_vo_1", "useUltiSoundVO": "Tick_vo_1", "takeDamageSoundVO": "Tick_vo_hurt", "deathSoundVO": "Tick_vo_die", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 110, "heroScreenScale": 230, "fitToBoxScale": 340, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -40, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": "TICK", "heroBundleTID": "Tick's Trove", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_tick", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 85, "footstepIntervalMS": 300, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": true, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 38, "scId": 1600022, "rawTID": "CLUSTER_BOMB_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_CLUSTER_BOMB_DUDE"}, {"name": "Ninja", "lockedForChronos": null, "disabled": null, "itemName": "leon", "weaponSkill": "NinjaWeapon", "ultimateSkill": "NinjaUlti", "pet": null, "speed": 820, "hitpoints": 3200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 110, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "NinjaDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_ninja", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_leon", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_leon", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Leon_kill_vo", "inLeadCelebrationSoundVO": "Leon_lead_vo", "startSoundVO": "Leon_start_vo", "useUltiSoundVO": "Leon_ulti_vo", "takeDamageSoundVO": "Leon_hurt_vo", "deathSoundVO": "Leon_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 330, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -55, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "LEON", "heroBundleTID": "Leon's Lootbox", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_leon", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "LeonTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 39, "scId": 1600023, "rawTID": "NINJA", "rawHeroBundleTID": "HERO_BUNDLE_NINJA"}, {"name": "Rosa", "lockedForChronos": null, "disabled": null, "itemName": "rosa", "weaponSkill": "RosaWeapon", "ultimateSkill": "RosaUlti", "pet": null, "speed": 770, "hitpoints": 5400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 85, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "RosaDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_rosa", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_rosa", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Rosa_kill", "inLeadCelebrationSoundVO": "Rosa_lead", "startSoundVO": "Rosa_start", "useUltiSoundVO": "Rosa_ulti_vo", "takeDamageSoundVO": "Rosa_hurt", "deathSoundVO": "Rosa_die", "attackSoundVO": null, "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 110, "heroScreenScale": 100, "fitToBoxScale": 245, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 240, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -55, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "ROSA", "heroBundleTID": "Rosa's Bundle", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_rosa", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 30, "footstepIntervalMS": 400, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 40, "scId": 1600024, "rawTID": "ROSA", "rawHeroBundleTID": "HERO_BUNDLE_ROSA"}, {"name": "Whirlwind", "lockedForChronos": null, "disabled": null, "itemName": "carl", "weaponSkill": "WhirlwindWeapon", "ultimateSkill": "WhirlwindUlti", "pet": null, "speed": 720, "hitpoints": 4400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 115, "ultiChargeUltiMul": 70, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "WhirlwindDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_whirlwind", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_whirlwind", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_whirlwind", "spawnEffect": null, "meleeHitEffect": "carl_def_ulti_hit", "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Carl_kill_vo", "inLeadCelebrationSoundVO": "Carl_lead_vo", "startSoundVO": "Carl_start_vo", "useUltiSoundVO": "Carl_ulti_vo", "takeDamageSoundVO": "Carl_hurt_vo", "deathSoundVO": "Carl_die_vo", "attackSoundVO": "Carl_atk_vo", "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 110, "heroScreenScale": 190, "fitToBoxScale": 255, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 230, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -48, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "CARL", "heroBundleTID": "Carl's Cartload", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_carl", "recoilAmount": 0, "homeworld": "human", "footstepClip": null, "differentFootstepOffset": 25, "footstepIntervalMS": 50, "attackingWeaponScale": 200, "useThrowingLeftWeaponBoneScaling": true, "useThrowingRightWeaponBoneScaling": true, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 41, "scId": 1600025, "rawTID": "WHIRLWIND", "rawHeroBundleTID": "HERO_BUNDLE_WHIRLWIND"}, {"name": "Baseball", "lockedForChronos": null, "disabled": null, "itemName": "bibi", "weaponSkill": "BaseballWeapon", "ultimateSkill": "BaseballUlti", "pet": null, "speed": 770, "hitpoints": 4200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 110, "ultiChargeUltiMul": 112, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BaseballDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_baseball", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_baseball", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_barkeep", "spawnEffect": null, "meleeHitEffect": "bibi_def_atk_hit", "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Bibi_kill_vo", "inLeadCelebrationSoundVO": "Bibi_lead_vo", "startSoundVO": "Bibi_start_vo", "useUltiSoundVO": "Bibi_ulti_vo", "takeDamageSoundVO": "Bibi_hurt_vo", "deathSoundVO": "Bibi_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 210, "fitToBoxScale": 320, "endScreenScale": 90, "gatchaScreenScale": 190, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -48, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "BIBI", "heroBundleTID": "Bibi's Bargain", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_bibi", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 100, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 42, "scId": 1600026, "rawTID": "BASEBALL", "rawHeroBundleTID": "HERO_BUNDLE_BASEBALL"}, {"name": "Arcade", "lockedForChronos": null, "disabled": null, "itemName": "8bit", "weaponSkill": "ArcadeWeapon", "ultimateSkill": "ArcadeUlti", "pet": null, "speed": 580, "hitpoints": 4300, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 106, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "ArcadeDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_arcade", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_arcade", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "arcade_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "8bit_kill_vo", "inLeadCelebrationSoundVO": "8bit_lead_vo", "startSoundVO": "8bit_start_vo", "useUltiSoundVO": "8bit_ulti_vo", "takeDamageSoundVO": "8bit_hurt_vo", "deathSoundVO": "8bit_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 57, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 240, "fitToBoxScale": 324, "endScreenScale": 80, "gatchaScreenScale": 210, "homeScreenScale": 290, "heroScreenXOffset": -500, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "8-BIT", "heroBundleTID": "8-Bit's Stash", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_8bit", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 30, "footstepIntervalMS": 400, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 43, "scId": 1600027, "rawTID": "ARCADE", "rawHeroBundleTID": "HERO_BUNDLE_ARCADE"}, {"name": "Sandstorm", "lockedForChronos": null, "disabled": null, "itemName": "sandy", "weaponSkill": "SandstormWeapon", "ultimateSkill": "SandstormUlti", "pet": null, "speed": 770, "hitpoints": 3800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 80, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "SandstormDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_rosa", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_sandy", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Dry_fire_sandy", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Sandy_kill_vo", "inLeadCelebrationSoundVO": "Sandy_lead_vo", "startSoundVO": "Sandy_start_vo", "useUltiSoundVO": "Sandy_ulti_vo", "takeDamageSoundVO": "Sandy_hurt_vo", "deathSoundVO": "Sandy_die_vo", "attackSoundVO": null, "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 190, "fitToBoxScale": 330, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -55, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "SANDY", "heroBundleTID": "Sandy's Castle", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_sandy", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 30, "footstepIntervalMS": 400, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 44, "scId": 1600028, "rawTID": "SANDSTORM", "rawHeroBundleTID": "HERO_BUNDLE_SANDSTORM"}, {"name": "BeeSniper", "lockedForChronos": true, "disabled": null, "itemName": "bea", "weaponSkill": "BeeSniperWeapon", "ultimateSkill": "BeeSniperUlti", "pet": null, "speed": 720, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 178, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "BeeSniperDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_sniper", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_bea", "outOfAmmoEffect": "No_ammo_bea", "dryFireEffect": "Minig_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Bea_Kill_VO", "inLeadCelebrationSoundVO": "Bea_Lead_VO", "startSoundVO": "Bea_Start_VO", "useUltiSoundVO": "Bea_Ulti_VO", "takeDamageSoundVO": "Bea_Hurt_VO", "deathSoundVO": "Bea_Die_VO", "attackSoundVO": "Bea_Atk_VO", "attackStartEffectOffset": 45, "twoWeaponAttackEffectOffset": 50, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 200, "fitToBoxScale": 320, "endScreenScale": 90, "gatchaScreenScale": 190, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -46, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "BEA", "heroBundleTID": "Bea's Honey Pot!", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_bea", "recoilAmount": 100, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 35, "footstepIntervalMS": 350, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 45, "scId": 1600029, "rawTID": "BEE_SNIPER", "rawHeroBundleTID": "HERO_BUNDLE_BEE_SNIPER"}, {"name": "Mummy", "lockedForChronos": null, "disabled": null, "itemName": "emz", "weaponSkill": "MummyWeapon", "ultimateSkill": "MummyUlti", "pet": null, "speed": 720, "hitpoints": 3600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 80, "ultiChargeUltiMul": 90, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "MummyDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_shotgun_girl", "moveEffect": "Gen_move_fx", "reloadEffect": "Emz_reload", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Emz_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Emz_kill_vo", "inLeadCelebrationSoundVO": "Emz_lead_vo", "startSoundVO": "Emz_start_vo", "useUltiSoundVO": "Emz_ulti_vo", "takeDamageSoundVO": "Emz_hurt_vo", "deathSoundVO": "Emz_die_vo", "attackSoundVO": "Emz_atk_vo", "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 210, "fitToBoxScale": 270, "endScreenScale": 90, "gatchaScreenScale": 175, "homeScreenScale": 240, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -48, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "EMZ", "heroBundleTID": "Emz's Casket", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_emz", "recoilAmount": 0, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 200, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 1, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 2, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "ShellyTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 46, "scId": 1600030, "rawTID": "MUMMY", "rawHeroBundleTID": "HERO_BUNDLE_MUMMY"}, {"name": "SpawnerDude", "lockedForChronos": null, "disabled": true, "itemName": "spawner", "weaponSkill": "SpawnerDudeWeapon", "ultimateSkill": "SpawnerDudeUlti", "pet": null, "speed": 720, "hitpoints": 2900, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 100, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "SpawnerDudeDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_artillery_dude", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_artillery_dude", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_mechanic", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Penny_kill", "inLeadCelebrationSoundVO": "Penny_lead", "startSoundVO": "Penny_start", "useUltiSoundVO": "Penny_ulti", "takeDamageSoundVO": "Penny_takedamage", "deathSoundVO": "Penny_die", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": 75, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 110, "heroScreenScale": 190, "fitToBoxScale": 290, "endScreenScale": 80, "gatchaScreenScale": 150, "homeScreenScale": 260, "heroScreenXOffset": -500, "heroScreenZOffset": 600, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -45, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "SPAWNER DUDE", "heroBundleTID": "TID_HERO_BUNDLE_SPAWNER_DUDE", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_brock", "recoilAmount": 500, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 20, "footstepIntervalMS": 200, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 3, "rareSetUpgradeBonus": 2, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "PennyTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 47, "scId": 1600031, "rawTID": "SPAWNER_DUDE", "rawHeroBundleTID": "HERO_BUNDLE_SPAWNER_DUDE"}, {"name": "Speedy", "lockedForChronos": true, "disabled": null, "itemName": "max", "weaponSkill": "SpeedyWeapon", "ultimateSkill": "SpeedyUlti", "pet": null, "speed": 820, "hitpoints": 3500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 100, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "SpeedyDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_gunslinger", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_max", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "dry_fire_max", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": "Max_Kill_VO", "inLeadCelebrationSoundVO": "Max_Lead_VO", "startSoundVO": "Max_Start_VO", "useUltiSoundVO": "Max_Ulti_VO", "takeDamageSoundVO": "Max_Hurt_VO", "deathSoundVO": "Max_Die_VO", "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 210, "fitToBoxScale": 284, "endScreenScale": 90, "gatchaScreenScale": 185, "homeScreenScale": 270, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -52, "flyingHeight": null, "projectileStartZ": 400, "stopMovementAfterMS": null, "waitMS": null, "tID": "MAX", "heroBundleTID": "Max Value!", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_max", "recoilAmount": 300, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 300, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": "ColtTutorial", "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 48, "scId": 1600032, "rawTID": "SPEEDY", "rawHeroBundleTID": "HERO_BUNDLE_SPEEDY"}, {"name": "Homer", "lockedForChronos": null, "disabled": true, "itemName": "homer", "weaponSkill": "HomerWeapon", "ultimateSkill": "HomerUlti", "pet": null, "speed": 720, "hitpoints": 2500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": 75, "ultiChargeUltiMul": 100, "type": "Hero", "damagerPercentFromAliens": null, "defaultSkin": "HomerDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "death_sniper", "moveEffect": "Gen_move_fx", "reloadEffect": "reload_sniper", "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": "Minig_dryfire", "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 45, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 116, "heroScreenScale": 200, "fitToBoxScale": 320, "endScreenScale": 90, "gatchaScreenScale": 190, "homeScreenScale": 260, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -46, "flyingHeight": null, "projectileStartZ": 450, "stopMovementAfterMS": null, "waitMS": null, "tID": "HOMER", "heroBundleTID": "TID_HERO_BUNDLE_HOMER", "forceAttackAnimationToEnd": null, "iconSWF": "sc/ui.sc", "iconExportName": "hero_icon_piper", "recoilAmount": 100, "homeworld": "human", "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": 2, "rareSetUpgradeBonus": 3, "superRareSetUpgradeBonus": 1, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 49, "scId": 1600033, "rawTID": "HOMER", "rawHeroBundleTID": "HERO_BUNDLE_HOMER"}, {"name": "TutorialDummy", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 700, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": "No_ammo_shotgungirl", "dryFireEffect": null, "spawnEffect": "tutorial_robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 140, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -60, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 50, "scId": 1600034}, {"name": "TutorialDummy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 700, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building_charges_ulti", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "tutorial_robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 140, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -60, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 51, "scId": 1600035}, {"name": "MechanicTurret", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 3000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 300, "autoAttackDamage": 260, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "MechanicTurretProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "TurretDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "SpawnTurret", "meleeHitEffect": null, "autoAttackStartEffect": "jessie_def_turret_atk", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 116, "heroScreenScale": 220, "fitToBoxScale": 297, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1000, "heroScreenZOffset": -400, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -32, "flyingHeight": null, "projectileStartZ": 220, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 52, "scId": 1600036}, {"name": "HealingStation", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "HealstationDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": "HealingStationHeal", "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "pam_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 106, "heroScreenScale": 100, "fitToBoxScale": 135, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1400, "heroScreenZOffset": -500, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 300, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 53, "scId": 1600037}, {"name": "Safe", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 45000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 700, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 20, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Pvp_Base", "damagerPercentFromAliens": null, "defaultSkin": "Safe", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "safe_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 100, "shadowScaleY": -100, "shadowX": 0, "shadowY": 0, "shadowSkew": 0, "scale": 84, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 160, "healthBar": "Medium", "healthBarOffsetY": -75, "flyingHeight": null, "projectileStartZ": 300, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 54, "scId": 1600038}, {"name": "ExplodingBarrel", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 12000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": null, "fileName": "sc/level.sc", "blueExportName": "tnt_box", "redExportName": "tnt_box", "shadowExportName": "tnt_box_shadow", "areaEffect": null, "deathAreaEffect": "ExplodingBarrelExplosion", "takeDamageEffect": null, "deathEffect": null, "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 100, "shadowScaleY": -100, "shadowX": 0, "shadowY": 0, "shadowSkew": 0, "scale": 95, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 55, "scId": 1600039}, {"name": "PoisonBarrel", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 2, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "Safe", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": "PoisonBarrelExplosion", "takeDamageEffect": null, "deathEffect": null, "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 106, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": null, "healthBarOffsetY": 0, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 56, "scId": 1600040}, {"name": "ShamanPet", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 610, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 400, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "ShamanBearDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "death_bull_dude", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "nita_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "bear_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 106, "heroScreenScale": 200, "fitToBoxScale": 280, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 500, "heroScreenZOffset": -1250, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -63, "flyingHeight": null, "projectileStartZ": 100, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 57, "scId": 1600041}, {"name": "BoneThrowerPet", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 870, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 300, "autoAttackDamage": 600, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": 1200, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Dog", "damagerPercentFromAliens": null, "defaultSkin": "ShamanBearDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "death_bull_dude", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "nita_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "bear_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 84, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 58, "scId": 1600042}, {"name": "LaserBall", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "LaserBall", "damagerPercentFromAliens": null, "defaultSkin": "BallDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "laser_ball_goal", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 179, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": null, "healthBarOffsetY": 0, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": null, "footstepIntervalMS": null, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 59, "scId": 1600043}, {"name": "LootBox", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 6000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "LootBox", "damagerPercentFromAliens": null, "defaultSkin": "LootBox", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "Gen_wood_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 100, "shadowScaleY": -100, "shadowX": 0, "shadowY": 0, "shadowSkew": 0, "scale": 95, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -40, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 60, "scId": 1600044}, {"name": "TutorialDummy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building_charges_ulti", "damagerPercentFromAliens": null, "defaultSkin": "BossBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "takedamage_gen", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "tutorial_robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 200, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -75, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 61, "scId": 1600045}, {"name": "ArtilleryDudeTurret", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 2500, "autoAttackDamage": 1200, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": "ArtilleryDudeTurretProjectile", "autoAttackRange": 40, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "ArtilleryTurretDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "penny_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "penny_def_turret_atk", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 116, "heroScreenScale": 180, "fitToBoxScale": 243, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1000, "heroScreenZOffset": -1400, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -32, "flyingHeight": null, "projectileStartZ": 150, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 62, "scId": 1600046}, {"name": "CoopMeleeEnemy1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 600, "hitpoints": 4800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 260, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -54, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 63, "scId": 1600047}, {"name": "CoopMeleeEnemy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 600, "hitpoints": 6800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 470, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 148, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 64, "scId": 1600048}, {"name": "CoopMeleeEnemy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 600, "hitpoints": 11000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 600, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 169, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 170, "healthBar": "Medium", "healthBarOffsetY": -65, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 65, "scId": 1600049}, {"name": "CoopMeleeEnemy4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 600, "hitpoints": 16200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 730, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 190, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 195, "healthBar": "Medium", "healthBarOffsetY": -70, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 150, "greenAdd": 100, "blueAdd": null, "redMul": 255, "greenMul": 255, "blueMul": 180, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 66, "scId": 1600050}, {"name": "CoopFastMeleeEnemy1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 900, "hitpoints": 3000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 400, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 106, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 100, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 67, "scId": 1600051}, {"name": "CoopFastMeleeEnemy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 900, "hitpoints": 5400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 720, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 68, "scId": 1600052}, {"name": "CoopFastMeleeEnemy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 900, "hitpoints": 6900, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 920, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 148, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 140, "healthBar": "Medium", "healthBarOffsetY": -54, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 69, "scId": 1600053}, {"name": "CoopFastMeleeEnemy4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 900, "hitpoints": 10080, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 1120, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 169, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 160, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 150, "greenAdd": 100, "blueAdd": null, "redMul": 255, "greenMul": 255, "blueMul": 180, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 70, "scId": 1600054}, {"name": "CoopRangedEnemy1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 750, "hitpoints": 2000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 630, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "CoopRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 100, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 71, "scId": 1600055}, {"name": "CoopRangedEnemy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 750, "hitpoints": 3600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 1130, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "CoopRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 148, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -54, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 72, "scId": 1600056}, {"name": "CoopRangedEnemy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 750, "hitpoints": 4600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 1450, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "CoopRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 169, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 140, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 73, "scId": 1600057}, {"name": "CoopRangedEnemy4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 750, "hitpoints": 6700, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 1760, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "CoopRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 190, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 160, "healthBar": "Medium", "healthBarOffsetY": -65, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 150, "greenAdd": 100, "blueAdd": null, "redMul": 255, "greenMul": 255, "blueMul": 180, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 74, "scId": 1600058}, {"name": "TntPet", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 770, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 400, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "ShotgunGirlPetProjectile", "autoAttackRange": 22, "regeneratePerSecond": 320, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FollowOwner", "damagerPercentFromAliens": null, "defaultSkin": "TntPetDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "death_shotgun_girl", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": "bear_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 43, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 90, "healthBar": "Medium", "healthBarOffsetY": -11, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 75, "scId": 1600059}, {"name": "BlackHolePet", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 870, "hitpoints": 3000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 800, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "BlackholePetDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "death_shotgun_girl", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "tara_def_ulti_starPower_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "bear_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": "sparkle_trail_dark_minion", "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 95, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 90, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 76, "scId": 1600060}, {"name": "CoopBoss1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": "BossRapidFire", "ultimateSkill": "BossCharge", "pet": null, "speed": 600, "hitpoints": 45000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 600, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 8, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Npc_Boss", "damagerPercentFromAliens": null, "defaultSkin": "BigBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 150, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 220, "healthBar": "Medium", "healthBarOffsetY": -100, "flyingHeight": null, "projectileStartZ": 500, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 60, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 77, "scId": 1600061}, {"name": "CoopBoss2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": "BossRapidFire2", "ultimateSkill": "BossCharge", "pet": null, "speed": 600, "hitpoints": 55000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 640, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 9, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Npc_Boss", "damagerPercentFromAliens": null, "defaultSkin": "BigBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 150, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 300, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 250, "healthBar": "Medium", "healthBarOffsetY": -120, "flyingHeight": null, "projectileStartZ": 500, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 60, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 78, "scId": 1600062}, {"name": "CoopBoss3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": "BossRapidFire3", "ultimateSkill": "BossCharge", "pet": null, "speed": 600, "hitpoints": 65000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 680, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 9, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Npc_Boss", "damagerPercentFromAliens": null, "defaultSkin": "BigBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 150, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 350, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 280, "healthBar": "Medium", "healthBarOffsetY": -140, "flyingHeight": null, "projectileStartZ": 500, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 60, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 79, "scId": 1600063}, {"name": "TutorialExplodingBarrel", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 300, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "TntBox", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": "ExplodingBarrelExplosion", "takeDamageEffect": null, "deathEffect": null, "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 100, "shadowScaleY": -100, "shadowX": 0, "shadowY": 0, "shadowSkew": 0, "scale": 95, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": null, "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 80, "scId": 1600064}, {"name": "EventModifierBoss", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 600, "hitpoints": 32000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 600, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 7, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies2", "damagerPercentFromAliens": null, "defaultSkin": "BigBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 220, "healthBar": "Medium", "healthBarOffsetY": -100, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 81, "scId": 1600065}, {"name": "RaidBoss", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": "RaidBossRapidFire", "ultimateSkill": "RaidBossCharge", "pet": null, "speed": 550, "hitpoints": 250000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 800, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 9, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Npc_Boss", "damagerPercentFromAliens": null, "defaultSkin": "BossBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 150, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 300, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 280, "healthBar": "Medium", "healthBarOffsetY": -130, "flyingHeight": null, "projectileStartZ": 500, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 60, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 82, "scId": 1600066}, {"name": "RaidBossMeleeEnemy1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 650, "hitpoints": 3600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 260, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -54, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 83, "scId": 1600067}, {"name": "RaidBossMeleeEnemy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 650, "hitpoints": 5100, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 470, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 148, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 84, "scId": 1600068}, {"name": "RaidBossMeleeEnemy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 650, "hitpoints": 8250, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 600, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 169, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 170, "healthBar": "Medium", "healthBarOffsetY": -65, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 85, "scId": 1600069}, {"name": "RaidBossMeleeEnemy4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 650, "hitpoints": 12150, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 730, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 70, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 190, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 195, "healthBar": "Medium", "healthBarOffsetY": -70, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 150, "greenAdd": 100, "blueAdd": null, "redMul": 255, "greenMul": 255, "blueMul": 180, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 86, "scId": 1600070}, {"name": "RaidBossFastMeleeEnemy1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 950, "hitpoints": 2250, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 400, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 106, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 100, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 87, "scId": 1600071}, {"name": "RaidBossFastMeleeEnemy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 950, "hitpoints": 4050, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 720, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 5, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 88, "scId": 1600072}, {"name": "RaidBossFastMeleeEnemy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 950, "hitpoints": 5175, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 920, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 148, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 140, "healthBar": "Medium", "healthBarOffsetY": -54, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 89, "scId": 1600073}, {"name": "RaidBossFastMeleeEnemy4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 950, "hitpoints": 7560, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 1120, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_fast_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 169, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 160, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 150, "greenAdd": 100, "blueAdd": null, "redMul": 255, "greenMul": 255, "blueMul": 180, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 90, "scId": 1600074}, {"name": "RaidBossRangedEnemy1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 800, "hitpoints": 1500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 630, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 40, "autoAttackProjectile": "RaidBossRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 100, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 91, "scId": 1600075}, {"name": "RaidBossRangedEnemy2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 800, "hitpoints": 2700, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 1130, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 40, "autoAttackProjectile": "RaidBossRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 148, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -54, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 30, "greenAdd": null, "blueAdd": 30, "redMul": 255, "greenMul": 120, "blueMul": 255, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 92, "scId": 1600076}, {"name": "RaidBossRangedEnemy3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 800, "hitpoints": 3450, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 1450, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 40, "autoAttackProjectile": "RaidBossRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 169, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 140, "healthBar": "Medium", "healthBarOffsetY": -59, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 100, "greenAdd": null, "blueAdd": null, "redMul": 255, "greenMul": 140, "blueMul": 140, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 93, "scId": 1600077}, {"name": "RaidBossRangedEnemy4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 800, "hitpoints": 5040, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 1760, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 40, "autoAttackProjectile": "RaidBossRangedEnemyProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 190, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 160, "healthBar": "Medium", "healthBarOffsetY": -65, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": true, "redAdd": 150, "greenAdd": 100, "blueAdd": null, "redMul": 255, "greenMul": 255, "blueMul": 180, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 94, "scId": 1600078}, {"name": "RoboWarsBase", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 30000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 500, "autoAttackDamage": 1000, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": "RoboWarsBaseProjectile", "autoAttackRange": 35, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Pvp_Base", "damagerPercentFromAliens": null, "defaultSkin": "RoboWarsBaseDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "siege_base_destroyed", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": "siege_base_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 40, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 100, "shadowScaleY": -100, "shadowX": 0, "shadowY": 0, "shadowSkew": 0, "scale": 550, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 160, "healthBar": "Medium", "healthBarOffsetY": -75, "flyingHeight": null, "projectileStartZ": 300, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 95, "scId": 1600079}, {"name": "RoboWarsBox", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "LootBox", "damagerPercentFromAliens": null, "defaultSkin": "RoboWarsBox", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "Gen_wood_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_wars_box_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 100, "shadowScaleY": -100, "shadowX": 0, "shadowY": 0, "shadowSkew": 0, "scale": null, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -40, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 96, "scId": 1600080}, {"name": "RoboWarsRobo", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 650, "hitpoints": 45000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 500, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 6, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "RoboWars", "damagerPercentFromAliens": null, "defaultSkin": "BigBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "explosion_tnt_dude", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 220, "healthBar": "Medium", "healthBarOffsetY": -100, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 97, "scId": 1600081}, {"name": "TrainingDummySmall", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building_charges_ulti", "damagerPercentFromAliens": null, "defaultSkin": "MeleeFastBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 140, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -50, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 98, "scId": 1600082}, {"name": "TrainingDummyMedium", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building_charges_ulti", "damagerPercentFromAliens": null, "defaultSkin": "MeleeBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 140, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -50, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 99, "scId": 1600083}, {"name": "TrainingDummyBig", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 100000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building_charges_ulti", "damagerPercentFromAliens": null, "defaultSkin": "BossBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 35, "scale": 200, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 220, "healthBar": "Medium", "healthBarOffsetY": -75, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 100, "scId": 1600084}, {"name": "TrainingDummyShooting", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 4000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1400, "autoAttackDamage": 500, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": "CoopRangedEnemyProjectile", "autoAttackRange": 20, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building_charges_ulti", "damagerPercentFromAliens": null, "defaultSkin": "RangedBotDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_ranged_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 50, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 127, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 130, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 101, "scId": 1600085}, {"name": "Train0", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Train", "damagerPercentFromAliens": null, "defaultSkin": "MineCart", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": null, "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 200, "healthBar": null, "healthBarOffsetY": null, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 130, "footstepIntervalMS": 50, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 102, "scId": 1600086}, {"name": "Train1", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Train", "damagerPercentFromAliens": null, "defaultSkin": "MineCartB", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": null, "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 200, "healthBar": null, "healthBarOffsetY": null, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 130, "footstepIntervalMS": 50, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 103, "scId": 1600087}, {"name": "Train2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Train", "damagerPercentFromAliens": null, "defaultSkin": "MineCartC", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": null, "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 200, "healthBar": null, "healthBarOffsetY": null, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 130, "footstepIntervalMS": 50, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 104, "scId": 1600088}, {"name": "Train3", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Train", "damagerPercentFromAliens": null, "defaultSkin": "MineCartD", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": null, "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 200, "healthBar": null, "healthBarOffsetY": null, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 130, "footstepIntervalMS": 50, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 105, "scId": 1600089}, {"name": "Train4", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Train", "damagerPercentFromAliens": null, "defaultSkin": "MineCartE", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": null, "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 250, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 200, "healthBar": null, "healthBarOffsetY": null, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 130, "footstepIntervalMS": 50, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 106, "scId": 1600090}, {"name": "ClusterBombPet", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 1200, "hitpoints": 1600, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1000, "autoAttackDamage": 2000, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "ClusterBombPetDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": "ClusterBombPetExplosion", "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "tick_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 150, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 90, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 107, "scId": 1600091}, {"name": "BlackHolePet2", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 870, "hitpoints": 2400, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 600, "autoAttackDamage": 400, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": "BlackHolePet2Projectile", "autoAttackRange": 15, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "BlackholePetDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "death_shotgun_girl", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "tara_def_ulti_starPower_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": "sparkle_trail_dark_minion", "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 95, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 90, "healthBar": "Medium", "healthBarOffsetY": -43, "flyingHeight": null, "projectileStartZ": 350, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 108, "scId": 1600092}, {"name": "MechanicTurretWalking", "lockedForChronos": null, "disabled": true, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 770, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 300, "autoAttackDamage": 240, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": 30, "autoAttackProjectile": "MechanicTurretProjectile", "autoAttackRange": 27, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FollowOwner", "damagerPercentFromAliens": null, "defaultSkin": "TurretDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "SpawnTurret", "meleeHitEffect": null, "autoAttackStartEffect": "jessie_def_turret_atk", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 116, "heroScreenScale": 220, "fitToBoxScale": 297, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1000, "heroScreenZOffset": -400, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -32, "flyingHeight": null, "projectileStartZ": 220, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 109, "scId": 1600093}, {"name": "DamageBooster", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "DamageBoosterDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": "DamageBoost", "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "pam_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 180, "heroScreenScale": 220, "fitToBoxScale": 300, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1400, "heroScreenZOffset": -500, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 300, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 110, "scId": 1600094}, {"name": "BeePet", "lockedForChronos": null, "disabled": true, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 770, "hitpoints": 2800, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1000, "autoAttackDamage": 500, "autoAttackBulletsPerShot": 3, "autoAttackMode": "Shotgun", "autoAttackProjectileSpread": 50, "autoAttackProjectile": "BeeProjectile", "autoAttackRange": 30, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FollowOwner", "damagerPercentFromAliens": null, "defaultSkin": "TurretDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "SpawnTurret", "meleeHitEffect": null, "autoAttackStartEffect": "jessie_def_turret_atk", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 116, "heroScreenScale": 220, "fitToBoxScale": 297, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1000, "heroScreenZOffset": -400, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -32, "flyingHeight": null, "projectileStartZ": 220, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 111, "scId": 1600095}, {"name": "BossRaceBoss", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": "BossRaceBossRapidFire", "ultimateSkill": "BossRaceBossCharge", "pet": null, "speed": 500, "hitpoints": 220000, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 400, "autoAttackDamage": 800, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 9, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Npc_Boss", "damagerPercentFromAliens": null, "defaultSkin": "BossRaceBossDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "boss_explosion", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "robo_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "coop_melee_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": 150, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 300, "heroScreenScale": 200, "fitToBoxScale": 270, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 280, "healthBar": "Medium", "healthBarOffsetY": -130, "flyingHeight": null, "projectileStartZ": 500, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 60, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 112, "scId": 1600096}, {"name": "SpawnerDudeTurret", "lockedForChronos": null, "disabled": true, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": "SpawnerPet", "speed": 0, "hitpoints": 3500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 40, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_Building", "damagerPercentFromAliens": null, "defaultSkin": "ArtilleryTurretDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "penny_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "penny_def_turret_atk", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 35, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 116, "heroScreenScale": 180, "fitToBoxScale": 243, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1000, "heroScreenZOffset": -1400, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -32, "flyingHeight": null, "projectileStartZ": 150, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": 1, "petAutoSpawnDelay": 3, "id": 113, "scId": 1600097}, {"name": "SpawnerPet", "lockedForChronos": null, "disabled": true, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 900, "hitpoints": 1500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": 1000, "autoAttackDamage": 300, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": "BeeProjectile", "autoAttackRange": 13, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FindEnemies", "damagerPercentFromAliens": null, "defaultSkin": "ShamanBearDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "death_bull_dude", "moveEffect": "Gen_move_fx", "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "nita_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": "bear_attack", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": 30, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 85, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 50, "heroScreenScale": 200, "fitToBoxScale": 280, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 500, "heroScreenZOffset": -1250, "collisionRadius": 145, "healthBar": "Medium", "healthBarOffsetY": -63, "flyingHeight": null, "projectileStartZ": 100, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 250, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": true, "extraMinions": null, "petAutoSpawnDelay": null, "id": 114, "scId": 1600098}, {"name": "ReloadBooster", "lockedForChronos": null, "disabled": true, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 500, "hitpoints": 500, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": 12, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FollowOwner", "damagerPercentFromAliens": null, "defaultSkin": "DamageBoosterDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": "ReloadBoostPersonal", "deathAreaEffect": null, "takeDamageEffect": "nuts_bolts_metal_small", "deathEffect": "nuts_bolts_metal_explosion", "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": "pam_def_ulti_spawn", "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 75, "shadowScaleY": 75, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 180, "heroScreenScale": 220, "fitToBoxScale": 300, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": 1400, "heroScreenZOffset": -500, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -49, "flyingHeight": null, "projectileStartZ": 300, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": "footstep", "differentFootstepOffset": 25, "footstepIntervalMS": 400, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 115, "scId": 1600099}, {"name": "CaptureFlag", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 200, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "CaptureFlag", "damagerPercentFromAliens": null, "defaultSkin": "CtfGift", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": "mode_gift_goal", "moveEffect": null, "reloadEffect": "mode_gift_destoryed", "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 179, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": 120, "healthBar": "Medium", "healthBarOffsetY": -30, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": null, "footstepIntervalMS": null, "attackingWeaponScale": 160, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 116, "scId": 1600100}, {"name": "Bee", "lockedForChronos": null, "disabled": null, "itemName": null, "weaponSkill": null, "ultimateSkill": null, "pet": null, "speed": 0, "hitpoints": 1, "meleeAutoAttackSplashDamage": null, "autoAttackSpeedMs": null, "autoAttackDamage": null, "autoAttackBulletsPerShot": null, "autoAttackMode": null, "autoAttackProjectileSpread": null, "autoAttackProjectile": null, "autoAttackRange": null, "regeneratePerSecond": null, "ultiChargeMul": null, "ultiChargeUltiMul": null, "type": "Minion_FollowOwner", "damagerPercentFromAliens": null, "defaultSkin": "BeeDefault", "fileName": null, "blueExportName": null, "redExportName": null, "shadowExportName": null, "areaEffect": null, "deathAreaEffect": null, "takeDamageEffect": null, "deathEffect": null, "moveEffect": null, "reloadEffect": null, "outOfAmmoEffect": null, "dryFireEffect": null, "spawnEffect": null, "meleeHitEffect": null, "autoAttackStartEffect": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "loopedEffect": null, "loopedEffect2": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "attackStartEffectOffset": null, "twoWeaponAttackEffectOffset": null, "shadowScaleX": 80, "shadowScaleY": 80, "shadowX": null, "shadowY": null, "shadowSkew": 25, "scale": 116, "heroScreenScale": null, "fitToBoxScale": null, "endScreenScale": null, "gatchaScreenScale": null, "homeScreenScale": null, "heroScreenXOffset": null, "heroScreenZOffset": null, "collisionRadius": null, "healthBar": null, "healthBarOffsetY": null, "flyingHeight": null, "projectileStartZ": null, "stopMovementAfterMS": null, "waitMS": null, "tID": null, "heroBundleTID": null, "forceAttackAnimationToEnd": null, "iconSWF": null, "iconExportName": null, "recoilAmount": null, "homeworld": null, "footstepClip": null, "differentFootstepOffset": null, "footstepIntervalMS": null, "attackingWeaponScale": null, "useThrowingLeftWeaponBoneScaling": null, "useThrowingRightWeaponBoneScaling": null, "commonSetUpgradeBonus": null, "rareSetUpgradeBonus": null, "superRareSetUpgradeBonus": null, "canWalkOverWater": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "chargeUltiAutomatically": null, "videoLink": null, "shouldEncodePetStatus": null, "secondaryPet": null, "extraMinions": null, "petAutoSpawnDelay": null, "id": 117, "scId": 1600101}], "game_mode_variations": [{"name": "GemGrab", "variation": 0, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_gemgrab", "gameModeRoomIconName": "event_gameroom_gemgrab", "gameModeIconName": "event_icon_gemgrab", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Deleted1", "variation": 1, "disabled": true, "tID": null, "chatSuggestionItemName": null, "gameModeRoomIconName": null, "gameModeIconName": null, "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Heist", "variation": 2, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_heist", "gameModeRoomIconName": "event_gameroom_heist", "gameModeIconName": "event_icon_heist", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Bounty", "variation": 3, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_wanted", "gameModeRoomIconName": "event_gameroom_wanted", "gameModeIconName": "event_icon_wanted", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Deleted2", "variation": 4, "disabled": true, "tID": null, "chatSuggestionItemName": null, "gameModeRoomIconName": null, "gameModeIconName": null, "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "BrawlBall", "variation": 5, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_brawlball", "gameModeRoomIconName": "event_gameroom_brawlball", "gameModeIconName": "event_icon_brawlball", "scoreSfx": "Brawlbawl_goal", "opponentScoreSfx": "Brawlbawl_other_goal", "scoreText": " scored!", "scoreTextEnd": " scored!\\nMatch over", "rawScoreText": "GOAL", "rawScoreTextEnd": "GOAL_MATCH_OVER"}, {"name": "Showdown", "variation": 6, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_survival", "gameModeRoomIconName": "event_gameroom_survival", "gameModeIconName": "event_icon_survival", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "BigGame", "variation": 7, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_bossmode", "gameModeRoomIconName": "event_gameroom_bossmode", "gameModeIconName": "event_icon_bossmode", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "RoboRumble", "variation": 8, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_coop", "gameModeRoomIconName": "event_gameroom_coop", "gameModeIconName": "event_icon_coop", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "DuoShowdown", "variation": 9, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_teamsurvival", "gameModeRoomIconName": "event_gameroom_teamsurvival", "gameModeIconName": "event_icon_teamsurvival", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "BossFight", "variation": 10, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_raid", "gameModeRoomIconName": "event_gameroom_raid", "gameModeIconName": "event_icon_raid", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Siege", "variation": 11, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_robowars", "gameModeRoomIconName": "event_gameroom_robowars", "gameModeIconName": "event_icon_robowars", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Tutorial", "variation": 12, "disabled": null, "tID": null, "chatSuggestionItemName": null, "gameModeRoomIconName": null, "gameModeIconName": null, "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Training", "variation": 13, "disabled": null, "tID": null, "chatSuggestionItemName": null, "gameModeRoomIconName": null, "gameModeIconName": null, "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "Takedown", "variation": 14, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_takedown", "gameModeRoomIconName": "event_gameroom_takedown", "gameModeIconName": "event_icon_takedown", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "LoneStar", "variation": 15, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_lone_star", "gameModeRoomIconName": "event_gameroom_lone_star", "gameModeIconName": "event_icon_lone_star", "scoreSfx": null, "opponentScoreSfx": null, "scoreText": null, "scoreTextEnd": null}, {"name": "CTF", "variation": 16, "disabled": null, "tID": null, "chatSuggestionItemName": "chat_letsplay_ctf", "gameModeRoomIconName": "event_gameroom_ctf", "gameModeIconName": "event_icon_ctf", "scoreSfx": "Brawl_xmas_flag_win", "opponentScoreSfx": "Brawl_xmas_flag_lose", "scoreText": "\\ntook a gift!", "scoreTextEnd": "\\ntook a gift!\\n\\nMatch over", "rawScoreText": "CTF_GOAL", "rawScoreTextEnd": "CTF_GOAL_MATCH_OVER"}], "globals": [{"name": "ALLIANCE_CREATE_RESOURCE", "numberValue": null, "booleanValue": null, "textValue": "Gold", "stringArray": null, "numberArray": null, "id": 3}, {"name": "ALLIANCE_CREATE_COST", "numberValue": 0, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": [50, 25], "id": 4}, {"name": "STARTING_DIAMONDS", "numberValue": 0, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 5}, {"name": "MAX_MESSAGE_LENGTH", "numberValue": 128, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 6}, {"name": "MAX_ALLIANCE_MAIL_LENGTH", "numberValue": 256, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 7}, {"name": "SPEED_UP_DIAMOND_COST_1_MIN", "numberValue": 1, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 8}, {"name": "SPEED_UP_DIAMOND_COST_1_HOUR", "numberValue": 4, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 9}, {"name": "SPEED_UP_DIAMOND_COST_24_HOURS", "numberValue": 96, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 10}, {"name": "SPEED_UP_DIAMOND_COST_1_WEEK", "numberValue": 672, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 11}, {"name": "SPEED_UP_FREE_SECONDS", "numberValue": 0, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 12}, {"name": "RESOURCE_DIAMOND_COST_1", "numberValue": 1, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 13}, {"name": "RESOURCE_DIAMOND_COST_10", "numberValue": 2, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 14}, {"name": "RESOURCE_DIAMOND_COST_100", "numberValue": 20, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 15}, {"name": "RESOURCE_DIAMOND_COST_1000", "numberValue": 200, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 16}, {"name": "RESOURCE_DIAMOND_COST_10000", "numberValue": 2000, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 17}, {"name": "RESOURCE_DIAMOND_COST_100000", "numberValue": 20000, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 18}, {"name": "RESOURCE_DIAMOND_COST_1000000", "numberValue": 200000, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 19}, {"name": "RESOURCE_DIAMOND_COST_10000000", "numberValue": 2000000, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 20}, {"name": "ALLIANCE_SCORE_CONTRIBUTION_PERCENTAGE", "numberValue": null, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": [50, 25, 12, 10, 3], "id": 21}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null}, {"name": null, "numberValue": null, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null}, {"name": "STARTING_GOLD", "numberValue": 0, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 26}, {"name": "BATTLE_PING_SAMPLE_SECONDS", "numberValue": 15, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 27}, {"name": "ALLIANCE_UNLOCK_EXP_LEVEL", "numberValue": 1, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 28}, {"name": "AFK_TIMER_SECONDS", "numberValue": 15, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 29}, {"name": "BOSS_DAMAGE_PERCENT_INCREASE", "numberValue": 50, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 30}, {"name": "BOSS_HEALTH_INCREASE", "numberValue": 110000, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 31}, {"name": "BOSS_SPEED_INCREASE", "numberValue": 100, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 32}, {"name": "BOSS_RELOAD_TIME_DIV", "numberValue": 20, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 33}, {"name": "BOSS_PET_HEALTH_BONUS_DIV", "numberValue": 40, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 34}, {"name": "BOSS_ULTI_CHARGE_MUL", "numberValue": 60, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 35}, {"name": "BOSS_ULTI_CHARGE_DIV", "numberValue": 100, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 36}, {"name": "BOSS_HEAL_MUL", "numberValue": 25, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 37}, {"name": "BOSS_HEAL_DIV", "numberValue": 100, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 38}, {"name": "COOP_ULTI_CHARGE_MUL", "numberValue": 30, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 39}, {"name": "COOP_ULTI_CHARGE_DIV", "numberValue": 100, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 40}, {"name": "MAX_CORPSES_PER_TEAM", "numberValue": 10, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 41}, {"name": "USE_MASK", "numberValue": null, "booleanValue": false, "textValue": null, "stringArray": null, "numberArray": null, "id": 42}, {"name": "DISPLAY_JOYSTICK_AREA", "numberValue": null, "booleanValue": true, "textValue": null, "stringArray": null, "numberArray": null, "id": 43}, {"name": "BOSS_HEALTH_LOSS_DIV", "numberValue": 300, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 44}, {"name": "VISIBILITY_X", "numberValue": 43, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 45}, {"name": "VISIBILITY_UP", "numberValue": 33, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 46}, {"name": "VISIBILITY_DOWN", "numberValue": 28, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 47}, {"name": "VISIBILITY_HORIZONTAL_MARGIN", "numberValue": 6, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 48}, {"name": "VISIBILITY_VERTICAL_MARGIN_1", "numberValue": 18, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 49}, {"name": "VISIBILITY_VERTICAL_MARGIN_2", "numberValue": 26, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 50}, {"name": "STARTING_HERO_LVL_UP_MATERIAL", "numberValue": 100, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 51}, {"name": "TRANSFORM_FREE_BOX_TO_AD_BOX", "numberValue": null, "booleanValue": false, "textValue": null, "stringArray": null, "numberArray": null, "id": 52}, {"name": "VAMPIRES_HEAL_MUL", "numberValue": 25, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 53}, {"name": "VAMPIRES_HEAL_DIV", "numberValue": 100, "booleanValue": null, "textValue": null, "stringArray": null, "numberArray": null, "id": 54}], "items": [{"name": "Health", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "soul", "exportNameEnemy": "soul", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": "Health_fx", "value": 16000, "value2": null, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 18}, {"name": "Speed", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "red_pickup", "exportNameEnemy": "red_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": "Health_fx", "value": 300, "value2": null, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 19}, {"name": "DamageAndSpeed", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": "power_up_bottle_sparkle", "value": 200, "value2": 200, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_buff", "sCW": "sc3d/item_power_up_bottle.scw", "sCWEnemy": "sc3d/item_power_up_bottle.scw", "layer": "Above", "id": 20}, {"name": "Point", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "blob_pickup", "exportNameEnemy": "blob_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow", "loopingEffect": "Blob_fx", "value": null, "value2": null, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 21}, {"name": "Corpse", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "soul", "exportNameEnemy": "soul", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": "Health_fx", "value": 800, "value2": null, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 22}, {"name": "OrbSpawner", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": null, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/mine_gem_spawn.scw", "sCWEnemy": "sc3d/mine_gem_spawn.scw", "layer": "GroundLow", "id": 23}, {"name": "Mine", "parentItemForSkin": null, "fileName": "sc/effects_brawler.sc", "exportName": "bo_def_mine_blue", "exportNameEnemy": "bo_def_mine_red", "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": 800, "value2": 1150, "triggerRangeSubTiles": 3, "triggerAreaEffect": "Bo_def_ulti2_area", "canBePickedUp": true, "spawnEffect": "bo_def_ulti2_spawn", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 24}, {"name": "SupplyCrate", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "red_pickup", "exportNameEnemy": "red_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": null, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 25}, {"name": "BoxOfMines", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "red_pickup", "exportNameEnemy": "red_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": null, "value": 3, "value2": 6, "triggerRangeSubTiles": null, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 26}, {"name": "BattleRoyaleBuff", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": "Health_fx", "value": 10, "value2": 400, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/item_showdown_boost.scw", "sCWEnemy": "sc3d/item_showdown_boost.scw", "layer": "Above", "id": 27}, {"name": "Money", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "wanted_star_pickup", "exportNameEnemy": "wanted_star_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow_gold", "loopingEffect": "Blob_fx", "value": 1, "value2": null, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 28}, {"name": "BoxOfBombs", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "red_pickup", "exportNameEnemy": "red_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": null, "value": 4, "value2": 8, "triggerRangeSubTiles": null, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 29}, {"name": "Bomb", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "grenade_01", "exportNameEnemy": "grenade_01_red", "shadowExportName": "projectile_shadow", "groundGlowExportName": null, "loopingEffect": null, "value": 800, "value2": 300, "triggerRangeSubTiles": 200, "triggerAreaEffect": "SniperBombExplosion", "canBePickedUp": true, "spawnEffect": "Spawn_sniper_bomb", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 30}, {"name": "BoxOfSelfDestructBombs", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "red_pickup", "exportNameEnemy": "red_pickup", "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": null, "value": 4, "value2": 40, "triggerRangeSubTiles": null, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 31}, {"name": "SelfDestructBomb", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": "cannon_projectile_blue", "exportNameEnemy": "cannon_projectile_red", "shadowExportName": "projectile_shadow", "groundGlowExportName": null, "loopingEffect": null, "value": 800, "value2": 1300, "triggerRangeSubTiles": 200, "triggerAreaEffect": "SelfDestructExplosion", "canBePickedUp": true, "spawnEffect": "artillery_dude_turret_attack", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 32}, {"name": "Scrap", "parentItemForSkin": null, "fileName": "sc/effects.sc", "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": "pickup_glow_green", "loopingEffect": "power_up_bottle_sparkle", "value": null, "value2": null, "triggerRangeSubTiles": 4, "triggerAreaEffect": null, "canBePickedUp": true, "spawnEffect": "Spawn_buff", "sCW": "sc3d/item_bolt.scw", "sCWEnemy": "sc3d/item_bolt.scw", "layer": "Above", "id": 33}, {"name": "SpringBoardLeft", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board.scw", "sCWEnemy": "sc3d/spring_board.scw", "layer": "Object", "id": 34}, {"name": "SpringBoardRight", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board.scw", "sCWEnemy": "sc3d/spring_board.scw", "layer": "Object", "id": 35}, {"name": "SpringBoardUp", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board.scw", "sCWEnemy": "sc3d/spring_board.scw", "layer": "Object", "id": 36}, {"name": "SpringBoardDown", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board.scw", "sCWEnemy": "sc3d/spring_board.scw", "layer": "Object", "id": 37}, {"name": "SpringBoardUpLeft", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board_diagonal.scw", "sCWEnemy": "sc3d/spring_board_diagonal.scw", "layer": "Object", "id": 38}, {"name": "SpringBoardUpRight", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board_diagonal.scw", "sCWEnemy": "sc3d/spring_board_diagonal.scw", "layer": "Object", "id": 39}, {"name": "SpringBoardDownLeft", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board_diagonal.scw", "sCWEnemy": "sc3d/spring_board_diagonal.scw", "layer": "Object", "id": 40}, {"name": "SpringBoardDownRight", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": 3, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": "Spawn_plasmoid", "sCW": "sc3d/spring_board_diagonal.scw", "sCWEnemy": "sc3d/spring_board_diagonal.scw", "layer": "Object", "id": 41}, {"name": "TrainSpawner", "parentItemForSkin": null, "fileName": null, "exportName": null, "exportNameEnemy": null, "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": null, "triggerAreaEffect": null, "canBePickedUp": null, "spawnEffect": null, "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 42}, {"name": "ClusterMine", "parentItemForSkin": null, "fileName": "sc/effects_brawler.sc", "exportName": "tick_def_atk2", "exportNameEnemy": "tick_def_atk2_red", "shadowExportName": "shadow_normal_circle", "groundGlowExportName": null, "loopingEffect": null, "value": 800, "value2": 2000, "triggerRangeSubTiles": 200, "triggerAreaEffect": "ClusterBombExplosion2", "canBePickedUp": true, "spawnEffect": null, "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 43}, {"name": "MineMecha", "parentItemForSkin": "Mine", "fileName": "sc/effects_brawler.sc", "exportName": "bo_002_mine_blue", "exportNameEnemy": "bo_002_mine_red", "shadowExportName": null, "groundGlowExportName": null, "loopingEffect": null, "value": null, "value2": null, "triggerRangeSubTiles": null, "triggerAreaEffect": "Bo_def_ulti2_area", "canBePickedUp": null, "spawnEffect": "bo_def_ulti2_spawn", "sCW": null, "sCWEnemy": null, "layer": "Above", "id": 44}], "locales": [{"name": "EN", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "English", "sortOrder": 0, "enabled": true, "fileName": "localization/texts.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": null, "id": 1}, {"name": "CN", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\u7b80\u4f53\u4e2d\u6587", "sortOrder": 5, "enabled": true, "fileName": "localization/cn.csv", "testLanguage": null, "usedSystemFont": "STHeitiSC-Medium", "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "zh-Hans", "helpshiftSDKLanguageAndroid": "zh_CN", "testExcludes": ["EN", "DE"], "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_cns", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/cn", "parentsGuideUrl": "http://www.supercell.com/en/parents/cn", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/cn", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://testbrawlstars.scinbox.qq.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=zh", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=zh", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=zh", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=zh", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/zh/index.html", "fallbackToHelpshift": true, "id": 2}, {"name": "AR", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629", "sortOrder": 18, "enabled": true, "fileName": "localization/ar.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "ar", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/ar/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=ar", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=ar", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=ar", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=ar", "laserboxEnabled": null, "isRTL": true, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/ar/index.html", "fallbackToHelpshift": true, "id": 3}, {"name": "FR", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Fran\u00e7ais", "sortOrder": 1, "enabled": true, "fileName": "localization/fr.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "fr", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/fr", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/fr", "laserboxUrl": "https://inbox.brawlstars.com/fr/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/fr/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=fr", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=fr", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=fr", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=fr", "laserboxEnabled": null, "isRTL": null, "isNounAdj": true, "separateThousandsWithSpaces": true, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/fr/index.html", "fallbackToHelpshift": true, "id": 4}, {"name": "DOUBLE", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Double", "sortOrder": 101, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": null, "id": 5}, {"name": "EMPTY", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Empty", "sortOrder": 102, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": null, "id": 6}, {"name": "DOUBLEDOUBLE", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "DoubleDouble", "sortOrder": 103, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": null, "id": 7}, {"name": "TEXT", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Longest text", "sortOrder": 104, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": ["CN", "CNT", "KR", "AR", "JP", "TH", "NL", "ID"], "loadAllLanguages": true, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": null, "id": 8}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": "WORD", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Longest Word", "sortOrder": 105, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": ["CN", "CNT", "KR", "AR", "JP", "TH", "PT"], "loadAllLanguages": true, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": null, "id": 14}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": "DE", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Deutsch", "sortOrder": 2, "enabled": true, "fileName": "localization/de.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "de", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/de", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/de", "laserboxUrl": "https://inbox.brawlstars.com/de/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/de/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=de", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=de", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=de", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=de", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": true, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/de/index.html", "fallbackToHelpshift": true, "id": 20}, {"name": "ES", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Espa\u00f1ol", "sortOrder": 3, "enabled": true, "fileName": "localization/es.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "es", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/es", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/es", "laserboxUrl": "https://inbox.brawlstars.com/es/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/es/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=es", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=es", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=es", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=es", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/es/index.html", "fallbackToHelpshift": true, "id": 21}, {"name": "IT", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Italiano", "sortOrder": 4, "enabled": true, "fileName": "localization/it.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "it", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/it", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/it", "laserboxUrl": "https://inbox.brawlstars.com/it/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/it/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=it", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=it", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=it", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=it", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/it/index.html", "fallbackToHelpshift": true, "id": 22}, {"name": "JP", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\u65e5\u672c\u8a9e", "sortOrder": 7, "enabled": true, "fileName": "localization/jp.csv", "testLanguage": null, "usedSystemFont": "HiraKakuProN-W6", "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "ja", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_jp", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/jp", "parentsGuideUrl": "http://www.supercell.com/en/parents/jp", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/jp", "laserboxUrl": "https://inbox.brawlstars.com/ja/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/ja/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=ja", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=ja", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=ja", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=ja", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/ja/index.html", "fallbackToHelpshift": true, "id": 23}, {"name": "CNT", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\u7e41\u9ad4\u4e2d\u6587", "sortOrder": 6, "enabled": true, "fileName": "localization/cnt.csv", "testLanguage": null, "usedSystemFont": "STHeitiSC-Medium", "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "zh-Hant", "helpshiftSDKLanguageAndroid": "zh_TW", "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_cnt", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/tw", "parentsGuideUrl": "http://www.supercell.com/en/parents/tw", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/tw", "laserboxUrl": "https://inbox.brawlstars.com/zh/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/zh/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=zh-hant", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=zh-hant", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=zh-hant", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=zh-hant", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": true, "id": 24}, {"name": "KR", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\ud55c\uad6d\uc5b4", "sortOrder": 8, "enabled": true, "fileName": "localization/kr.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "ko", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_kr", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/ko", "parentsGuideUrl": "http://www.supercell.com/en/parents/ko", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/ko", "laserboxUrl": "https://inbox.brawlstars.com/ko/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/ko/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=ko", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=ko", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=ko", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=ko", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/ko/index.html", "fallbackToHelpshift": true, "id": 25}, {"name": "NL", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Nederlands", "sortOrder": 11, "enabled": true, "fileName": "localization/nl.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "nl", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/nl/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=nl", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=nl", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=nl", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=nl", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/nl/index.html", "fallbackToHelpshift": true, "id": 26}, {"name": "PT", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Portugu\u00eas", "sortOrder": 9, "enabled": true, "fileName": "localization/pt.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "pt", "helpshiftSDKLanguageAndroid": "pt_Br", "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/pt", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/pt", "laserboxUrl": "https://inbox.brawlstars.com/pt/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/pt/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=pt", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=pt", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=pt", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=pt", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/pt/index.html", "fallbackToHelpshift": true, "id": 27}, {"name": "RU", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "P\u0443\u0441\u0441\u043a\u0438\u0439", "sortOrder": 10, "enabled": true, "fileName": "localization/ru.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "ru", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/ru", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/ru", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/ru/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=ru", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=ru", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=ru", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=ru", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": true, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/ru/index.html", "fallbackToHelpshift": true, "id": 28}, {"name": "TR", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "T\u00fcrk\u00e7e", "sortOrder": 12, "enabled": true, "fileName": "localization/tr.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "tr", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/tr", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/tr", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/tr/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=tr", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=tr", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=tr", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=tr", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/tr/index.html", "fallbackToHelpshift": true, "id": 29}, {"name": "ID", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Bahasa Indonesia", "sortOrder": 17, "enabled": true, "fileName": "localization/id.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "id", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/id", "parentsGuideUrl": "http://www.supercell.com/en/parents/id", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/id/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/id/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=id", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=id", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=id", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=id", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/id/index.html", "fallbackToHelpshift": true, "id": 30}, {"name": "MS", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Bahasa Melayu", "sortOrder": 14, "enabled": true, "fileName": "localization/ms.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "ms", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/ms", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/ms/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=ms", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=ms", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=ms", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=ms", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/ms/index.html", "fallbackToHelpshift": true, "id": 31}, {"name": "VI", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Ti\u1ebfng Vi\u1ec7t", "sortOrder": 15, "enabled": true, "fileName": "localization/vi.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "vi", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/vi/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=vi", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=vi", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=vi", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=vi", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/vi/index.html", "fallbackToHelpshift": true, "id": 32}, {"name": "TH", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22", "sortOrder": 16, "enabled": true, "fileName": "localization/th.csv", "testLanguage": null, "usedSystemFont": "HelveticaNeue-Bold", "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "th", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/th/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=th", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=th", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=th", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=th", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/th/index.html", "fallbackToHelpshift": true, "id": 33}, {"name": "FI", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Suomi", "sortOrder": 13, "enabled": true, "fileName": "localization/fi.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "fi", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/fi/", "parentsGuideUrl": "http://supercell.com/en/parents/fi/", "privacyPolicyUrl": "http://supercell.com/en/privacy-policy/fi/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/fi/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=fi", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=fi", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=fi", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=fi", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": true, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/fi/index.html", "fallbackToHelpshift": true, "id": 34}, {"name": "TEXT_ASIA", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Longest text Asia", "sortOrder": 106, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": ["EN", "ES", "AR", "TR", "ID", "MS", "VI", "NL", "FI", "RU", "PT", "TH"], "loadAllLanguages": true, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": true, "id": 35}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": "WORD_ASIA", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Longest Word Asia", "sortOrder": 107, "enabled": false, "fileName": "localization/texts.csv", "testLanguage": true, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "en", "helpshiftSDKLanguageAndroid": null, "testExcludes": ["EN", "DE", "FR", "IT", "ES", "AR", "TR", "ID", "MS", "VI", "NL", "FI", "RU", "PT", "TH"], "loadAllLanguages": true, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/", "parentsGuideUrl": "http://www.supercell.com/en/parents/", "privacyPolicyUrl": "http://www.supercell.com/en/privacy-policy/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=en", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=en", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=en", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=en", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": true, "id": 47}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": null, "iconSWF": null, "iconExportName": null, "localizedName": null, "sortOrder": null, "enabled": null, "fileName": null, "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": null, "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": null, "championshipLogo": null, "termsAndServiceUrl": null, "parentsGuideUrl": null, "privacyPolicyUrl": null, "laserboxUrl": null, "laserboxStagingUrl": null, "laserboxCommunityUrl": null, "laserboxCommunityStagingUrl": null, "faqUrl_ios": null, "faqUrl_android": null, "contactUsUrl_ios": null, "contactUsUrl_android": null, "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": null, "fallbackToHelpshift": null}, {"name": "PL", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "Polski", "sortOrder": 19, "enabled": true, "fileName": "localization/pl.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "pl", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/fi/", "parentsGuideUrl": "http://supercell.com/en/parents/fi/", "privacyPolicyUrl": "http://supercell.com/en/privacy-policy/fi/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/fi/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=pl", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=pl", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=pl", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=pl", "laserboxEnabled": null, "isRTL": null, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": true, "id": 62}, {"name": "HE", "iconSWF": "sc/ui.sc", "iconExportName": "flag_gb", "localizedName": "\u05e2\u05d1\u05e8\u05d9\u05ea", "sortOrder": 20, "enabled": true, "fileName": "localization/he.csv", "testLanguage": null, "usedSystemFont": null, "preferedFallbackFont": null, "forcedFontFullName": null, "helpshiftSDKLanguage": "iw", "helpshiftSDKLanguageAndroid": null, "testExcludes": null, "loadAllLanguages": null, "championshipRegisterUrl": "http://www.supr.cl/bsc", "championshipLogo": "bsc_logo_en", "termsAndServiceUrl": "http://supercell.com/en/terms-of-service/fi/", "parentsGuideUrl": "http://supercell.com/en/parents/fi/", "privacyPolicyUrl": "http://supercell.com/en/privacy-policy/fi/", "laserboxUrl": "https://inbox.brawlstars.com/", "laserboxStagingUrl": "https://staging.inbox.brawlstars.com/fi/", "laserboxCommunityUrl": "https://inbox.brawlstars.com/community/", "laserboxCommunityStagingUrl": "https://staging.inbox.brawlstars.com/community/", "faqUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&l=he", "faqUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&l=he", "contactUsUrl_ios": "https://supercell.helpshift.com/a/brawl-stars/?p=ios&contact=1&l=he", "contactUsUrl_android": "https://supercell.helpshift.com/a/brawl-stars/?p=android&contact=1&l=he", "laserboxEnabled": null, "isRTL": true, "isNounAdj": null, "separateThousandsWithSpaces": null, "selfHelpUrl": "https://ingame.help.supercellsupport.com/brawl-stars/en/index.html", "fallbackToHelpshift": true, "id": 63}], "locations": [{"name": "Wanted1", "disabled": true, "tID": "Temple Ruins", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_darryls_ship.scw", "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_oasis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_1", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 15, "scId": 1500000, "rawTID": "WANTED_1"}, {"name": "Wanted3", "disabled": true, "tID": "Stone Fort", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_jungle_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_oasis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_3", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 16, "scId": 1500001, "rawTID": "WANTED_3"}, {"name": "Wanted4", "disabled": true, "tID": "Deathcap Trap", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "BountyHunter", "allowedMaps": "Gemgrab_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 17, "scId": 1500002, "rawTID": "WANTED_4"}, {"name": "Wanted5", "disabled": true, "tID": "Crystal Clearing", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "BountyHunter", "allowedMaps": "Gemgrab_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 18, "scId": 1500003, "rawTID": "WANTED_5"}, {"name": "Wanted6", "disabled": null, "tID": "Snake Prairie", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "BountyHunter", "allowedMaps": "Wanted_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 19, "scId": 1500004, "rawTID": "WANTED_6"}, {"name": "Wanted7", "disabled": true, "tID": "Shooting Star", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "BountyHunter", "allowedMaps": "Wanted_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 20, "scId": 1500005, "rawTID": "WANTED_7"}, {"name": "Wanted2", "disabled": true, "tID": "Outlaw Camp", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_jungle_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_jungle.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_oasis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_2", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 21, "scId": 1500006, "rawTID": "WANTED_2"}, {"name": "Gemgrab1", "disabled": null, "tID": "Hard Rock Mine", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_1", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 22, "scId": 1500007, "rawTID": "GOLDRUSH_1"}, {"name": "Gemgrab2", "disabled": true, "tID": "Crystal Cavern", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_2", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 23, "scId": 1500008, "rawTID": "GOLDRUSH_2"}, {"name": "Gemgrab3", "disabled": null, "tID": "Deathcap Trap", "tileSetPrefix": "mortuary_", "bgPrefix": null, "locationTheme": "Mortuary", "groundSCW": "sc3d/bgr_mortuary_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_3", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 24, "scId": 1500009, "rawTID": "WANTED_4"}, {"name": "Gemgrab4", "disabled": true, "tID": "Stone Fort", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Wanted_3", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 25, "scId": 1500010, "rawTID": "GOLDRUSH_4"}, {"name": "Gemgrab5", "disabled": true, "tID": "Undermine", "tileSetPrefix": "mortuary_", "bgPrefix": null, "locationTheme": "Mortuary", "groundSCW": "sc3d/bgr_mortuary_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_5", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 26, "scId": 1500011, "rawTID": "GOLDRUSH_5"}, {"name": "Gemgrab6", "disabled": true, "tID": "Deep Siege", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_4", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 27, "scId": 1500012, "rawTID": "GOLDRUSH_6"}, {"name": "Survival1", "disabled": true, "tID": "Skull Creek", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 28, "scId": 1500013, "rawTID": "BATTLE_ROYALE_1"}, {"name": "Survival2", "disabled": true, "tID": "Scorched Stone", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 29, "scId": 1500014, "rawTID": "BATTLE_ROYALE_2"}, {"name": "Survival3", "disabled": true, "tID": "Rockwall Brawl", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 30, "scId": 1500015, "rawTID": "BATTLE_ROYALE_3"}, {"name": "Survival4", "disabled": true, "tID": "Feast or Famine", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 31, "scId": 1500016, "rawTID": "BATTLE_ROYALE_4"}, {"name": "Heist1", "disabled": true, "tID": "Bandit Stash", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_darryls_ship.scw", "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 32, "scId": 1500017, "rawTID": "BANKHEIST_1"}, {"name": "Heist2", "disabled": true, "tID": "Kaboom Canyon", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 33, "scId": 1500018, "rawTID": "BANKHEIST_2"}, {"name": "Heist3", "disabled": true, "tID": "Safe Zone", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 34, "scId": 1500019, "rawTID": "BANKHEIST_3"}, {"name": "Tutorial", "disabled": null, "tID": null, "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_tutorial_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine_tutorial.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_welcome", "gameMode": "Tutorial", "allowedMaps": null, "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 35, "scId": 1500020}, {"name": "BossFight1", "disabled": true, "tID": "Team Day", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_boss", "gameMode": "BossFight", "allowedMaps": "BossFight_1", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 36, "scId": 1500021, "rawTID": "BOSS_4"}, {"name": "Wanted8", "disabled": true, "tID": "Hideout", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_jungle_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_jungle.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_oasis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_8", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 37, "scId": 1500022, "rawTID": "WANTED_8"}, {"name": "Heist4", "disabled": true, "tID": "G.G. Corral", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 38, "scId": 1500023, "rawTID": "BANKHEIST_4"}, {"name": "Ball1", "disabled": null, "tID": "Backyard Bowl", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_1", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 39, "scId": 1500024, "rawTID": "BALL_1"}, {"name": "Ball2", "disabled": null, "tID": "Triple Dribble", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_2", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 40, "scId": 1500025, "rawTID": "BALL_2"}, {"name": "Ball3", "disabled": null, "tID": "Pinhole Punt", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_3", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 41, "scId": 1500026, "rawTID": "BALL_3"}, {"name": "Coop1", "disabled": null, "tID": "Pachinko Park", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_coop", "gameMode": "Survival", "allowedMaps": "Coop_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 42, "scId": 1500027, "rawTID": "COOP_1"}, {"name": "SurvivalTeam7", "disabled": true, "tID": "Double Trouble", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 43, "scId": 1500028, "rawTID": "BATTLE_ROYALE_7"}, {"name": "Coop2", "disabled": null, "tID": "Steel Junction", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_coop", "gameMode": "Survival", "allowedMaps": "Coop_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 44, "scId": 1500029, "rawTID": "COOP_2"}, {"name": "BossFight2", "disabled": true, "tID": "Chew Out", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_boss", "gameMode": "BossFight", "allowedMaps": "BossFight_2", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 45, "scId": 1500030, "rawTID": "BOSS_3"}, {"name": "Gemgrab8", "disabled": true, "tID": "Sapphire Plains", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_8", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 46, "scId": 1500031, "rawTID": "GOLDRUSH_8"}, {"name": "Survival5", "disabled": true, "tID": "Acid Lakes", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 47, "scId": 1500032, "rawTID": "BATTLE_ROYALE_5"}, {"name": "Survival6", "disabled": true, "tID": "Cavern Churn", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 48, "scId": 1500033, "rawTID": "BATTLE_ROYALE_6"}, {"name": "SurvivalTeam1", "disabled": true, "tID": "Skull Creek", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 49, "scId": 1500034, "rawTID": "BATTLE_ROYALE_1"}, {"name": "SurvivalTeam2", "disabled": true, "tID": "Scorched Stone", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 50, "scId": 1500035, "rawTID": "BATTLE_ROYALE_2"}, {"name": "SurvivalTeam3", "disabled": true, "tID": "Rockwall Brawl", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 51, "scId": 1500036, "rawTID": "BATTLE_ROYALE_3"}, {"name": "SurvivalTeam4", "disabled": true, "tID": "Feast or Famine", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 52, "scId": 1500037, "rawTID": "BATTLE_ROYALE_4"}, {"name": "SurvivalTeam5", "disabled": true, "tID": "Acid Lakes", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 53, "scId": 1500038, "rawTID": "BATTLE_ROYALE_5"}, {"name": "Coop3", "disabled": null, "tID": "Keep Safe", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_coop", "gameMode": "Survival", "allowedMaps": "Coop_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 54, "scId": 1500039, "rawTID": "COOP_6"}, {"name": "Gemgrab7", "disabled": true, "tID": "Chill Cave", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_7", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": "DarkKnight", "id": 55, "scId": 1500040, "rawTID": "GOLDRUSH_7"}, {"name": "Gemgrab10", "disabled": true, "tID": "Echo Chamber", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_10", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Lewinham", "id": 56, "scId": 1500041, "rawTID": "GOLDRUSH_10"}, {"name": "Heist5", "disabled": true, "tID": "Fancy Fencing", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Rushalisk", "id": 57, "scId": 1500042, "rawTID": "BANKHEIST_5"}, {"name": "Survival7", "disabled": true, "tID": "Double Trouble", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 58, "scId": 1500043, "rawTID": "BATTLE_ROYALE_7"}, {"name": "SurvivalTeam6", "disabled": true, "tID": "Cavern Churn", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 59, "scId": 1500044, "rawTID": "BATTLE_ROYALE_6"}, {"name": "Survival8", "disabled": true, "tID": "Island Invasion", "tileSetPrefix": null, "bgPrefix": "survival_water_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_island_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Rushalisk", "id": 60, "scId": 1500045, "rawTID": "BATTLE_ROYALE_8"}, {"name": "SurvivalTeam8", "disabled": true, "tID": "Island Invasion", "tileSetPrefix": null, "bgPrefix": "survival_water_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_island_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Rushalisk", "id": 61, "scId": 1500046, "rawTID": "BATTLE_ROYALE_8"}, {"name": "Heist6", "disabled": true, "tID": "Forks Out", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 62, "scId": 1500047, "rawTID": "BANKHEIST_6"}, {"name": "Gemgrab11", "disabled": true, "tID": "Flooded Mine", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_11", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": "FatBubblyDragon", "id": 63, "scId": 1500048, "rawTID": "GOLDRUSH_11"}, {"name": "Heist7", "disabled": true, "tID": "Cactus Corridor", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_canyon", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Schmedricks", "id": 64, "scId": 1500049, "rawTID": "BANKHEIST_7"}, {"name": "Ball4", "disabled": true, "tID": "Sneaky Fields", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_4", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Lex", "id": 65, "scId": 1500050, "rawTID": "BALL_4"}, {"name": "Ball6", "disabled": null, "tID": "Super Stadium", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_6", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 66, "scId": 1500051, "rawTID": "BALL_6"}, {"name": "Ball7", "disabled": true, "tID": "Puddle Splash", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_7", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Lewinham", "id": 67, "scId": 1500052, "rawTID": "BALL_7"}, {"name": "Heist8", "disabled": null, "tID": "Hot Potato", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "AlexEsteAdevarat", "id": 68, "scId": 1500053, "rawTID": "BANKHEIST_18"}, {"name": "Wanted9", "disabled": null, "tID": "Canal Grande", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_beach_ground.scw", "campaignGroundSCW": "sc3d/bgr_beach_ground_wf19.scw", "environmentSCW": "sc3d/bgr_beach.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "BountyHunter", "allowedMaps": "Wanted_9", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "thelucas2000", "id": 69, "scId": 1500054, "rawTID": "WANTED_9"}, {"name": "Survival12", "disabled": true, "tID": "Hot Maze", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Tony_A9", "id": 70, "scId": 1500055, "rawTID": "BATTLE_ROYALE_12"}, {"name": "SurvivalTeam12", "disabled": true, "tID": "Hot Maze", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Tony_A9", "id": 71, "scId": 1500056, "rawTID": "BATTLE_ROYALE_12"}, {"name": "Raid1", "disabled": null, "tID": "Machine Zone", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_raid", "gameMode": "Raid", "allowedMaps": "Raid_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 72, "scId": 1500057, "rawTID": "RAID_2"}, {"name": "GGxmas1", "disabled": true, "tID": "Snow Fort", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Wanted_3", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 73, "scId": 1500058, "rawTID": "GOLDRUSH_XMAS_1"}, {"name": "GGxmas2", "disabled": true, "tID": "Holiday Chill", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_7", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 74, "scId": 1500059, "rawTID": "GOLDRUSH_XMAS_2"}, {"name": "GGxmas3", "disabled": true, "tID": "Snowball Fight", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_5", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 75, "scId": 1500060, "rawTID": "GOLDRUSH_XMAS_3"}, {"name": "GGxmas4", "disabled": true, "tID": "Ice Block Rock", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_1", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 76, "scId": 1500061, "rawTID": "GOLDRUSH_XMAS_4"}, {"name": "GGxmas5", "disabled": true, "tID": "Snowy Siege", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_4", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 77, "scId": 1500062, "rawTID": "GOLDRUSH_XMAS_5"}, {"name": "GGxmas6", "disabled": true, "tID": "Gift Wrap", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_9", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 78, "scId": 1500063, "rawTID": "GOLDRUSH_XMAS_6"}, {"name": "GGxmas7", "disabled": true, "tID": "Spruce Up", "tileSetPrefix": "snowy_", "bgPrefix": null, "locationTheme": "Snowy", "groundSCW": "sc3d/bgr_snowy_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_snowy.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_snow", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_3", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Snow_brawl", "communityCredit": null, "id": 79, "scId": 1500064, "rawTID": "GOLDRUSH_XMAS_7"}, {"name": "BossFight3", "disabled": true, "tID": "Hunting Party", "tileSetPrefix": null, "bgPrefix": null, "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_boss", "gameMode": "BossFight", "allowedMaps": "BossFight_3", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 80, "scId": 1500065, "rawTID": "BOSS_6"}, {"name": "BossFight4", "disabled": true, "tID": "Table Flip", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_boss", "gameMode": "BossFight", "allowedMaps": "BossFight_4", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 81, "scId": 1500066, "rawTID": "BOSS_5"}, {"name": "Raid2", "disabled": null, "tID": "Metal Scrap", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_raid", "gameMode": "Raid", "allowedMaps": "Raid_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 82, "scId": 1500067, "rawTID": "RAID_3"}, {"name": "Coop4", "disabled": null, "tID": "Vault Defenders", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_coop", "gameMode": "Survival", "allowedMaps": "Coop_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 83, "scId": 1500068, "rawTID": "COOP_3"}, {"name": "Heist9", "disabled": true, "tID": "Split Second", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_9", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 84, "scId": 1500069, "rawTID": "BANKHEIST_9"}, {"name": "Heist10", "disabled": true, "tID": "Rolling Rumble", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": "sc3d/bgr_old_town_ground_wf19.scw", "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": null, "id": 85, "scId": 1500070, "rawTID": "BANKHEIST_10"}, {"name": "Heist11", "disabled": true, "tID": "Twist and Shoot", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_11", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "AeroNautikks", "id": 86, "scId": 1500071, "rawTID": "BANKHEIST_11"}, {"name": "Heist12", "disabled": true, "tID": "Bridge Too Far", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Zagibulenka", "id": 87, "scId": 1500072, "rawTID": "BANKHEIST_12"}, {"name": "Heist13", "disabled": true, "tID": "Corner Case", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 88, "scId": 1500073, "rawTID": "BANKHEIST_13"}, {"name": "LNYHeist1", "disabled": true, "tID": "Split Second", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_9", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 89, "scId": 1500074, "rawTID": "BANKHEIST_9"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYHeist2", "disabled": true, "tID": "Rolling Rumble", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 91, "scId": 1500075, "rawTID": "BANKHEIST_10"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYHeist3", "disabled": true, "tID": "Twist and Shoot", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_11", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": "AeroNautikks", "id": 93, "scId": 1500076, "rawTID": "BANKHEIST_11"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYHeist4", "disabled": true, "tID": "Bridge Too Far", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": "Zagibulenka", "id": 95, "scId": 1500077, "rawTID": "BANKHEIST_12"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYHeist5", "disabled": true, "tID": "Corner Case", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 97, "scId": 1500078, "rawTID": "BANKHEIST_13"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Wanted10", "disabled": true, "tID": "Canal Grande", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "BountyHunter", "allowedMaps": "Wanted_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 99, "scId": 1500079, "rawTID": "WANTED_9"}, {"name": "Wanted11", "disabled": true, "tID": "Bull Pen", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "BountyHunter", "allowedMaps": "Wanted_11", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 100, "scId": 1500080, "rawTID": "WANTED_11"}, {"name": "Wanted12", "disabled": true, "tID": "Excel", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "BountyHunter", "allowedMaps": "Wanted_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 101, "scId": 1500081, "rawTID": "WANTED_12"}, {"name": "Wanted13", "disabled": null, "tID": "Layer Cake", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": "sc3d/bgr_retropolis_ground_wf19.scw", "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "OwenReds", "id": 102, "scId": 1500082, "rawTID": "WANTED_13"}, {"name": "Wanted14", "disabled": true, "tID": "Dry Season", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": null, "id": 103, "scId": 1500083, "rawTID": "WANTED_14"}, {"name": "LNYWanted1", "disabled": true, "tID": "Canal Grande", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "BountyHunter", "allowedMaps": "Wanted_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 104, "scId": 1500084, "rawTID": "WANTED_9"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYWanted2", "disabled": true, "tID": "Bull Pen", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "BountyHunter", "allowedMaps": "Wanted_11", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 106, "scId": 1500085, "rawTID": "WANTED_11"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYWanted3", "disabled": true, "tID": "Excel", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "BountyHunter", "allowedMaps": "Wanted_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 108, "scId": 1500086, "rawTID": "WANTED_12"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYWanted4", "disabled": true, "tID": "Layer Cake", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "BountyHunter", "allowedMaps": "Wanted_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": "OwenReds", "id": 110, "scId": 1500087, "rawTID": "WANTED_13"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYWanted5", "disabled": true, "tID": "Dry Season", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "BountyHunter", "allowedMaps": "Wanted_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 112, "scId": 1500088, "rawTID": "WANTED_14"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYGemgrab1", "disabled": true, "tID": "Stone Fort", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "CoinRush", "allowedMaps": "Wanted_3", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 114, "scId": 1500089, "rawTID": "GOLDRUSH_4"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYGemgrab2", "disabled": true, "tID": "Undermine", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_5_LNY", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 116, "scId": 1500090, "rawTID": "GOLDRUSH_5"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "LNYGemgrab3", "disabled": true, "tID": "Deep Siege", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_old_town.scw", "sc3d/bgr_old_town_decos_lny.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_cny", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_4_LNY", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Cny_levels", "communityCredit": null, "id": 118, "scId": 1500091, "rawTID": "GOLDRUSH_6"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Ball8", "disabled": true, "tID": "Pool Party", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_8", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 120, "scId": 1500092, "rawTID": "WANTED_10"}, {"name": "Survival10", "disabled": true, "tID": "Dune Drift", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 121, "scId": 1500093, "rawTID": "BATTLE_ROYALE_10"}, {"name": "SurvivalTeam10", "disabled": true, "tID": "Dune Drift", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 122, "scId": 1500094, "rawTID": "BATTLE_ROYALE_10"}, {"name": "Survival13", "disabled": true, "tID": "Stormy Plains", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 123, "scId": 1500095, "rawTID": "BATTLE_ROYALE_D2"}, {"name": "SurvivalTeam13", "disabled": true, "tID": "Stormy Plains", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 124, "scId": 1500096, "rawTID": "BATTLE_ROYALE_D2"}, {"name": "Siege1", "disabled": true, "tID": "Bot Drop", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 125, "scId": 1500097, "rawTID": "ROBO_WARS_6"}, {"name": "Siege2", "disabled": null, "tID": "Some Assembly Required", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": "sc3d/bgr_warehouse_ground_wf19.scw", "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 126, "scId": 1500098, "rawTID": "ROBO_WARS_8"}, {"name": "Siege3", "disabled": null, "tID": "Nuts & Bolts", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 127, "scId": 1500099, "rawTID": "ROBO_WARS_7"}, {"name": "CRoyale", "disabled": true, "tID": "Royal Tribute", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_jungle_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_jungle.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_oasis", "gameMode": "AttackDefend", "allowedMaps": "CRoyale", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "DuccioCh", "id": 128, "scId": 1500100, "rawTID": "BANKHEIST_14"}, {"name": "Survival14", "disabled": true, "tID": "Dark Passage", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Maxymus", "id": 129, "scId": 1500101, "rawTID": "BATTLE_ROYALE_17"}, {"name": "SurvivalTeam14", "disabled": true, "tID": "Dark Passage", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Maxymus", "id": 130, "scId": 1500102, "rawTID": "BATTLE_ROYALE_17"}, {"name": "Survival15", "disabled": true, "tID": "Ghost Point", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_15", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 131, "scId": 1500103, "rawTID": "BATTLE_ROYALE_13"}, {"name": "SurvivalTeam15", "disabled": true, "tID": "Ghost Point", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_15", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 132, "scId": 1500104, "rawTID": "BATTLE_ROYALE_13"}, {"name": "Survival16", "disabled": true, "tID": "Erratic Blocks", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_16", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Meme-grabbee", "id": 133, "scId": 1500105, "rawTID": "BATTLE_ROYALE_19"}, {"name": "SurvivalTeam16", "disabled": true, "tID": "Erratic Blocks", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_16", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Meme-grabbee", "id": 134, "scId": 1500106, "rawTID": "BATTLE_ROYALE_19"}, {"name": "Survival17", "disabled": true, "tID": "River Rush", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_17", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 135, "scId": 1500107, "rawTID": "BATTLE_ROYALE_23"}, {"name": "SurvivalTeam17", "disabled": true, "tID": "River Rush", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_17", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 136, "scId": 1500108, "rawTID": "BATTLE_ROYALE_23"}, {"name": "Survival18", "disabled": true, "tID": "Eye of the Storm", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_18", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Pentagonal Cubes", "id": 137, "scId": 1500109, "rawTID": "BATTLE_ROYALE_21"}, {"name": "SurvivalTeam18", "disabled": true, "tID": "Eye of the Storm", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_18", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Pentagonal Cubes", "id": 138, "scId": 1500110, "rawTID": "BATTLE_ROYALE_21"}, {"name": "Gemgrab12", "disabled": true, "tID": "Diamond Dust", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_12", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": "ash", "id": 139, "scId": 1500111, "rawTID": "GOLDRUSH_12"}, {"name": "Gemgrab13", "disabled": true, "tID": "Four Squared", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_13", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Electra Drake", "id": 140, "scId": 1500112, "rawTID": "GOLDRUSH_13"}, {"name": "Gemgrab14", "disabled": true, "tID": "Bouncing Echo", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_10", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Lewinham", "id": 141, "scId": 1500113, "rawTID": "GOLDRUSH_23"}, {"name": "Gemgrab15", "disabled": null, "tID": "Escape Velocity", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_town", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_15", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Mordeus", "id": 142, "scId": 1500114, "rawTID": "GOLDRUSH_17"}, {"name": "Gemgrab16", "disabled": null, "tID": "Double Swoosh", "tileSetPrefix": "mortuary_", "bgPrefix": null, "locationTheme": "Mortuary", "groundSCW": "sc3d/bgr_mortuary_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_16", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "benci", "id": 143, "scId": 1500115, "rawTID": "GOLDRUSH_25"}, {"name": "Gemgrab17", "disabled": null, "tID": "Cell Division", "tileSetPrefix": "mortuary_", "bgPrefix": null, "locationTheme": "Mortuary", "groundSCW": "sc3d/bgr_mortuary_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_17", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Lab2point0", "id": 144, "scId": 1500116, "rawTID": "GOLDRUSH_24"}, {"name": "Gemgrab18", "disabled": true, "tID": "Spring Trap", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_darryls_ship.scw", "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_18", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "freezeemilk", "id": 145, "scId": 1500117, "rawTID": "GOLDRUSH_19"}, {"name": "Ball9", "disabled": null, "tID": "Pinball Dreams", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": "sc3d/bgr_grassfield_ground_wf19.scw", "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_9", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 146, "scId": 1500118, "rawTID": "BALL_15"}, {"name": "Biggame1", "disabled": null, "tID": "Team Day", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_boss", "gameMode": "BossFight", "allowedMaps": "Biggame_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 147, "scId": 1500119, "rawTID": "BOSS_4"}, {"name": "Biggame2", "disabled": null, "tID": "Chew Out", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_boss", "gameMode": "BossFight", "allowedMaps": "Biggame_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 148, "scId": 1500120, "rawTID": "BOSS_3"}, {"name": "Training", "disabled": null, "tID": null, "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_tutorial_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine_tutorial.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_welcome", "gameMode": "Training", "allowedMaps": "Training", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 149, "scId": 1500121}, {"name": "Gemgrab19", "disabled": null, "tID": "Minecart Madness", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground_tracks_1.scw", "campaignGroundSCW": "sc3d/bgr_mine_ground_tracks_1_wf19.scw", "environmentSCW": ["sc3d/bgr_mine_tracks_1.scw", "sc3d/bgr_mine_tracks_1_lights.scw", "sc3d/bgr_mine_tracks_1_boom_l_top.scw", "sc3d/bgr_mine_tracks_1_boom_l_bot.scw", "sc3d/bgr_mine_tracks_1_boom_r_top.scw", "sc3d/bgr_mine_tracks_1_boom_r_bot.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_19", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 150, "scId": 1500122, "rawTID": "GOLDRUSH_31"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Survival19", "disabled": true, "tID": "Flying Fantasies", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_19", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 156, "scId": 1500123, "rawTID": "BATTLE_ROYALE_28"}, {"name": "SurvivalTeam19", "disabled": true, "tID": "Flying Fantasies", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": "sc3d/bgr_canyon_showdown_ground_wf19.scw", "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_19", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 157, "scId": 1500124, "rawTID": "BATTLE_ROYALE_28"}, {"name": "Survival20", "disabled": true, "tID": "Royal Runway", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_20", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 158, "scId": 1500125, "rawTID": "BATTLE_ROYALE_31"}, {"name": "SurvivalTeam20", "disabled": true, "tID": "Royal Runway", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_20", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 159, "scId": 1500126, "rawTID": "BATTLE_ROYALE_31"}, {"name": "Siege4", "disabled": null, "tID": "Junk Park", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": "sc3d/bgr_warehouse_ground_wf19.scw", "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 160, "scId": 1500127, "rawTID": "ROBO_WARS_13"}, {"name": "Siege5", "disabled": true, "tID": "Sparring Match", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 161, "scId": 1500128, "rawTID": "ROBO_WARS_11"}, {"name": "Siege6", "disabled": true, "tID": "Straight Shot", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 162, "scId": 1500129, "rawTID": "ROBO_WARS_10"}, {"name": "Siege7", "disabled": true, "tID": "Assembly Attack", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 163, "scId": 1500130, "rawTID": "ROBO_WARS_4"}, {"name": "Siege8", "disabled": true, "tID": "Robo Highway", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 164, "scId": 1500131, "rawTID": "ROBO_WARS_12"}, {"name": "Ball10", "disabled": null, "tID": "Center Stage", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": "sc3d/bgr_grassfield_ground_wf19.scw", "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_10", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 165, "scId": 1500132, "rawTID": "BALL_17"}, {"name": "Raid4", "disabled": null, "tID": "Danger Zone", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/ui.sc", "iconExportName": "event_raid", "gameMode": "Raid", "allowedMaps": "Raid_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 166, "scId": 1500133, "rawTID": "ROBO_WARS_14"}, {"name": "Ball11", "disabled": true, "tID": "Curveball", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_brawlball", "gameMode": "LaserBall", "allowedMaps": "Laserball_11", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "ash", "id": 167, "scId": 1500134, "rawTID": "BALL_21"}, {"name": "Survival21", "disabled": true, "tID": "Superstar", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_21", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 168, "scId": 1500135, "rawTID": "BATTLE_ROYALE_16"}, {"name": "SurvivalTeam21", "disabled": true, "tID": "Superstar", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_21", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 169, "scId": 1500136, "rawTID": "BATTLE_ROYALE_16"}, {"name": "Heist14", "disabled": null, "tID": "Pit Stop", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": "sc3d/bgr_retropolis_ground_wf19.scw", "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Lex", "id": 170, "scId": 1500137, "rawTID": "BANKHEIST_14B"}, {"name": "Heist15", "disabled": true, "tID": "Side Story", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_15", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "OwenReds", "id": 171, "scId": 1500138, "rawTID": "BANKHEIST_15"}, {"name": "Gemgrab20", "disabled": null, "tID": "Cross Cut", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_20", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": null, "id": 172, "scId": 1500139, "rawTID": "GOLDRUSH_21"}, {"name": "Gemgrab21", "disabled": true, "tID": "Stock Crash", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_21", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Frep", "id": 173, "scId": 1500140, "rawTID": "GOLDRUSH_21C"}, {"name": "Siege9", "disabled": true, "tID": "Mecha Match", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_9", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mr. Lee", "id": 174, "scId": 1500141, "rawTID": "ROBO_WARS_2"}, {"name": "Siege10", "disabled": null, "tID": "Factory Rush", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "Warehouse", "groundSCW": "sc3d/bgr_warehouse_ground.scw", "campaignGroundSCW": "sc3d/bgr_warehouse_ground_wf19.scw", "environmentSCW": "sc3d/bgr_warehouse.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_robowars", "gameMode": "RoboWars", "allowedMaps": "Siege_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "G.W.B.S.", "id": 175, "scId": 1500142, "rawTID": "ROBO_WARS_3"}, {"name": "Ball12", "disabled": null, "tID": "Beach Ball", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "GrassfieldBeachBall", "groundSCW": "sc3d/bgr_beach_brawl_ball_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_beach_brawl_ball.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_12", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "FeFaLah", "id": 176, "scId": 1500143, "rawTID": "BALL_22"}, {"name": "Ball13", "disabled": null, "tID": "Sunny Soccer", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "GrassfieldBeachBall", "groundSCW": "sc3d/bgr_beach_brawl_ball_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_beach_brawl_ball.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_13", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Chief Pekka", "id": 177, "scId": 1500144, "rawTID": "BALL_23"}, {"name": "Heist16", "disabled": true, "tID": "Beachcombers", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_beach_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_beach.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_16", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Thomas P.", "id": 178, "scId": 1500145, "rawTID": "BANKHEIST_16"}, {"name": "Heist17", "disabled": null, "tID": "Sandy Gems", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_beach_ground.scw", "campaignGroundSCW": "sc3d/bgr_beach_ground_wf19.scw", "environmentSCW": "sc3d/bgr_beach.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_17", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "GO away", "id": 179, "scId": 1500146, "rawTID": "BANKHEIST_17"}, {"name": "Gemgrab22", "disabled": true, "tID": "Acute Angle", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": "sc3d/bgr_retropolis_ground_wf19.scw", "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_22", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Milan R.", "id": 180, "scId": 1500147, "rawTID": "GOLDRUSH_22"}, {"name": "Gemgrab23", "disabled": true, "tID": "Snake Cavern", "tileSetPrefix": "mine_", "bgPrefix": null, "locationTheme": "Mine", "groundSCW": "sc3d/bgr_mine_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mine.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_gemmine", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_23", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "OwenReds", "id": 181, "scId": 1500148, "rawTID": "GOLDRUSH_33"}, {"name": "Wanted15", "disabled": true, "tID": "Sunstroke", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_beach_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_beach.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "BountyHunter", "allowedMaps": "Wanted_15", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Justin W.", "id": 182, "scId": 1500149, "rawTID": "WANTED_16"}, {"name": "Wanted16", "disabled": true, "tID": "Burning Sands", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_beach_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_beach.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "BountyHunter", "allowedMaps": "Wanted_16", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Ossama H.", "id": 183, "scId": 1500150, "rawTID": "WANTED_17"}, {"name": "Heist18", "disabled": true, "tID": "Figure 8", "tileSetPrefix": "town_", "bgPrefix": null, "locationTheme": "OldTown", "groundSCW": "sc3d/bgr_old_town_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_old_town.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_18", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Mordeus", "id": 184, "scId": 1500151, "rawTID": "BANKHEIST_18B"}, {"name": "Survival22", "disabled": true, "tID": "Deserted Vertex", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_22", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "feimao", "id": 185, "scId": 1500152, "rawTID": "BATTLE_ROYALE_22A"}, {"name": "SurvivalTeam22", "disabled": true, "tID": "Deserted Vertex", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_22", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "feimao", "id": 186, "scId": 1500153, "rawTID": "BATTLE_ROYALE_22A"}, {"name": "Survival23", "disabled": true, "tID": "Outrageous Outback", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_23", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Cloudy", "id": 187, "scId": 1500154, "rawTID": "BATTLE_ROYALE_23A"}, {"name": "SurvivalTeam23", "disabled": true, "tID": "Outrageous Outback", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_23", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Cloudy", "id": 188, "scId": 1500155, "rawTID": "BATTLE_ROYALE_23A"}, {"name": "Survival24", "disabled": true, "tID": "Barren Badlands", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_24", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 189, "scId": 1500156, "rawTID": "BATTLE_ROYALE_24A"}, {"name": "SurvivalTeam24", "disabled": true, "tID": "Barren Badlands", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_24", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 190, "scId": 1500157, "rawTID": "BATTLE_ROYALE_24A"}, {"name": "Gemgrab24", "disabled": true, "tID": "Royal Flush", "tileSetPrefix": "retropolis_", "bgPrefix": null, "locationTheme": "Retropolis", "groundSCW": "sc3d/bgr_retropolis_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_retropolis.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_retropolis", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_24", "shadowR": 0, "shadowG": 0, "shadowB": 100, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "Milan Ryba", "id": 191, "scId": 1500158, "rawTID": "GOLDRUSH_24A"}, {"name": "Wanted17", "disabled": true, "tID": "Overgrown Oasis", "tileSetPrefix": "oasis_", "bgPrefix": null, "locationTheme": "Oasis", "groundSCW": "sc3d/bgr_jungle_ground.scw", "campaignGroundSCW": "sc3d/bgr_jungle_ground_wf19.scw", "environmentSCW": "sc3d/bgr_jungle.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_oasis", "gameMode": "BountyHunter", "allowedMaps": "Wanted_17", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Retropolis_battle", "communityCredit": "ToxinLab", "id": 192, "scId": 1500159, "rawTID": "WANTED_17A"}, {"name": "Ball14", "disabled": null, "tID": "Field Goal", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_14", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 193, "scId": 1500160, "rawTID": "BALL_14A"}, {"name": "Ball15", "disabled": null, "tID": "Post Haste", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_15", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Silver Beast", "id": 194, "scId": 1500161, "rawTID": "BALL_15A"}, {"name": "Ball16", "disabled": null, "tID": "Slalom Slam", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_16", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 195, "scId": 1500162, "rawTID": "BALL_16A"}, {"name": "Ball17", "disabled": null, "tID": "Coarse Course", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": "sc3d/bgr_grassfield_ground_wf19.scw", "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_17", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Ellisimo", "id": 196, "scId": 1500163, "rawTID": "BALL_17A"}, {"name": "Ball18", "disabled": null, "tID": "Power Shot", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_18", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Frep", "id": 197, "scId": 1500164, "rawTID": "BALL_18A"}, {"name": "Survival25", "disabled": true, "tID": "Critical Crossing", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_25", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 198, "scId": 1500165, "rawTID": "BATTLE_ROYALE_30A"}, {"name": "SurvivalTeam25", "disabled": true, "tID": "Critical Crossing", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_25", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 199, "scId": 1500166, "rawTID": "BATTLE_ROYALE_30A"}, {"name": "BossRace1", "disabled": true, "tID": "Last Stand", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 200, "scId": 1500167, "rawTID": "BOSS_RACE_1"}, {"name": "BossRace2", "disabled": true, "tID": "Boss Drop", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 201, "scId": 1500168, "rawTID": "BOSS_RACE_2"}, {"name": "BossRace3", "disabled": true, "tID": "Frenemies", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 202, "scId": 1500169, "rawTID": "BOSS_RACE_3"}, {"name": "BossRace4", "disabled": true, "tID": "Bulk Up", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 203, "scId": 1500170, "rawTID": "BOSS_RACE_4"}, {"name": "BossRace5", "disabled": true, "tID": "Training Montage", "tileSetPrefix": null, "bgPrefix": "survival_water_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_island_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 204, "scId": 1500171, "rawTID": "BOSS_RACE_5"}, {"name": "BossRace6", "disabled": true, "tID": "Maze Mayhem", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 205, "scId": 1500172, "rawTID": "BOSS_RACE_6"}, {"name": "BossRace7", "disabled": true, "tID": "Scottish Standoff", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 206, "scId": 1500173, "rawTID": "BOSS_RACE_7"}, {"name": "SoloBounty1", "disabled": null, "tID": "Shore Shot", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "_Shqdowz_", "id": 207, "scId": 1500174, "rawTID": "LONESTAR_02"}, {"name": "SoloBounty2", "disabled": null, "tID": "Not So Safe", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Cindy", "id": 208, "scId": 1500175, "rawTID": "LONESTAR_03"}, {"name": "SoloBounty3", "disabled": null, "tID": "Stolen Valor", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "iEnjoy", "id": 209, "scId": 1500176, "rawTID": "LONESTAR_04"}, {"name": "SoloBounty4", "disabled": null, "tID": "Cauliflower", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "DustyBud", "id": 210, "scId": 1500177, "rawTID": "LONESTAR_05"}, {"name": "SoloBounty5", "disabled": null, "tID": "Close Call", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Frep", "id": 211, "scId": 1500178, "rawTID": "LONESTAR_06"}, {"name": "SoloBounty6", "disabled": null, "tID": "Spinning Solo", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "ToxinLab", "id": 212, "scId": 1500179, "rawTID": "LONESTAR_07"}, {"name": "SoloBounty7", "disabled": null, "tID": "Crossroads", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_lone_star", "gameMode": "SoloBounty", "allowedMaps": "Solobounty_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 213, "scId": 1500180, "rawTID": "LONESTAR_08"}, {"name": "BossRace8", "disabled": null, "tID": "Peak Oil", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "-iLast", "id": 214, "scId": 1500181, "rawTID": "BOSS_RACE_8"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "BossRace9", "disabled": null, "tID": "Cuckoo Coup", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_9", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Binnyboy", "id": 216, "scId": 1500182, "rawTID": "BOSS_RACE_9"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "BossRace10", "disabled": null, "tID": "Scrap Metal", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_10", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "OwenReds", "id": 218, "scId": 1500183, "rawTID": "BOSS_RACE_10"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "BossRace11", "disabled": null, "tID": "Funky Punk", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_11", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Mordeus", "id": 220, "scId": 1500184, "rawTID": "BOSS_RACE_11"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "BossRace12", "disabled": null, "tID": "Clockwork", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Chief Pekka", "id": 222, "scId": 1500185, "rawTID": "BATTLE_ROYALE_18"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "BossRace13", "disabled": null, "tID": "Alligator Alley", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_13", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "_Shqdowz_", "id": 224, "scId": 1500186, "rawTID": "BOSS_RACE_13"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "BossRace14", "disabled": null, "tID": "Tight Stuff", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_mortuary_showdown.scw", "sc3d/bgr_mortuary_showdown_decos_hw.scw"], "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_takedown", "gameMode": "BossRace", "allowedMaps": "BossRace_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Cloudy", "id": 226, "scId": 1500187, "rawTID": "BOSS_RACE_14"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Graves1", "disabled": null, "tID": "Skull Creek", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 228, "scId": 1500188, "rawTID": "BATTLE_ROYALE_1"}, {"name": "GravesTeam1", "disabled": null, "tID": "Skull Creek", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 229, "scId": 1500189, "rawTID": "BATTLE_ROYALE_1"}, {"name": "Graves2", "disabled": true, "tID": "Hot Maze", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Tony_A9", "id": 230, "scId": 1500190, "rawTID": "BATTLE_ROYALE_12"}, {"name": "GravesTeam2", "disabled": true, "tID": "Hot Maze", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_12", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Tony_A9", "id": 231, "scId": 1500191, "rawTID": "BATTLE_ROYALE_12"}, {"name": "Graves3", "disabled": null, "tID": "Acid Lakes", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_33", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Mordeus", "id": 232, "scId": 1500192, "rawTID": "BATTLE_ROYALE_5"}, {"name": "GravesTeam3", "disabled": null, "tID": "Acid Lakes", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_33", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Mordeus", "id": 233, "scId": 1500193, "rawTID": "BATTLE_ROYALE_5"}, {"name": "Graves4", "disabled": null, "tID": "Ghost Point", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_15", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Mordeus", "id": 234, "scId": 1500194, "rawTID": "BATTLE_ROYALE_13"}, {"name": "GravesTeam4", "disabled": null, "tID": "Ghost Point", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_15", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Mordeus", "id": 235, "scId": 1500195, "rawTID": "BATTLE_ROYALE_13"}, {"name": "Graves5", "disabled": null, "tID": "Forsaken Falls", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Solobounty_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "ash", "id": 236, "scId": 1500196, "rawTID": "LONESTAR_01"}, {"name": "GravesTeam5", "disabled": null, "tID": "Forsaken Falls", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Solobounty_1", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "ash", "id": 237, "scId": 1500197, "rawTID": "LONESTAR_01"}, {"name": "Graves6", "disabled": null, "tID": "Dark Passage", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Maxymus", "id": 238, "scId": 1500198, "rawTID": "BATTLE_ROYALE_17"}, {"name": "GravesTeam6", "disabled": null, "tID": "Dark Passage", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_14", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Maxymus", "id": 239, "scId": 1500199, "rawTID": "BATTLE_ROYALE_17"}, {"name": "Graves7", "disabled": null, "tID": "Eye of the Storm", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_18", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Pentagonal Cubes", "id": 240, "scId": 1500200, "rawTID": "BATTLE_ROYALE_21"}, {"name": "GravesTeam7", "disabled": null, "tID": "Eye of the Storm", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_18", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": "Pentagonal Cubes", "id": 241, "scId": 1500201, "rawTID": "BATTLE_ROYALE_21"}, {"name": "CaptureTheFlag2", "disabled": true, "tID": "Sidelines", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_2", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": null, "id": 242, "scId": 1500202, "rawTID": "CTF_2"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "CaptureTheFlag3", "disabled": true, "tID": "Precious Presents", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_3", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Binnyboy", "id": 244, "scId": 1500203, "rawTID": "CTF_3"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "CaptureTheFlag4", "disabled": true, "tID": "Holiday Heist", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_4", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Binnyboy", "id": 246, "scId": 1500204, "rawTID": "CTF_4"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "CaptureTheFlag5", "disabled": true, "tID": "Cheery Getaway", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_5", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "OwenReds", "id": 248, "scId": 1500205, "rawTID": "CTF_5"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "CaptureTheFlag6", "disabled": true, "tID": "Stocking Stuffer", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "ToxinLab", "id": 250, "scId": 1500206, "rawTID": "CTF_6"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "CaptureTheFlag7", "disabled": true, "tID": "Naughty Elves", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_7", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "DustyBud", "id": 252, "scId": 1500207, "rawTID": "CTF_7"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "CaptureTheFlag8", "disabled": true, "tID": "Best Kind Of Gift", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CaptureTheFlag", "allowedMaps": "CaptureTheFlag_8", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Cloudy", "id": 254, "scId": 1500208, "rawTID": "CTF_8"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab25", "disabled": null, "tID": "Time Out", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_25", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Cloudy", "id": 256, "scId": 1500209, "rawTID": "GOLDRUSH_35"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab26", "disabled": null, "tID": "Swirling Storm", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_26", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Cindy", "id": 258, "scId": 1500210, "rawTID": "GOLDRUSH_37"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab27", "disabled": null, "tID": "Excellent Escapade", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_27", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "ToxinLab", "id": 260, "scId": 1500211, "rawTID": "GOLDRUSH_38"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab28", "disabled": null, "tID": "Spare Space", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_28", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "DustyBud", "id": 262, "scId": 1500212, "rawTID": "GOLDRUSH_43"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab29", "disabled": null, "tID": "Shabby Shells", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_29", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "OwenReds", "id": 264, "scId": 1500213, "rawTID": "GOLDRUSH_44"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab30", "disabled": null, "tID": "Secret Surprise", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_30", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Chief Pekka", "id": 266, "scId": 1500214, "rawTID": "GOLDRUSH_45"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Gemgrab31", "disabled": null, "tID": "Green Deck", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "CoinRush", "allowedMaps": "Gemgrab_31", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Mystical33", "id": 268, "scId": 1500215, "rawTID": "GOLDRUSH_36"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Heist19", "disabled": null, "tID": "Bandit Cove", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_19", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Chief Pekka", "id": 270, "scId": 1500216, "rawTID": "BANKHEIST_23"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Heist20", "disabled": null, "tID": "Tornado Ring", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "AttackDefend", "allowedMaps": "Bankheist_20", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Mystical33", "id": 272, "scId": 1500217, "rawTID": "BANKHEIST_20"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Wanted18", "disabled": null, "tID": "Deeper Danger", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "BountyHunter", "allowedMaps": "Wanted_18", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "Bruno", "id": 274, "scId": 1500218, "rawTID": "WANTED_23"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Wanted19", "disabled": null, "tID": "Land Ahoy", "tileSetPrefix": "darryls_", "bgPrefix": null, "locationTheme": "DarrylsShip", "groundSCW": "sc3d/bgr_darryls_ship_ground.scw", "campaignGroundSCW": null, "environmentSCW": ["sc3d/bgr_darryls_ship.scw", "sc3d/bgr_darryls_ship_decos_xmas.scw"], "maskedEnvironmentSCW": "sc3d/bgr_darryls_ship_hold.scw", "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_pirates", "gameMode": "BountyHunter", "allowedMaps": "Wanted_19", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "Pirate_Brawl_Ingame", "communityCredit": "TCGLouis", "id": 276, "scId": 1500219, "rawTID": "WANTED_20"}, {"name": null, "disabled": null, "tID": null, "tileSetPrefix": null, "bgPrefix": null, "locationTheme": null, "groundSCW": null, "campaignGroundSCW": null, "environmentSCW": null, "maskedEnvironmentSCW": null, "tileSetRedAdd": null, "tileSetGreenAdd": null, "tileSetBlueAdd": null, "tileSetRedMul": null, "tileSetGreenMul": null, "tileSetBlueMul": null, "iconSWF": null, "iconExportName": null, "gameMode": null, "allowedMaps": null, "shadowR": null, "shadowG": null, "shadowB": null, "shadowA": null, "music": null, "communityCredit": null}, {"name": "Survival26", "disabled": null, "tID": "Point of View", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_26", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Frep", "id": 278, "scId": 1500220, "rawTID": "BATTLE_ROYALE_41"}, {"name": "SurvivalTeam26", "disabled": null, "tID": "Point of View", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_26", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Frep", "id": 279, "scId": 1500221, "rawTID": "BATTLE_ROYALE_41"}, {"name": "Survival27", "disabled": null, "tID": "Circular Canyon", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_27", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "The Red Brawler", "id": 280, "scId": 1500222, "rawTID": "BATTLE_ROYALE_35"}, {"name": "SurvivalTeam27", "disabled": null, "tID": "Circular Canyon", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_27", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "The Red Brawler", "id": 281, "scId": 1500223, "rawTID": "BATTLE_ROYALE_35"}, {"name": "Survival28", "disabled": null, "tID": "Rocky Blocks", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_28", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Gary 114", "id": 282, "scId": 1500224, "rawTID": "BATTLE_ROYALE_40"}, {"name": "SurvivalTeam28", "disabled": null, "tID": "Rocky Blocks", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_28", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Gary 114", "id": 283, "scId": 1500225, "rawTID": "BATTLE_ROYALE_40"}, {"name": "Survival29", "disabled": null, "tID": "Stocky Stockades", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_29", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 284, "scId": 1500226, "rawTID": "BATTLE_ROYALE_43"}, {"name": "SurvivalTeam29", "disabled": null, "tID": "Stocky Stockades", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_29", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "OwenReds", "id": 285, "scId": 1500227, "rawTID": "BATTLE_ROYALE_43"}, {"name": "Survival30", "disabled": null, "tID": "Safety Center", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_30", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Cloudy", "id": 286, "scId": 1500228, "rawTID": "BATTLE_ROYALE_34"}, {"name": "SurvivalTeam30", "disabled": null, "tID": "Safety Center", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_30", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Cloudy", "id": 287, "scId": 1500229, "rawTID": "BATTLE_ROYALE_34"}, {"name": "Survival31", "disabled": null, "tID": "Core Crumble", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_31", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 288, "scId": 1500230, "rawTID": "BATTLE_ROYALE_37"}, {"name": "SurvivalTeam31", "disabled": null, "tID": "Core Crumble", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_31", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Binnyboy", "id": 289, "scId": 1500231, "rawTID": "BATTLE_ROYALE_37"}, {"name": "Survival32", "disabled": null, "tID": "Treasure Hunt", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_32", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mystical33", "id": 290, "scId": 1500232, "rawTID": "BATTLE_ROYALE_38"}, {"name": "SurvivalTeam32", "disabled": null, "tID": "Treasure Hunt", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_32", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mystical33", "id": 291, "scId": 1500233, "rawTID": "BATTLE_ROYALE_38"}, {"name": "Survival33", "disabled": true, "tID": "Two Thousand Lakes", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyale", "allowedMaps": "Survival_33", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 292, "scId": 1500234, "rawTID": "GOLDRUSH_46"}, {"name": "SurvivalTeam33", "disabled": true, "tID": "Two Thousand Lakes", "tileSetPrefix": null, "bgPrefix": "survival_", "locationTheme": "Default", "groundSCW": "sc3d/bgr_canyon_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_canyon_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_stormvalley", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_33", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "BattleMusic", "communityCredit": "Mordeus", "id": 293, "scId": 1500235, "rawTID": "GOLDRUSH_46"}, {"name": "Ball19", "disabled": true, "tID": "Bank Shot", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_19", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 294, "scId": 1500236, "rawTID": "BALL_8"}, {"name": "Ball20", "disabled": true, "tID": "Playbox", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_20", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 295, "scId": 1500237, "rawTID": "BALL_9"}, {"name": "Ball21", "disabled": null, "tID": "Penalty Kick", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_21", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 296, "scId": 1500238, "rawTID": "BALL_10"}, {"name": "Ball22", "disabled": true, "tID": "Substitute", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_22", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 297, "scId": 1500239, "rawTID": "BALL_11"}, {"name": "Ball23", "disabled": true, "tID": "Happy Feet", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_23", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 298, "scId": 1500240, "rawTID": "BALL_12"}, {"name": "Ball24", "disabled": true, "tID": "Square Off", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_24", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 299, "scId": 1500241, "rawTID": "BALL_13"}, {"name": "Ball25", "disabled": true, "tID": "Barrel Vault", "tileSetPrefix": "grassfield_", "bgPrefix": null, "locationTheme": "Grassfield", "groundSCW": "sc3d/bgr_grassfield_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_grassfield.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_beach", "gameMode": "LaserBall", "allowedMaps": "Laserball_25", "shadowR": 0, "shadowG": 66, "shadowB": 66, "shadowA": 60, "music": "BattleMusic", "communityCredit": null, "id": 300, "scId": 1500242, "rawTID": "BALL_16"}, {"name": "Graves8", "disabled": null, "tID": "Cavern Churn", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyale", "allowedMaps": "Survival_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 301, "scId": 1500243, "rawTID": "BATTLE_ROYALE_6"}, {"name": "GravesTeam8", "disabled": null, "tID": "Cavern Churn", "tileSetPrefix": "mortuary_", "bgPrefix": "survival_", "locationTheme": "MortuaryShowdown", "groundSCW": "sc3d/bgr_mortuary_showdown_ground.scw", "campaignGroundSCW": null, "environmentSCW": "sc3d/bgr_mortuary_showdown.scw", "maskedEnvironmentSCW": null, "tileSetRedAdd": 0, "tileSetGreenAdd": 0, "tileSetBlueAdd": 0, "tileSetRedMul": 255, "tileSetGreenMul": 255, "tileSetBlueMul": 255, "iconSWF": "sc/events.sc", "iconExportName": "event_mortuary_showdown", "gameMode": "BattleRoyaleTeam", "allowedMaps": "Survival_6", "shadowR": 100, "shadowG": 0, "shadowB": 0, "shadowA": 60, "music": "Halloween_ingame", "communityCredit": null, "id": 302, "scId": 1500244, "rawTID": "BATTLE_ROYALE_6"}], "location_themes": [{"name": "Retropolis", "blocking1SCW": "sc3d/rock_retropolis_1.scw", "blocking1Mesh": "rock_retropolis_1", "blocking1AngleStep": 90, "blocking2SCW": "sc3d/car_tires.scw", "blocking2Mesh": null, "blocking2AngleStep": 90, "blocking3SCW": "sc3d/crate2.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel2.scw", "blocking4Mesh": "barrel_2", "blocking4AngleStep": 1, "respawningWallSCW": ["sc3d/potted_plant_1.scw", ["sc3d/potted_plant_1.scw", "sc3d/potted_plant_1.scw"]], "respawningWallMesh": ["potted_plant_1", ["potted_plant_1", "potted_plant_1b"]], "respawningWallAngleStep": [1, [1, 1]], "respawningForestSCW": "sc3d/grass5.scw", "forestSCW": "sc3d/grass5.scw", "destructableSCW": "sc3d/plant_retropolis_small.scw", "destructableMesh": "plant_retropolis", "destructableAngleStep": 1, "fragileSCW": "sc3d/traffic_cone.scw", "fragileMesh": "traffic_cone", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_retropolis.scw", "fenceSCW": "sc3d/retropolis_fence.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": "sc3d/mine_gem_spawn_retropolis.scw", "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 90, "mapPreviewBGColorGreen": 66, "mapPreviewBGColorBlue": 111, "mapPreviewGemGrabSpawnHoleExportName": "retropolis_spawn_hole"}, {"name": null, "blocking1SCW": ["sc3d/cargo_block_1.scw", "sc3d/cargo_block_1.scw"], "blocking1Mesh": ["cargo_block_1", "cargo_block_1b"], "blocking1AngleStep": [90, 90], "blocking2SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking2Mesh": ["Rock_2", "Rock_2b"], "blocking2AngleStep": [90, 90], "blocking3SCW": ["sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw"], "blocking3Mesh": ["crate_1", "crate_1b"], "blocking3AngleStep": null, "blocking4SCW": ["sc3d/barrel_mortuary.scw", "sc3d/barrel_mortuary.scw"], "blocking4Mesh": ["barrel_1", "barrel_1b"], "blocking4AngleStep": [1, 1], "respawningWallSCW": ["sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw"], "respawningWallMesh": ["mortuary_tree_stump", "mortuary_tree_stump"], "respawningWallAngleStep": [1, 1], "respawningForestSCW": null, "forestSCW": null, "destructableSCW": ["sc3d/bone_single.scw", "sc3d/bone_ribs.scw"], "destructableMesh": ["seaweed_deco_a", "seaweed_deco_b"], "destructableAngleStep": [1, 1], "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Snowy", "blocking1SCW": "sc3d/ice_cube1.scw", "blocking1Mesh": "ice_cube_1", "blocking1AngleStep": 90, "blocking2SCW": "sc3d/crystal1_xmas.scw", "blocking2Mesh": null, "blocking2AngleStep": 90, "blocking3SCW": "sc3d/crate_xmas.scw", "blocking3Mesh": "crate_xmas", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel_xmas.scw", "blocking4Mesh": "barrel_xmas", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/spruce_snowy.scw", "respawningWallMesh": "spruce_snowy", "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass4.scw", "forestSCW": "sc3d/grass4.scw", "destructableSCW": "sc3d/candy_cane_small.scw", "destructableMesh": null, "destructableAngleStep": 1, "fragileSCW": "sc3d/present_pile_xmas.scw", "fragileMesh": "present_pile_xmas", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_snowy.scw", "fenceSCW": "sc3d/wooden_fence.scw", "indestructibleSCW": "sc3d/ice_cube1.scw", "indestructibleMesh": "ice_cube_1", "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": "sc3d/mine_gem_spawn_ice.scw", "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 47, "mapPreviewBGColorGreen": 162, "mapPreviewBGColorBlue": 255, "mapPreviewGemGrabSpawnHoleExportName": "snowy_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "OldTown", "blocking1SCW": "sc3d/rock_town_1.scw", "blocking1Mesh": "rock_town_1", "blocking1AngleStep": 90, "blocking2SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw"], "blocking2Mesh": ["Rock_2", "Rock_2b", "tombstone_5", "tombstone_5"], "blocking2AngleStep": [90, 90], "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": ["sc3d/potted_plant_1.scw", "sc3d/potted_plant_1.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw"], "respawningWallMesh": ["potted_plant_1", "potted_plant_1b", "mortuary_tree_stump_2", "mortuary_tree_stump_2"], "respawningWallAngleStep": [1, 1], "respawningForestSCW": "sc3d/grass_town.scw", "forestSCW": "sc3d/grass_town.scw", "destructableSCW": ["sc3d/bone_single.scw", "sc3d/bone_ribs.scw", "sc3d/bone_skull.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/bone_pile.scw", "fragileMesh": "bone_pile", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_town.scw", "fenceSCW": "sc3d/wooden_fence_town.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": "sc3d/mine_gem_spawn_town.scw", "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 148, "mapPreviewBGColorGreen": 90, "mapPreviewBGColorBlue": 115, "mapPreviewGemGrabSpawnHoleExportName": "town_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Mine", "blocking1SCW": ["sc3d/rock1.scw", "sc3d/rock1.scw"], "blocking1Mesh": ["Rock_1", "Rock_1b"], "blocking1AngleStep": [90, 90], "blocking2SCW": "sc3d/crystal1.scw", "blocking2Mesh": null, "blocking2AngleStep": 90, "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/mushroom_1.scw", "respawningWallMesh": "mushroom_1", "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass1.scw", "forestSCW": "sc3d/grass1.scw", "destructableSCW": "sc3d/mushroom_1_small.scw", "destructableMesh": null, "destructableAngleStep": 1, "fragileSCW": "sc3d/bone_pile.scw", "fragileMesh": "bone_pile", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_mine.scw", "fenceSCW": "sc3d/wooden_fence.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 96, "mapPreviewBGColorGreen": 68, "mapPreviewBGColorBlue": 84, "mapPreviewGemGrabSpawnHoleExportName": "spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Warehouse", "blocking1SCW": "sc3d/rock_town_1.scw", "blocking1Mesh": "rock_town_1", "blocking1AngleStep": 90, "blocking2SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking2Mesh": ["Rock_2", "Rock_2b"], "blocking2AngleStep": [90, 90], "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": ["sc3d/potted_plant_1.scw", "sc3d/potted_plant_1.scw"], "respawningWallMesh": ["potted_plant_1", "potted_plant_1b"], "respawningWallAngleStep": [1, 1], "respawningForestSCW": "sc3d/grass_town.scw", "forestSCW": "sc3d/grass_town.scw", "destructableSCW": ["sc3d/bone_single.scw", "sc3d/bone_ribs.scw", "sc3d/bone_skull.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/bone_pile.scw", "fragileMesh": "bone_pile", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_town.scw", "fenceSCW": "sc3d/wooden_fence_town.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 148, "mapPreviewBGColorGreen": 90, "mapPreviewBGColorBlue": 115, "mapPreviewGemGrabSpawnHoleExportName": "town_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Oasis", "blocking1SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking1Mesh": ["Rock_2", "Rock_2b"], "blocking1AngleStep": [90, 90], "blocking2SCW": "sc3d/stone_ruin_1.scw", "blocking2Mesh": "stone_ruin_1", "blocking2AngleStep": 90, "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/ball_cactus.scw", "respawningWallMesh": "ball_cactus", "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass2.scw", "forestSCW": "sc3d/grass2.scw", "destructableSCW": "sc3d/plant_1_small.scw", "destructableMesh": null, "destructableAngleStep": 1, "fragileSCW": "sc3d/vase_1.scw", "fragileMesh": "vase_1", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile.scw", "fenceSCW": "sc3d/wooden_fence.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 234, "mapPreviewBGColorGreen": 180, "mapPreviewBGColorBlue": 119, "mapPreviewGemGrabSpawnHoleExportName": "spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Mortuary", "blocking1SCW": "sc3d/rock_mortuary_1.scw", "blocking1Mesh": null, "blocking1AngleStep": 90, "blocking2SCW": ["sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw"], "blocking2Mesh": ["tombstone_1", "tombstone_2", "tombstone_3", "tombstone_4", "tombstone_5"], "blocking2AngleStep": 0, "blocking3SCW": ["sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw"], "blocking3Mesh": ["crate_1", "crate_1b", "crate_1c", "crate_1d", "crate_1e"], "blocking3AngleStep": 0, "blocking4SCW": ["sc3d/barrel_mortuary.scw", "sc3d/barrel_mortuary.scw", "sc3d/barrel_mortuary.scw"], "blocking4Mesh": ["barrel_1", "barrel_1b", "barrel_1c"], "blocking4AngleStep": [1, 1, 1], "respawningWallSCW": ["sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw"], "respawningWallMesh": ["mortuary_tree_stump", "mortuary_tree_stump", "mortuary_tree_stump", "mortuary_tree_stump", "mortuary_tree_stump_2"], "respawningWallAngleStep": [1, 1, 1, 1], "respawningForestSCW": "sc3d/grass6.scw", "forestSCW": "sc3d/grass6.scw", "destructableSCW": ["sc3d/bone_single_mortuary.scw", "sc3d/bone_ribs_mortuary.scw", "sc3d/bone_skull_mortuary.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/candles_1.scw", "fragileMesh": "candles1", "fragileAngleStep": 0, "waterTileSCW": "sc3d/water_tile_mortuary.scw", "fenceSCW": "sc3d/mortuary_fence.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/tombstone_large.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": "sc3d/mine_gem_spawn_mortuary.scw", "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 74, "mapPreviewBGColorGreen": 52, "mapPreviewBGColorBlue": 82, "mapPreviewGemGrabSpawnHoleExportName": "mortuary_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": 0, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "MortuaryShowdown", "blocking1SCW": "sc3d/rock_mortuary_1.scw", "blocking1Mesh": null, "blocking1AngleStep": 90, "blocking2SCW": ["sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw", "sc3d/tombstones_1.scw"], "blocking2Mesh": ["tombstone_1", "tombstone_2", "tombstone_3", "tombstone_4", "tombstone_5"], "blocking2AngleStep": 0, "blocking3SCW": ["sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw", "sc3d/crate_mortuary.scw"], "blocking3Mesh": ["crate_1", "crate_1b", "crate_1c", "crate_1d", "crate_1e"], "blocking3AngleStep": 0, "blocking4SCW": ["sc3d/barrel_mortuary.scw", "sc3d/barrel_mortuary.scw", "sc3d/barrel_mortuary.scw"], "blocking4Mesh": ["barrel_1", "barrel_1b", "barrel_1c"], "blocking4AngleStep": [1, 1, 1], "respawningWallSCW": ["sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw", "sc3d/mortuary_tree_stump.scw"], "respawningWallMesh": ["mortuary_tree_stump", "mortuary_tree_stump", "mortuary_tree_stump", "mortuary_tree_stump", "mortuary_tree_stump_2"], "respawningWallAngleStep": [1, 1, 1, 1], "respawningForestSCW": "sc3d/grass6.scw", "forestSCW": "sc3d/grass6.scw", "destructableSCW": ["sc3d/bone_single_mortuary.scw", "sc3d/bone_ribs_mortuary.scw", "sc3d/bone_skull_mortuary.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/candles_1.scw", "fragileMesh": "candles1", "fragileAngleStep": 0, "waterTileSCW": "sc3d/water_tile_mortuary.scw", "fenceSCW": "sc3d/mortuary_fence.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/tombstone_large.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 74, "mapPreviewBGColorGreen": 52, "mapPreviewBGColorBlue": 82, "mapPreviewGemGrabSpawnHoleExportName": "mortuary_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": 0, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": 0, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Grassfield", "blocking1SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking1Mesh": ["Rock_2", "Rock_2b"], "blocking1AngleStep": [90, 90], "blocking2SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking2Mesh": ["Rock_2", "Rock_2b"], "blocking2AngleStep": [90, 90], "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/ball_cactus.scw", "respawningWallMesh": "ball_cactus", "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass2.scw", "forestSCW": "sc3d/grass2.scw", "destructableSCW": ["sc3d/bone_single.scw", "sc3d/bone_ribs.scw", "sc3d/bone_skull.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/bone_pile.scw", "fragileMesh": "bone_pile", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile.scw", "fenceSCW": "sc3d/wooden_fence.scw", "indestructibleSCW": "sc3d/brick1.scw", "indestructibleMesh": "brick_1", "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 60, "mapPreviewBGColorGreen": 150, "mapPreviewBGColorBlue": 87, "mapPreviewGemGrabSpawnHoleExportName": "spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "GrassfieldBeachBall", "blocking1SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking1Mesh": ["Rock_2", "Rock_2b"], "blocking1AngleStep": [90, 90], "blocking2SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking2Mesh": ["Rock_2", "Rock_2b"], "blocking2AngleStep": [90, 90], "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/ball_cactus.scw", "respawningWallMesh": "ball_cactus", "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass2.scw", "forestSCW": "sc3d/grass2.scw", "destructableSCW": ["sc3d/bone_single.scw", "sc3d/bone_ribs.scw", "sc3d/bone_skull.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/bone_pile.scw", "fragileMesh": "bone_pile", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile.scw", "fenceSCW": "sc3d/wooden_fence.scw", "indestructibleSCW": "sc3d/brick1.scw", "indestructibleMesh": "brick_1", "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": "BallBeach", "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 60, "mapPreviewBGColorGreen": 150, "mapPreviewBGColorBlue": 87, "mapPreviewGemGrabSpawnHoleExportName": "spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "Default", "blocking1SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking1Mesh": ["Rock_2", "Rock_2b"], "blocking1AngleStep": [90, 90], "blocking2SCW": ["sc3d/rock2.scw", "sc3d/rock2.scw"], "blocking2Mesh": ["Rock_2", "Rock_2b"], "blocking2AngleStep": [90, 90], "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/ball_cactus.scw", "respawningWallMesh": "ball_cactus", "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass2.scw", "forestSCW": "sc3d/grass3.scw", "destructableSCW": ["sc3d/bone_single.scw", "sc3d/bone_ribs.scw", "sc3d/bone_skull.scw"], "destructableMesh": ["bone_single", "bone_ribs", "bone_pile_002"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/bone_pile.scw", "fragileMesh": "bone_pile", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile.scw", "fenceSCW": "sc3d/wooden_fence.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 249, "mapPreviewBGColorGreen": 166, "mapPreviewBGColorBlue": 117, "mapPreviewGemGrabSpawnHoleExportName": "spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": 0, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "DarrylsShip", "blocking1SCW": ["sc3d/cargo_block_1.scw", "sc3d/cargo_block_1.scw"], "blocking1Mesh": ["cargo_block_1", "cargo_block_1b"], "blocking1AngleStep": [90, 90], "blocking2SCW": "sc3d/pirate_chest.scw", "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": "sc3d/crate1.scw", "blocking3Mesh": "crate_1", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel1.scw", "blocking4Mesh": "barrel_1", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/barrel_fishy.scw", "respawningWallMesh": null, "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass_seaweed.scw", "forestSCW": "sc3d/grass_seaweed.scw", "destructableSCW": "sc3d/seaweed_small.scw", "destructableMesh": ["seaweed_deco_a", "seaweed_deco_b"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/cannon_balls.scw", "fragileMesh": "cannon_balls", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_darryls_ship.scw", "fenceSCW": "sc3d/wooden_fence_darryls_ship.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": "sc3d/mine_gem_spawn_darryls_ship.scw", "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 224, "mapPreviewBGColorGreen": 122, "mapPreviewBGColorBlue": 89, "mapPreviewGemGrabSpawnHoleExportName": "darryls_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}, {"name": "DarrylsXmas", "blocking1SCW": ["sc3d/cargo_block_1.scw", "sc3d/cargo_block_1.scw"], "blocking1Mesh": ["cargo_block_1", "cargo_block_1b"], "blocking1AngleStep": [90, 90], "blocking2SCW": "sc3d/pirate_chest.scw", "blocking2Mesh": null, "blocking2AngleStep": 0, "blocking3SCW": "sc3d/crate_xmas.scw", "blocking3Mesh": "crate_xmas", "blocking3AngleStep": 0, "blocking4SCW": "sc3d/barrel_xmas.scw", "blocking4Mesh": "barrel_xmas", "blocking4AngleStep": 1, "respawningWallSCW": "sc3d/barrel_fishy.scw", "respawningWallMesh": null, "respawningWallAngleStep": 1, "respawningForestSCW": "sc3d/grass_seaweed.scw", "forestSCW": "sc3d/grass_seaweed.scw", "destructableSCW": "sc3d/seaweed_small.scw", "destructableMesh": ["seaweed_deco_a", "seaweed_deco_b"], "destructableAngleStep": [1, 1], "fragileSCW": "sc3d/cannon_balls.scw", "fragileMesh": "cannon_balls", "fragileAngleStep": 1, "waterTileSCW": "sc3d/water_tile_darryls_ship.scw", "fenceSCW": "sc3d/wooden_fence_darryls_ship.scw", "indestructibleSCW": "sc3d/indestructible_metal_1.scw", "indestructibleMesh": null, "benchSCW": "sc3d/park_bench_1.scw", "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": "sc3d/mine_gem_spawn_darryls_ship.scw", "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": 224, "mapPreviewBGColorGreen": 122, "mapPreviewBGColorBlue": 89, "mapPreviewGemGrabSpawnHoleExportName": "darryls_spawn_hole"}, {"name": null, "blocking1SCW": null, "blocking1Mesh": null, "blocking1AngleStep": null, "blocking2SCW": null, "blocking2Mesh": null, "blocking2AngleStep": null, "blocking3SCW": null, "blocking3Mesh": null, "blocking3AngleStep": null, "blocking4SCW": null, "blocking4Mesh": null, "blocking4AngleStep": null, "respawningWallSCW": null, "respawningWallMesh": null, "respawningWallAngleStep": null, "respawningForestSCW": null, "forestSCW": null, "destructableSCW": null, "destructableMesh": null, "destructableAngleStep": null, "fragileSCW": null, "fragileMesh": null, "fragileAngleStep": null, "waterTileSCW": null, "fenceSCW": null, "indestructibleSCW": null, "indestructibleMesh": null, "benchSCW": null, "laserBallSkinOverride": null, "mineGemSpawnSCWOverride": null, "lootBoxSkinOverride": null, "showdownBoostSCWOverride": null, "mapPreviewBGColorRed": null, "mapPreviewBGColorGreen": null, "mapPreviewBGColorBlue": null, "mapPreviewGemGrabSpawnHoleExportName": null}], "maps": {"Bankheist_1": ["..RR....2.2.2....RR..", "..RR.............RR..", "NNNN.............NNNN", ".................RR..", "..RR......8......RR..", "..RR.................", ".....................", "............Y........", "NNNN.RR.....Y....NNNN", "...N.RR.C.....RR.NRR.", "...N.RR.......RR.NRR.", ".RRN..........RR.N...", ".RRWWWWWW...WWWWWW...", "...WWWWWW...WWWWWW...", ".....................", ".....................", ".......NNNNNNN.......", ".....................", ".....................", "...WWWWWW...WWWWWW...", ".RRWWWWWW...WWWWWW...", ".RRN..........RR.N...", "...N.RR.......RR.NRR.", "...N.RR.C.....RR.NRR.", "NNNN.RR.....Y....NNNN", "............Y........", ".....................", "..RR.................", "..RR......8......RR..", ".................RR..", "NNNN.............NNNN", "..RR.............RR..", "..RR....1.1.1....RR.."], "Bankheist_10": ["........2.2.2........", ".....................", ".....................", ".....M.........MYY...", "..N..M....8....M.....", "..N..M.........M.....", "NNN..M.........M...CC", ".....RRRRRRRRRRR.....", ".....RRRRRRRRRRR.....", "NNNNNN...............", "........NNNNNNNN.....", "........RRRR.........", "........RRRR.......RR", "..NNN.........CC...RR", "..N..........CYY..NRR", "..N..RRYC...CYRR..NRR", "..N..RRYC...CYRR..N..", "RRN..RRYC...CYRR..N..", "RRN..YYC..........N..", "RR...CC.........NNN..", "RR.......RRRR........", ".........RRRR........", ".....NNNNNNNN........", "...............NNNNNN", ".....RRRRRRRRRRR.....", ".....RRRRRRRRRRR.....", "CC...M.........M..NNN", ".....M.........M..N..", ".....M....8....M..N..", "...YYM.........M.....", ".....................", ".....................", "........1.1.1........"], "Bankheist_11": ["........2.2.2........", ".....................", ".............N....T..", "CC...........N.......", "YY........8..NNN.....", ".............WWW.....", "......RRRCYWWWWWW....", "......RRRRYWWWWWWW...", ".....MMRRRRWWWWWWW...", "NNN...MRRRR...WWWW...", "RRR...MMM......WW....", "RRR............MM....", "RRRM.......M...MM....", "RRRM.....WWM....M....", "RR......WWWMM...M....", "RR......WWWWM........", "........MWWWM........", "........MWWWW......RR", "....M...MMWWW......RR", "....M....MWW.....MRRR", "....MM...M.......MRRR", "....MM............RRR", "....WW......MMM...RRR", "...WWWW...RRRRM...NNN", "...WWWWWWWRRRRMM.....", "...WWWWWWWYRRRR......", "....WWWWWWYCRRR......", ".....WWW.............", ".....NNN..8........YY", ".......N...........CC", "..T....N.............", ".....................", "........1.1.1........"], "Bankheist_12": ["CCRR....2.2.2...RRRYY", "CRRR............RRRRC", "RRRR............RRRRC", "RRRR................T", "..........8..........", ".....................", "....................W", "WC...........WW....WW", "WW...........WW....WW", "WW....WW....WWWW...WW", "WW....WWC...WWWW...WW", "WW....WWW...WWWW...WW", "WW....WWW...WWWW...WW", "WR....WWW....WW....RW", "RR.....WW....N.....RR", "RRR....NY....N....RRR", "RRR....N.....N....RRR", "RRR....N....YN....RRR", "RR.....N....WW.....RR", "WR....WW....WWW....RW", "WW...WWWW...WWW....WW", "WW...WWWW...WWW....WW", "WW...WWWW...CWW....WW", "WW...WWWW....WW....WW", "WW....WW...........WW", "WW....WW...........CW", "W....................", ".....................", "..........8..........", "T....................", "CRRRR............RRRR", "CRRRR............RRRC", "YYRRR...1.1.1....RRCC"], "Bankheist_13": ["........2.2.2........", ".....................", "..............RR.....", "......N......RRRR...C", "..8...N......RRRR..CC", "......N.......RR....C", "......N..............", "....NNN........YY....", "....YYCCC......YY....", ".....................", ".....................", "......NNN...NNN......", "..WWRRN.......NRRWW..", "..WWRRN.......NRRWW..", "YYWWRRN.......NRRWW..", "YYWWRRN.......NRRWW..", "..WWRRN.......NRRWW..", "..WWRRN.......NRRWWYY", "..WWRRN.......NRRWWYY", "..WWRRN.......NRRWW..", "..WWRRN.......NRRWW..", "......NNN...NNN......", ".....................", ".....................", "....YY......CCCYY....", "....YY........NNN....", "..............N......", "C....RR.......N......", "CC..RRRR......N...8..", "C...RRRR......N......", ".....RR..............", ".....................", "........1.1.1........"], "Bankheist_14": ["RR......2.2.2......RR", "RR.................RR", "NNN...............NNN", "RRN...............NRR", "RRN.......8.......NRR", "RRN...RR.....RR...NRR", "..N...RRR...RRR...N..", "......XRRRRRRRX......", "......XXXXXXXXX......", ".....................", ".....................", "RRRX.............XRRR", "RRXX.............XXRR", "RRXX..TT.....TT..XXRR", "..C...RT.....TR...C..", "......RR.....RR......", "......RR..T..RR......", "......RR.....RR......", "..C...RT.....TR...C..", "RRXX..TT.....TT..XXRR", "RRXX.............XXRR", "RRRX.............XRRR", ".....................", ".....................", "......XXXXXXXXX......", "......XRRRRRRRX......", "..N...RRR...RRR...N..", "RRN...RR.....RR...NRR", "RRN.......8.......NRR", "RRN...............NRR", "NNN...............NNN", "RR.................RR", "RR......1.1.1......RR"], "Bankheist_15": ["...........MMRRRR....", ".2.2.2.....MMRR......", "...........T.........", "......MM........MM...", "...8..MM.......MM....", "......N........MM....", "......N.......MM.....", "..MMNNN..............", "..MM.................", "..........RRR........", ".........TMMMT...TMMM", ".....RR..........RRMM", "L....RR..........RRRR", "..WWWNN...........RRR", "WWWWWWN..............", "WWWWWWN.......NWW....", "...WWWN..BBB..NWWW...", "....WWN.......NWWWWWW", "..............NWWWWWW", "RRR...........NNWWWK.", "RRRR..........RR.....", "MMRR..........RR.....", "MMMT...TMMMT.........", "........RRR..........", ".................MM..", "..............NNNMM..", ".....MM.......N......", "....MM........N......", "....MM.......MM..8...", "...MM........MM......", ".........T...........", "......RRMM.....1.1.1.", "....RRRRMM..........."], "Bankheist_16": ["YRRRR...2.2.2...RRRRY", "CRRR.............RRRC", "RRRMM...........MMRRR", "RR..MM.........MM..RR", "R....MMR..8..RMM....R", ".....CRRR...RRRC.....", "WWW..RRRRRRRRRRR..WWW", "WWW..RR.RRRRR.RR..WWW", "WWR..NN..RRR..NN..RWW", "WWRR.....NNN.....RRWW", "RRRRR...........RRRRR", "RRRRWW.........WWRRRR", ".RRWWWWN....CCWWWRRR.", "..WWWWWN.....NWWWWR..", "..WWWWWCC....NWWWWW..", "...CWWWW.....WWWWWW..", "...CWWWW.....WWWWC...", "..WWWWWW.....WWWWC...", "..WWWWWN....CCWWWWW..", "..RWWWWN.....NWWWWW..", ".RRRWWWCC....NWWWWRR.", "RRRRWW.........WWRRRR", "RRRRR...........RRRRR", "WWRR.....NNN.....RRWW", "WWR..NN..RRR..NN..RWW", "WWW..RR.RRRRR.RR..WWW", "WWW..RRRRRRRRRRR..WWW", ".....CRRR...RRRC.....", "R....MMR..8..RMM....R", "RR..MM.........MM..RR", "RRRMM...........MMRRR", "CRRR.............RRRC", "YRRRR...1.1.1...RRRRY"], "Bankheist_17": ["MMMMRR..2.2.2..RRMMMM", "M..RRR.........RRR..M", "M.RRRR.........RRRR.M", ".RRR.M.........M.RRR.", "RRR.TM....8....MT.RRR", "RRMMMM...RRR...MMMMRR", "........RRRRR........", "........MMMMM........", "R.......RRRRR.......R", "R.......RRRRR.......R", "R..MR...........RM..R", "R..MR...........RM..R", "R..MR.....R.....RM..R", "RR.MR....RRR....RM.RR", "MR.MMRR.RRMRR.RRMM.RM", "TRRR...RRMMMRR...RRRT", "TRRR...RRMMMRR...RRRT", "TRRR...RRMMMRR...RRRT", "MR.MMRR.RRMRR.RRMM.RM", "RR.MR....RRR....RM.RR", "R..MR.....R.....RM..R", "R..MR...........RM..R", "R..MR...........RM..R", "R.......RRRRR.......R", "R.......RRRRR.......R", "........MMMMM........", "........RRRRR........", "RRMMMM...RRR...MMMMRR", "RRR.TM....8....MT.RRR", ".RRR.M.........M.RRR.", "M.RRRR.........RRRR.M", "M..RRR.........RRR..M", "MMMMRR..1.1.1..RRMMMM"], "Bankheist_18": ["........2.2.2......RR", "...................RR", "MMM...........EX...RR", "MT............EX...RR", "M.........8.......NRR", "...RRXA...........NCC", "...RRXA...........NNN", "....RR...............", "..........XMMM.......", "R........RRRRMMM.....", "R...MMRRRRRRRCC......", "RR..MMRRRRRR........M", "RR...MXXX.......RRRRM", "RR....AA.......RRRRMM", "XX.............RMMMMM", "XX...................", ".....................", "...................XX", "MMMMMR.............XX", "MMRRRR.......EE....RR", "MRRRR.......XXXM...RR", "M........RRRRRRMM..RR", "......CCRRRRRRRMM...R", ".....MMMRRRR........R", ".......MMMX..........", "...............RR....", "NNN...........EXRR...", "CCN...........EXRR...", "RRN.......8.........M", "RR...XA............TM", "RR...XA...........MMM", "RR...................", "RR......1.1.1........"], "Bankheist_19": ["MMC.....2.2.2.....YYY", "RR.................CC", ".....................", ".....................", "..........8..........", "RRR...............RRR", "RRRRRRRR.....RRRRRRRM", "MMRRRMM.......MMRRRRM", "CC...................", ".....................", "R.............YNNN..R", "R....MMMM.....MM....R", "RR...MRRRRRRRRRM...RR", "RR.NNNRRRRRRRRRM...RR", "RR....RRMMRRRRRM...RR", "RR....RRRRRRRRRM...MM", "RR....RRRRRRRRR....RR", "MM...MRRRRRRRRR....RR", "RR...MRRRRRMMRR....RR", "RR...MRRRRRRRRRNNN.RR", "RR...MRRRRRRRRRM...RR", "R....MM.....MMMM....R", "R..NNNY.............R", ".....................", "...................CC", "MRRRRMM.......MMRRRMM", "MRRRRRRR.....RRRRRRRR", "RRR...............RRR", "..........8..........", ".....................", ".....................", "CC.................RR", "YYY.....1.1.1.....CMM"], "Bankheist_2": ["........2.2.2...MCC..", "................MCC..", "..MMM...........MMM..", "..MYY..RR...RR.......", "..MYY..RR.8.RR.......", "RR.....RRRRRRR.......", "RR.....RRRRRRR...YC..", "MMMM.............CY..", "..RR.................", "..RR.................", ".....................", "CC.................YY", "CC...WWWWMMMWWWW...YY", ".....WWWW...WWWWRR...", ".......RRRRRRRRRRR...", ".......RRRRRRRRRRR...", ".........RRR.........", "...RRRRRRRRRRR.......", "...RRRRRRRRRRR.......", "...RRWWWW...WWWW.....", "YY...WWWWMMMWWWW...CC", "YY.................CC", ".....................", ".................RR..", ".................RR..", "..CY.............MMMM", "..YC...RRRRRRR.....RR", ".......RRRRRRR.....RR", ".......RR.8.RR..YYM..", ".......RR...RR..YYM..", "..MMM...........MMM..", "..CCM................", "..CCM...1.1.1........"], "Bankheist_20": ["NNNN....2.2.2....NNNN", "C................RRRC", "RR...............RRRR", "RR.................RR", "RRR.......8........RR", "RRRXM..............RR", "RRRXX..............RR", "RR...........YY.....M", "RR......RRNNNCY.....M", "MM...YY.RRCWWWW....RM", "M....CCRRRRWWWW....RR", "M...RRRRRRRRRR...RRRR", "....RRRRRRRRR....RRRR", "....MRRRR........RRCC", "...MMRR......MMM...MM", "....RRR.......TT....M", "....RR.........RR....", "M....TT.......RRR....", "MM...MMM......RRMM...", "CCRR........RRRRM....", "RRRR....RRRRRRRRR....", "RRRR...RRRRRRRRRR...M", "RR....WWWWRRRRCC....M", "MR....WWWWCRR.YY...MM", "M.....YCNNNRR......RR", "M.....YY...........RR", "RR..............XXRRR", "RR..............MXRRR", "RR........8.......RRR", "RR.................RR", "RRRR...............RR", "CRRR................C", "NNNN....1.1.1....NNNN"], "Bankheist_3": ["........2.2.2........", ".....................", "MMMMM...........MMM..", "RRRRRRR.........RRM..", "RRRRRRR...8.....RRM..", ".....RR.........RRM..", "..MM.RRRRRRRR....MM..", "..MM.RRRRRRRR........", ".....................", ".....................", "................TTRRR", "MMMMWWWW....WWWWWTTRR", "MMMMWWWW....WWWWWTRRR", ".......TM............", ".......MM............", ".....................", ".....................", ".....................", "............MM.......", "............MT.......", "RRRTWWWWW....WWWWMMMM", "RRTTWWWWW....WWWWMMMM", "RRRTT................", ".....................", ".....................", "..........RRRRRR.MM..", "..MM......RRRRRR.MM..", "..MRR.........RR.....", "..MRR.....8...RRRRRRR", "..MRR.........RRRRRRR", "..MMM...........MMMMM", ".....................", "........1.1.1........"], "Bankheist_4": ["........2.2.2........", "..RRR...........RRR..", "..RRR...........RRR..", ".....................", "..........8..........", "RRRRRRRRRRRRRRRRRRR..", "NNNNCRRRRRRRRRRRCNN..", "RRRRRRRRRRRRRRRRRRR..", "RRRRRRRRRRRRRRRRRRR..", ".......CNNNNNC.......", ".....................", ".....................", "YYYYY...YYYYYNNNNN...", "....WWWWW............", "....WWWWW............", ".....................", ".....................", ".....................", "............WWWWW....", "............WWWWW....", "...NNNNNYYYYY...YYYYY", ".....................", ".....................", ".......CNNNNNC.......", "..RRRRRRRRRRRRRRRRRRR", "..RRRRRRRRRRRRRRRRRRR", "..NNCRRRRRRRRRRRCNNNN", "..RRRRRRRRRRRRRRRRRRR", "..........8..........", ".....................", "..RRR...........RRR..", "..RRR...........RRR..", "........1.1.1........"], "Bankheist_5": ["........2.2.2........", ".....................", "..RRR...........RRR..", "..NNN...........NNN..", "..........8..........", ".....................", "....DNNNN...RRRRR....", "WWWWWWRR....NNNNN....", "WWWWWWRR.............", "...D...............YY", "............RRRRR..YY", "NNNNNNNNN...RRRCC....", "..RRRRRRR......CC....", "..RRRRRRR............", "........NNNNN.D......", "........WWWWW...RRR..", "NNNNN...WWWWW...NNNNN", "..RRR...WWWWW........", "..D.....NNNNN........", "............RRRRRRR..", "....CC......RRRRRRR..", "....CCRRR...NNNNNNNNN", "YY..RRRRR...D........", "YY...................", ".............RRWWWWWW", "....NNNNN....RRWWWWWW", "....RRRRR...NNNN.....", ".....................", ".....D....8..........", "..NNN...........NNN..", "..RRR...........RRR..", ".....................", "........1.1.1........"], "Bankheist_6": ["........2.2.2........", "..................D..", "..NNNN.........NNNN..", "..RRRY.........YRRR..", "....RY....8....YR....", "....RRRR.....RRRR....", "..M..D..........D....", "MMMM....D............", "..MRR..C....DCYYYYMMM", "..M...WW..D..WW...T..", "..T...WW.D...WW......", "...D..WWRRRRRWW......", "R....YYMMRRRMMMY..D..", "R................D...", "R..........D........R", "R.....D......RRR....R", "R...NNNNC...CNNNN...R", "R....RRR....D.......R", "R...................R", "..D.............D...R", ".....YMMMRRRMMYY....R", "...D..WWRRRRRWW......", "......WW...D.WW...T..", "..T...WW.D...WW...M..", "MMMYYYYC..D..C..RRM..", ".................MMMM", "...D........D.....M..", "....RRRR.....RRRR....", "....RY....8....YR....", "..RRRY.........YRRR..", "..NNNN.........NNNN..", "...............D.....", "........1.1.1........"], "Bankheist_7": ["........2.2.2........", ".....................", "........R...RY.......", "........RR.RRY....R..", "..T..C....8......RR..", "........YY.....RRRR..", "RRR......C....RRRRC..", "RRR..T.......RRRCYY..", "RRRRR........MWWWMM..", "RRRRRRR.......WWW....", "RRRRRRRMT.........RRR", "NNNNNNNM.........RRRR", ".......T.........RRRM", "............T....CMMM", "...RR......WW........", "...RYC...WWWW........", "........WWWWW........", "........WWWW...CYR...", "........WW......RR...", "MMMC....T............", "MRRR.........T.......", "RRRR.........MNNNNNNN", "RRR.........TMRRRRRRR", "....WWW.......RRRRRRR", "..MMWWWM........RRRRR", "..YYCRRR.......T..RRR", "..CRRRR....C......RRR", "..RRRR.....YY........", "..RR......8....C..T..", "..R....YRR.RR........", ".......YR...R........", ".....................", "........1.1.1........"], "Bankheist_8": ["..YYC...2.2.2.RRRRRRR", "..RR...........RRRRRR", "..RR..............RRR", "M...................M", "MMM.......8.......MMM", "..C...............Y..", "..C...............C..", "..Y................RR", "......M........M...RR", "......M.......RM.....", "RR...MM......RRM..M..", "RR....M.....RRRM..M..", "MMM........RRRRM..M..", "..RR......RRRR....MRR", "..RR...M..RRM.....MRR", "......MMMRRRMM....M..", "..M..MMMMRRRMMMM..M..", "..M....MMRRRMMM......", "RRM.....MRR..M...RR..", "RRM....RRRR......RR..", "..M..MRRRR........MMM", "..M..MRRR.....M....RR", "..M..MRR......MM...RR", ".....MR.......M......", "RR...M........M......", "RR................Y..", "..C...............C..", "..Y...............C..", "MMM.......8.......MMM", "M...................M", "RRR..............RR..", "RRRRRR...........RR..", "RRRRRRR.1.1.1...CYY.."], "Bankheist_9": ["........2.2.2........", ".....................", ".....................", ".....................", ".......MRR8RRMM......", "......MMRRRRRMM....YY", ".....CMMWWWWWWMM.....", ".....MMMWWWWWWMM.....", "....MMWWWWWWWWWM.....", "C...MMWWWWWWWWWM.....", "....CM........CYY....", "..............C......", ".....................", ".....................", "........MMMRR.....C..", "........MRRRR........", "........RRRRR........", "........RRRRM........", "..C.....RRMMM........", ".....................", ".....................", "......C..............", "....YYC........MC....", ".....MWWWWWWWWWMM...C", ".....MWWWWWWWWWMM....", ".....MMWWWWWWMMM.....", ".....MMWWWWWWMMC.....", "YY....MMRRRRRMM......", "......MMRR8RRM.......", ".....................", ".....................", ".....................", "........1.1.1........"], "Biggame_1": ["MMMMMMMMMMMMFFFMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM", "MMMMMMMMMMMMFFFMMMMMM...MMMMMMMMMMMMMMMMMMMMMMWWWWMMMMMMMMMM", "..MMMMMMMMMMFFFMM........MMMMMMMMMMMMMMMMMMWWWWWWWWWWMMMMMMM", "...D....MMMMFFFF...D.....MMMMMMMMMMMMMMM...WWWWWWWWWWWWMMMMM", "............FFFF.........MMMMMMMMMMMM............WWWWWWMMMMM", ".....D.......FFF..........MMMMMMM......D............WWWWMMMM", "........1....FFF.....D....MMMM...........1...........WWWMMMM", "WWW.......D..FFF..........MMM...D....................WWWMMMM", "WWWWWW.......FFFF.........MM.......D.....MM..........WWWMMMM", ".WWWWWW.......FFFF....DD........TT.......MM..........WWWMMMM", "....WWW...WWW.FFFF..............TT......MMM..........WWMMMMM", ".D........WWWWWWFFF................D....MM........D..WWMMMMM", "...........WWWWWFFF...................MMMF...........WWMMMMM", ".....D.D.....NWWWFFTYT................MMMF.....D......MMMMMM", ".............NWWWFFYYY.FFFF...MM......MMFF............MMMMMM", "FFFF.........NNWWFFTYTFFFFF...MMMMM...MMFFF.....MM.....MMMMM", "FFFFFFF........WWFFFFFFFF.......MMMMMMMMFFFFMMMMMM...F.MMMMM", "FFFFFFFFF......FFFFFFF..........FFFMMMMM..MMMMMM....FF..MMMM", "FFFFFFFFFF..FFFFFFFF............FF........MM.......FFF..MMMM", "MMMMFFFFFFFFFFF...WWW....DD...DD....................FFF.MMMM", "MMMMMMMFFFFF......WWWWWW.............................FF..MMM", "MMMMMMMFFF.........WWWWWW.............D........D.....FF..MMM", "MMMMM.FFF.........D...WWWWFFFFFF.........MD.FFF......FF..MMM", "MMMM..FFF....MMM......NWWWFFFFFFTT....D..MMMFFF....D.FFF.MMM", "MMM...FF.....MMMMM....NWWFFF...FFF........MMMMM.......FF..MM", "MMM...FF.....FFFMM..D.NNN......FFFF.MM................FF..MM", "MM...FFF....DFFF...........D.2..FFFFFMM...............FF1.MM", "MM...FF.............D............FFFFMMMM.............FF..MM", "MM...FFMMMMM................WWW........MMMMM..........FF..MM", "M....FFMMMMMMMMM...FF.......WWWW.......FFMMMMMMM.....FFF...M", "M...FFF.....MMMMMMMFF.......WWWW.......FF...MMMMMMMMMFF....M", "MM..FF..........MMMMM........WWW................MMMMMFF...MM", "MM..FF.............MMMMFFF.............D............FFF...MM", "MM..FF...............MMFFFFFF...D...........FFFD....FFF...MM", "MM..FF................MMTFFFFF.....NNN.D..MMFFF.....FF...MMM", "MM..FF.......MMMMM........FFFF..FFFWWN....MMMMM.....FF...MMM", "MMM.FFF.D....FFFMMM..D.....TFFFFFFWWWN......MMM....FFF..MMMM", "MMM..FF......FFF.DM.........FFFFFFWWWW...D.........FFF.MMMMM", "MMM..FF.....D........D.............WWWWWW.........FFFMMMMMMM", "MMM..FF..............................WWWW.......FFFFFMMMMMMM", "MMMM.FFF....................DD...DD....WWW...FFFFFFFFFFFMMMM", "MMMM..FFF.......MM......................WWFFFFFF..FFFFFFFFFF", "MMMM..FF....MMMMMM..MMMMMFFF..........FFFFFFF......FFFFFFFFF", "MMMMM.F...MMMMMMFFFFMMMMMMMM.....FFFFFFFFFFWW........FFFFFFF", "MMMMM.....MM.....FFFMM...MMMMM...FFFFFTYTFFWWNN.........FFFF", "MMMMMM............FFMM......MM..FFF...YYY.FWWWN.............", "MMMMMM......D.....FMMM..........FFF...TYT.FWWWN.....D.D.....", "MMMMMWW...........FMMM................D...FFWWWW........1...", "MMMMMWW..D........FM....D..................FWWWWWW........D.", "MMMMMWW..........MMM......TT...............FFFWWWW...WWW....", "MMMMWWW..........MM.......TT........DD.....FFF.......WWWWWW.", "MMMMWWW..........MM.....D.......MM.........FFFF.......WWWWWW", "MMMMWWW...1................D...MMM..........FFF..D......WWWW", "MMMMMWW.......................MMMM....D.....FFF.............", "MMMMMWWW...D........D......MMMMMMM..........FFF.............", "MMMMMWWWWWW............MMMMMMMMMMMM.........FFFF............", "MMMMMWWWWWWWWW......MMMMMMMMMMMMMMM.....D...FFFFMMMMMMMMD...", "MMMMMMMWWWWWWW...MMMMMMMMMMMMMMMMMM........MMFFFMMMMMMMMMM..", "MMMMMMMMMMMMMM..MMMMMMMMMMMMMMMMMMMM...MMMMMMFFFMMMMMMMMMMMM", "MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMFFFMMMMMMMMMMMM"], "Biggame_2": ["MMMM.......MMMMMYYC........RRWW....RRMMM..WWM.....MMMMMMMMMM", "MMMM.........MMMC..........RRWW....RRMMM..WWM.....RRRMMMMMMM", "MMM............M......RRW..WWWW....RMMMR..WWW.........MMMRRR", "MM.....CC.............WWW..WWWT....MMMMR..TWW.........MMRR..", "MM....RMMM...........WWWT.........MMMRRR....................", "MR....RMM........RRWWW......1.....MMRR..........T...........", "RR....RM.........RWWWM....................MWWR......C.......", "R......M......W..WWWMM.....MMM............MWWRR....CMMR....M", "............RWW..WWWMR....MMRR.......CC.....WWR....MMMR...MM", "............RWW....WWR....MRR.......MMMM....WWW....MMMRR..MM", "...........RRWW....WWR..............RMMMM....WWW...RRMMR..RM", "...........WWWM.....WW.........CMC..RRRMM....TWWW....MMR..RR", ".....WW..WWWWMM.....WW.........MMM......MM...........RMM...R", "....TWW..WW.................RMMMMR......M............RMMC...", "RRRWWW......................RMMMMR..............WW.....C....", "RRWWW.........MMM...WWR.....MMRRRR...T......T...WW..........", "WWWW............M...WWR.........................WWW.........", "WWWM.1..........M...RWW..................T.....TWWWWW....1..", "MMMM.....MMC....C...RMWW....T..................WWWWWW.......", "........MMMM........RMWWT.......MMMC...........WWWRRWW.....C", ".......MMMRR....................M.....T..RRWW..WWRR.WWW....Y", ".......MMRR..............................RWWW..MM...TWW...CY", ".......CMR.............WWRR..............WWWW..............C", ".......................WWWRR.....RRMMWW..WW.................", "MR..................C...WWMM....RRMMWWW..W............WWM...", "MRR..........MMRR...M...WWWW....WWWWWW................WWMM..", "MMRR.........MMMRR..M...RWWW....WWWWRR.................WWMRR", "MMMR...RRR.....MMR..MM..RWWT....TWWRR...T.......RMM....WWMRR", "MMMR...MMR.....MMR..........................T...RMMM....WWRR", "WWWT...MMRR..................2.......T..........RRMM....WWWW", "WWWW....MMRR..........T..........................RRMM...TWWW", "RRWW....MMMR...T..........................RMM.....RMM...RMMM", "RRMWW....MMR.......T...RRWWT....TWWR..MM..RMM.....RRR...RMMM", "RRMWW.................RRWWWW....WWWR...M..RRMMM.........RRMM", "..MMWW................WWWWWW....WWWW...M...RRMM..........RRM", "...MWW......T.....W..WWWMMRR....MMWW...C..................RM", ".................WW..WWMMRR.....RRWWW.....R.................", "C..............WWWW..............RRWW.............RMC.......", "YC...WWT...MM..WWW...............................RRMM.......", "Y....WWWRRRWW..WW....T.....M....................RRMMM.......", "C.....WWRRWWW...........CMMM.......TWWMR........MMMM........", ".......WWWWWW..................T....WWMR...C....CMM.....MMMM", ".......WWWWWT.....T..................WWR...M............MWWW", ".........WWW.........................RWW...M............WWWW", "..........WW...T......T...RRRRMM.....RWW...MMM.........WWWRR", "....C.....WW..............RMMMMR......................WWWRRR", "...CMMR............M......RMMMMR.................WW..WWT....", "R...MMR...........MM......MMM........TWW.......WWWW..WW.....", "RR..RMM....WWWT....MMRRR..CMC.........WW......WWW...........", "MR..RMMRR...WWW....MMMMR..W...........RWW....WWRR...........", "MM..RRMMM....WWW....MMMM.......RRM....RWW....WWR............", "MM...RMMM....RWW.....CC.......RRMM....RMWWW..WWR............", "M....RMMC....RRWWM............MMM.....MMWWW..W......M......R", ".......C......RWWM....................MWWWR.........MR....RR", "...........T..........RRMM............W.WRR........MMR....RM", "............1.......RRRMMM.........TWWW.......1...MMMR....MM", "..RRMM.........WWT..RMMMM....TWWW..WWW.............CC.....MM", "RRRMMM.........WWW..RMMMR....WWWW..WRR......M............MMM", "MMMMMMMRRR.....MWW..MMMRR....WWRR..........CMMM.........MMMM", "MMMMMMMMMM.....MWW..MMMRR....WWRR........CYYMMMMM.......MMMM"], "BossFight_1": ["..RR.............RR..", "..RR.............RR..", "MMMM......2......MMMM", ".......MRRRRRM.......", ".......MRRRRRM...RR..", ".......MMMMMMM...RR..", "..RR.............RR..", "..RR...RRRRRRR...RR..", "..MMM..RRRMRRR..MMM..", ".......RRRMRRR.......", ".......RRRMRRR.RRR...", "..........M....RRR...", "MM...WWWWMMMWWWWRR.MM", "MM...WWWW...WWWW...MM", ".....................", ".................RR..", "......RRWWWWW....RR..", "..WWW.RRWWWWW...WWW..", "..WWW...MMMRR...WWW..", "..RRR......RR........", "..RRR............RR..", ".................RR..", ".....WWWWWWWWWWW.....", ".....WWWWWWWWWWW.....", ".....................", ".....................", "......YY...CCC.......", "......CY.............", ".....................", ".....................", "C...................Y", "YY.................CC", "YYC...1.1.1.1.1...CCY"], "BossFight_2": [".....................", ".....................", "..........MMMM.......", ".....MM...MRRRRRR....", ".....MRRRRRRRRRRR....", ".....MRRRRRRRRRMM....", "....RRRRMMMRRRRMM....", "....RRRRM...RRRM.....", "....RRRRM.2.RRRM.....", "..M..MRRR...RRRRRRRRR", "..M..MRRRRRRRRRRRRRRR", "..M..MRRRRRRRRRRRRR..", "..RRRRRRRRRRRRRM.....", "..RRRRRRRR...RRM.....", ".....MRRRR...RRRRR...", ".....MRRRM...RRRRRM..", "...MMMRRRMMMRRRRRRM..", "..MMMMRRRRRRRRRRRRM..", "...RRRRRRRRRRRRRRMM..", "...RRRRR...RRRRRR....", "...RRRRR...MRRRRR....", "...MRRRR...MRRRR.....", "...MRRRRRMMMRRRR.....", "...MRRRRRRRRRRRRRMM..", "...MMMRRRRRRRRRRRMM..", "....RRRRRRRRRRRRR....", "....RR.......RRRR....", ".........MMMM........", ".....................", ".....................", "C...................Y", "YY.................CC", "YYC...1.1.1.1.1...CCY"], "BossFight_3": ["M.D.......D...D...D.M", "M...D..D............M", "MM.....M..2..M..D..MM", "MMM.D.MMM...MMM...MMM", "MMFFFFFMFFFFFMFFFFFMM", "BBFFFFFBFFFFFBFFFFFBB", "BBFFFFFBFFFFFBFFFFFBB", "BBFFFFFBFFFFFBFFFFFBB", "MMFFFFFMFFFFFMFFFFFMM", "MMMBBBMMMBBBMMMBBBMMM", "MMFFFFFMFFFFFMFFFFFMM", "..FFFFFBFFFFFBFFFFF..", "..FFFFFBFFFFFBFFFFF..", "B.FFFFFBFFFFFBFFFFF.B", "BBFFFFFMFFFFFMFFFFFBB", "BBBBBBMMMBBBMMMBBBBBB", "BBFFFFFMFFFFFMFFFFFBB", "B.FFFFFBFFFFFBFFFFF.B", "..FFFFFBFFFFFBFFFFF..", "..FFFFFBFFFFFBFFFFF..", "MMFFFFFMFFFFFMFFFFFMM", "MMMBBBMMMBBBMMMBBBMMM", "MMFFFFFMFFFFFMFFFFFMM", "BBFFFFFBFFFFFBFFFFFBB", "BBFFFFFBFFFFFBFFFFFBB", "BBFFFFFBFFFFFBFFFFFBB", "MMFFFFFMFFFFFMFFFFFMM", "MMM...MMM...MMM...MMM", "MM...D.M.D...M...D.MM", "MMD............D...MM", "MM..D.....D..D...D.MM", "MBB....D..........BBM", "MBBB..1.1.1.1.1..BBBM"], "BossFight_4": ["RR.................RR", "RR.................RR", ".....CC...2...CC.....", ".....CC.......CC.....", "YY.................YY", "YY...RR..CYC..RR...YY", ".....RR.......RR.....", ".....................", "...YYYYYY...YYYYYY...", "RR..Y..Y.....Y..Y..RR", "RR.................RR", ".....................", "....Y..Y.....Y..Y....", "...YYYYYY...YYYYYY...", ".....................", "RR.................RR", "RRR..RR..CYC..RR..RRR", "RRR..RR.......RR..RRR", "RR.................RR", ".....................", "...YYYYYY...YYYYYY...", "....Y..Y.....Y..Y....", "RR.................RR", "RR.................RR", "....Y..Y.....Y..Y....", "...YYYYYY...YYYYYY...", ".....................", ".....RR.......RR.....", "RR...RR..CYC..RR...RR", "RRR...............RRR", "RRRR.............RRRR", "RRRRR...........RRRRR", "RRRRR.1.1.1.1.1.RRRRR"], "BossRace_1": ["MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM", "MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM", "FF..................1.....FF....FF.....1..................FF", "FF........................MF....FM........................FF", "FF..4.....................MF....FM.....................4..FF", "FF...............FFFFFF...MM....MM...FFFFFF...............FF", "FF....MMFF.4.....FMMMMM4............4MMMMMF.....4.FFMM....FF", "FF....MMFF..T.........M..............MB........T..FFMM....FF", "MM....FF............................................FF....MM", "MM....FF...................TMMMMT...................FF....MM", "FF...........FFM.....FFFFWWWWWWWWWWFFFF.....MFF...........FF", "FF...........FFMMMMMFFFFWWWWWWWWWWWWFFFFMMMMMFF...........FF", "FF....C.....WWWWWWWWFFFFWWWWWWWWWWWWFFFFWWWWWWWW..........FF", "FF....Y.....WWWWWWWWFFFFWWMFFFFFFMWWFFFFWWWWWWWW..........FF", "FF..MMM...FFWWWWWWWW....WWMF....FMWW....WWWWWWWWFF..TYM...FF", "FF1.MMM...FFWWWMMMMT....TMMF....FMMT....TMMMMWWWFF..TYM..1FF", "FF...4.....FWWWMFF........................FFMWWWF....4....FF", "FF.........FWWWMF..........................FMWWWF.........FF", "FF.........FWWWM............................MWWWF.........FF", "FF.........TWWWT............................TWWWT.........FF", "FF....MM............MMFFFM........MFFFMM...........FFFFF..FF", "FF....FM............MMFFFMYY....YYMFFFMM...........FMMMM..FF", "FF....FMT..........................................FM4....FF", "FF...4FFF..........................................FM.....FF", "FFMM.......MWWW..............................WWWM.........YY", "FF.........MWWW............MMMMMMM...........WWWM...........", "FF.........MWWWT....M............M.....M....TWWWM...........", "FF.........MMWWF....MMC..........M...CMM....FWWMM.........1.", "FF...4MF...FFWWF....FF................FF....FWWFF....4YFFFFF", "YY....MF...FFWWF....FF................FF....FWWFF.....MMMMFF", "YY1...MF...FFWWF....FF................FF....FWWFF.....MMMMFF", "FF...4MF...FFWWF....FF................FF....FWWFF....4YFFFFF", "FF.........MMWWF....MMC...M..........CMM....FWWMM...........", "FF.........MWWWT....M.....M............M....TWWWM...........", "FF.........MWWW...........MMMMMMM............WWWM...........", "FFMM.......MWWW..............................WWWM.........YY", "FF....FFF..........................................FM.....FF", "FF...4FMT..........................................FM4....FF", "FF....FM............MMFFFMYM....MYMFFFMM...........FMMMM..FF", "FF....MM............MMFFFMMM....MMMFFFMM...........FFFFF..FF", "FF.....B....WWWT..........B.................TWWW..........FF", "FF..........WWWM............................MWWW..........FF", "FF.........TWWWM............................MWWWT.........FF", "FF...4....FFWWWM............................MWWWFF...4....FF", "FF1.MMM...FFWWWM...TMMMMMT........TMMMMMT...MWWWFF..TYM..1FF", "FF..MMM...FFWWWW...WWWWWWWW......WWWWWWWW...WWWWFF..TYM...FF", "FF....Y....FWWWWFFFWWWWWWWW......WWWWWWWWFFFWWWWF.........FF", "FF....C....MWWWWFFFWWWWWWWMFFFFFFMWWWWWWWFFFWWWWM.........FF", "FF.........MMM.........TMMMFFFFFFMMMT.........MMM.........FF", "FF........................................................FF", "MM....FF............................................FF....MM", "MM....FF.......FF..........................FF.......FF....MM", "FF....MMFF.....FF....MM..4FT....TF4..MM....FF.....FFMM....FF", "FF....MMFF..4..MM.....T...FMMMMMMF...T.....MM..4..FFMM....FF", "FF.............MM.........FFFFFFFF.........MM.............FF", "FF..4..........MMMT......................TMMM..........4..FF", "FF..............B..........................B..............FF", "FF..................1........CC........1..................FF", "MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM", "MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM"], "BossRace_10": ["MMMFFFMMMMM.................FFFFFFMMMMMMMM........FFMMMMMMMM", "MMFFFFFMM...................FFFFFFFFFMMMM.........FFFFFMMMMM", "MFFFF...........................FFFFFFFMM..........FFFFFFMMM", "FFFF..........NNN.......XXXXMX......FFF......NNNN.....FFFFMM", "FFF...4.......TWWWWW.......CYX.................CY....4..FFMM", "FF.............WWWWW....................................FFFM", "MF..4..........WWFFFFFF...........YYYC..............MM.4.FFM", "MM...............FFFFFF...........YC................MM...FFM", "MM.................MMMMMM..............4.................FFF", "M..................MMC...............4....MMMMMM..........FF", "M......MMY.........MM........1...............CMM....WWWW....", ".......MMMM...........4.........M.............MM....WWWW....", "........FFFFFFF.................M....X.........FFFFFFNWW....", "........FFFFFFF........4.......MM..FFX.........FFFFFFNWW....", ".......WWWFFMM...1........CM...MM..FFX....1......MMFFNT.....", "...MM..WWW..MM.........MMMMM.......FFXC...........4FF.......", "...MMFFWW............FFFFF.........FFXX............FF.......", "...YMFFWW...4........FFFFF.......MMFFFFF..........4FF......M", "....MFFF..4...........WWFF.......MMFFFFF........CMMFF......M", ".....FFF.....MMMM.....WWFFMM......WWW.......MMMMMMM.......MM", ".....FFMM....MM......WWW..MM......WWW.......MMC..........MMM", ".....FFMM....MM.....TWWW..........WW.....................MMM", ".....FF......MM.....NN............WW....................FFMM", "..........1......................................1......FFMM", "..MC........................CT.........FF.............WWFF.M", "..MMMM......................NNNN.......FFMMMMMM.......WWFF.M", "........FF.............................FFFFFFMM....WWWWWFF..", "........FFMMMMMM.......................FFFFFF.....TWWWWW....", "........FFFFFFMM...MM.............................NNN.......", "........FFFFFF.....MM...YC........YY......4.4...............", "...............4.4......YY........CY...MM.....FFFFFF........", ".......NNN.............................MM...MMFFFFFF........", "....WWWWWT.....FFFFFF.......................MMMMMMFF........", "..FFWWWWW....MMFFFFFF.............................FF........", "M.FFWW.......MMMMMMFF.......NNNN......................MMMM..", "M.FFWW.............FF.........TC........................CM..", "MMFF......1......................................1..........", "MMFF....................WW............NN.....MM......FF.....", "MMM.....................WW..........WWWT.....MM....MMFF.....", "MMM..........CMM.......WWW......MM..WWW......MM....MMFF.....", "MM.......MMMMMMM.......WWW......MMFFWW.....MMMM.....FFF.....", "M......FFMMC........FFFFFMM.......FFWW...........4..FFFM....", "M......FF4..........FFFFFMM.......FFFFF........4...WWFFMY...", ".......FF............XXFF.........FFFFF............WWFFMM...", ".......FF4...........CXFF.......MMMMM.........MM..WWW..MM...", ".....TNFFMM......1....XFF..MM...MC........1...MMFFWWW.......", "....WWNFFFFFF.........XFF..MM.......4........FFFFFFF........", "....WWNFFFFFF.........X....M.................FFFFFFF........", "....WWWW....MM.............M.........4...........MMMM.......", "....WWWW....MMC...............1........MM.........YMM......M", "FF..........MMMMMM....4...............CMM..................M", "FFF.................4..............MMMMMM.................MM", "MFF...MM................CY...........FFFFFF...............MM", "MFF.4.MM..............CYYY...........FFFFFFWW..........4..FM", "MFFF....................................WWWWW.............FF", "MMFF..4....YC.................XYC.......WWWWWT.......4...FFF", "MMFFFF.....NNNN......FFF......XMXXXX.......NNN..........FFFF", "MMMFFFFFF..........MMFFFFFFF...........................FFFFM", "MMMMMFFFFF.........MMMMFFFFFFFFF...................MMFFFFFMM", "MMMMMMMMFF........MMMMMMMMFFFFFF.................MMMMMFFFMMM"], "BossRace_11": ["MMFF......FFFFFFFFFFFFFFFFFFFFFFFFFFFFMMMMMMFFFFFFFFFFFFFFFF", "MMFF......FFFFFFFFFFFFFFF..........FFFMMMMMMFFFFFFFFFFFFFFFF", "FF........FFFFFFFMMMFFF....TMMMMT.......MM.........FFF...4FF", "FF.4.....MMMM....MMM........MMMM........MM..............T.FF", "...........MM....M......................MM....MMMM........FF", "....MMM..4.MM....M............................MMMMMM......FF", "....MM................MMMMM......MMMM............MM.4...TFFF", "....MM.4.................MM......MM......................FFF", "....MM................1..MM....MMMM...1...............4..FFF", "FF..MMMM....MMMM..........M.....Y.........YYM..........M..FF", "FF............MM..........................YYMM........MMM.FF", "FFFF..........MYY....MM..............MM.....MMYY......MMM..F", "FFFF..........M......MMT............TMM.......YY....MMMMM..F", "MMMF...MMMM.........MMNNNNN......NNNNNMM......Y....MMMMM....", "MMM......MM.........MM4......FF......4MY..............MM....", "M.........Y....FFFFFFF.......FF.......FFFFFFF.........MT....", "..........Y....FFFFFFF.......FF.......FFFFFFF...............", "...............MMMMFFF.....MMFFMM.....FFFMMMM...............", "...M...1.....CMMM........MMMMFFMMMM........MMMMMM...1.......", "...M.........MMMM........M...FF...M.........CMM........M....", "...MMM.......MM..............FF..............YM........M..MM", "...MMMM......MM.....Y........FF......4YY......M........MMMMM", "....MMMM...........YYY.......FF......CYYY.........M....MMMMM", "....FFF.............4YY......YY........Y..........M.......FF", "....FFF..............Y.....TMMMMT......Y.........MM.......FF", "...........MMMMYC............................MMMMMMM......FF", ".........MMMMNNNNNN..........................MMMMM........FF", "MMMM.....M........N................YYFFFFF...YYC.......MM...", "MMMM.....M........N................YYFFFFFFYYYC........M....", "MM.4........MFFFFFFF...MM........YYMMMMFFFFFFFF..1.....M4...", "MM.4......1.MFFFFFFFFMMMMYY........MM...FFFFFFF...M....M4...", "WWW.........MYY..FFFFFFYY................N........M....M....", "WWWFF.......YYY...FFFFFYY................N........M....MM...", "WW.FF......MMMY..........................NNNNNNMMMM.........", "WW.FF.....MMMMMMM............................YMMM...........", "FFFFF.....T....MM..........TMMMMT.....Y.....................", "FFFFFMM.........M...Y........YY......YY4..............M.....", "FFFFFMM.............YYYC.....FF.......YYY.............MMM...", "FFFFMMMT............YY4......FF.......Y............MMMMM....", "FFFFMM.......MM..............FF............CMMM......MM.....", "FFFFMM.......MM..........M...FF...M........YMM.......MM.....", "FFF..........MMMM........MMMMFFMMMM.......MMMC..............", "FF.....1......CMMMMFFF.....MMFFMM.....FFFMMMM.......1......F", "F..............FFFFFFF.......FF.......FFFFFFF..............F", "...............FFFFFFF.......FF.......FFFFFFF.............FF", "......MMMM..........MM4......FF......4MM........M.........FF", "......MM.....YYY....MYNNNNN......NNNNNYC......MMM...Y....FFF", "....MMMM....CYY.........TMM......MMT........MMMM....MMMMMFFF", "..FFMMMM.................MM......MM.........MMFF....MMMMMFFF", "..FFMM.....................................MMMFF......MFFFFF", "..FF............YYYC.....................MMMM.........MFFFFF", "..FF.4..........YC...1................1...............4FFFFF", "..FF.......MM............MMMMM..FFY....................FFFFF", "..FWWT.4...MM............MMM....FFY................C4..FFFF.", "..FWWW...MMMM............YFF....MMM...............CMM..FFFF.", "...WWW...MMMM....MMM.....CFF..MMMMM......TWWW....MMMMFFFFF..", "..4.FFFFFFFFF....MMM............Y......WWWWWWT.FFFFFMFFFF...", "M.....FFFFFFF...MMMMMMFF..............TWWWWWWWWFFFFFFFFF.4..", "MM.......MM.......FFFFFF.............WWWWWWWWWWWW.FFFFF.....", "MMM......MM.......FFFFFF.............WWWWWWWWWWWW..FFF......"], "BossRace_12": ["MM...MMMM.............FFMM..FFFFMMMM.....MMMM......FF..MMMMM", "M.....MM..............FFMM...FFFMM.........MM......FF.....MM", "...4............FFF..........FF.........................4.MM", "..4............XFFF....................FF..........YY....4..", "..............YMMXX.....4..........4..CFF.......YYYYY.......", "M.....MMM.....CX......................MMMM..................", "MM...MMMMF................YY....YY....MMMM.............MMFFF", "......MFFF.................YYYYYY......MMFFF...........MMFFF", ".......FFF........YYYYY................MMFFFFYYYY...........", "..................WWWWY................MM....YWWW...........", "..................WWWW........1...............WWW...........", "FFFF................WW........................WW............", "FFMMMM....YMM.......WW....MM....MM............WW....CMM.....", "FFMMMM....CMM.......WW....MMFFFFMM...FFMM.........4.YMM...MM", "FFMM....4..MM...1...MMM...FFFFF......FFMM..1.........MM...MM", "FF.........MMM......MMM...FFF........MMMM............M.....M", "FF...................................................C....FM", "FF...........................................MMMF.........FM", ".....FFFF.......FF.........MMMMMM............MMMF.........FM", ".....FFFFM......FF.........MMMMMMC............MMFF...C...FFM", ".....FMMMM......YYYYY......M....MY.....MMM....MMFF...M...FFM", "......MMC....YYYMM...........4.........MMM....CMM....MM...MM", "M......M......FFMM......................M.......C....MM...MM", "MM............FFM.......FFF.............MFF.................", "MMFF......1.....M.......FFF.....CMMFF...MFF......1..........", "MMFF.................4MMMMF......MMFF.4.MMM.................", ".......................MMMT......TMM........................", "........................YC...........................YY...YY", "......MM............................................MM.....C", "...4..MMMMMMFFFMM......................YYYYMMFFFMMMMMM......", "......MMMMMMFFFMMYYYY......................MMFFFMMMMMM..4...", "C.....MM............................................MM......", "YY...YY...........................CY........................", "........................MMT......TMMM.......................", ".................MMM.4.FFMM......FMMMM4.................FFMM", "..........1......FFM...FFMMC.....FFF.......M.....1......FFMM", ".................FFM.............FFF.......MFF............MM", "MM...MM....C.......M......................MMFF......M......M", "MM...MM....MMC....MMM.........4...........MMYYY....CMM......", "MFF...M...FFMM....MMM.....YM....M......YYYYY......MMMMF.....", "MFF...C...FFMM............CMMMMMM.........FF......MFFFF.....", "MF.........FMMM............MMMMMM.........FF.......FFFF.....", "MF.........FMMM...........................................FF", "MF....C...................................................FF", "M.....M............MMMM........FFF...MMM......MMM.........FF", "MM...MM.........1..MMFF......FFFFF...MMM...1...MM..4....MMFF", "MM...MMY.4.........MMFF...MMFFFFMM....WW.......MMC....MMMMFF", ".....MMC....WW............MM....MM....WW.......MMY....MMMMFF", "............WW........................WW................FFFF", "...........WWW...............1........WWWW..................", "...........WWWY....MM................YWWWW..................", "...........YYYYFFFFMM................YYYYY........FFF.......", "FFFMM...........FFFMM......YYYYYY.................FFFM......", "FFFMM.............MMMM....YY....YY................FMMMM...MM", "..................MMMM......................XC.....MMM.....M", ".......YYYYY.......FFC..4..........4.....XXMMY..............", "..4....YY..........FF....................FFFX............4..", "MM.4.........................FF..........FFF............4...", "MM.....FF......MM.........MMFFF...MMFF..............MM.....M", "MMMMM..FF......MMMM.....MMMMFFFF..MMFF.............MMMM...MM"], "BossRace_13": ["MMMMRRRRRRMMMMMMMMMMRRRRRRRRRRMMMMMMMMMMMMMMRRRRRRRRRRRMMMMM", "MMMRRRRRRRRRMMMMMRRRRRRRRRRRRRRRMMMMMMMMMRRRRRRRRRRRRRRRRMMM", "MM4......RRRRMM4................4MMMMMMRRRRRR............4MM", "MR.................................MMRRRRRR...............RM", "MR...............................................MM.......RR", "RR..................YY...........................MM.......RR", "RR....1.............YY...............................1....RR", "RR..........................1.............................RR", "RR................................CC......................RR", "RR..MM........MMM4...............RCC......4MMM............RR", "RR..MM........MMMMM............RRRR......MMMMM.............R", "RR............RRMMMMRR......RRRRRR....RRMMMMRR.............M", "MR............RRRRMMRR.....MMRRR......RRMMRRRR..MT.........M", "MM......P.TM...RRRMMMRR....MM........RRMMMRRR...WWO......RMM", "MM........WW......4MMRR..............RRMM4......WW......RRMM", "MM4.....WWWW.......MMR................RMM.......WWWWT...RRRM", "MMR.....WWWW............TMM......MMT............WWWWM....RRR", "MRR.....................RRM......MRR......................RR", "MRR...........MM......RRRRM......MRRRR............1.......RR", "RRR.....RRRRRRMM.....RRRR..........RRRR...................RR", "RR.....RRRRRRRR....TWWR..............RWWT....MM..........RRR", "RR....CCR..........WWW................WWW....MMRRRRR.....RRM", "RR....CC....1......WW4.......RR.......4WW.....RRRRRYY....RRM", "RR................WWW.......RRRR.......WWW.........YY....RRM", "RR................WWTR......TMMT......RTWW...............RMM", "RRR................RRRR..............RRRR................MMM", "MRR.........M.......RRRR............RRRR......MRR.......4MMM", "MMR.........M.........RRR..........RRR........MRRRR.....MMMM", "MMM........4MM.........RR..........RR.........MMRRR.....MMMM", "MMM........MMMMMM......MM..........MM........MMMMMM......MMM", "MMM......MMMMMM........MM..........MM......MMMMMM........MMM", "MMMM.....RRRMM.........RR..........RR.........MM4........MMM", "MMMM.....RRRRM........RRR..........RRR.........M.........RMM", "MMM4.......RRM......RRRR............RRRR.......M.........RRM", "MMM................RRRR..............RRRR................RRR", "MMR...............WWTR......TMMT......RTWW................RR", "MRR....YY.........WWW.......RRRR.......WWW................RR", "MRR....YYRRRRR.....WW4.......RR.......4WW......1....CC....RR", "MRR.....RRRRRMM....WWW................WWW..........RCC....RR", "RRR..........MM....TWWR..............RWWT....RRRRRRRR.....RR", "RR...................RRRR..........RRRR.....MMRRRRRR.....RRR", "RR.......1............RRRRM......MRRRR......MM...........RRM", "RR......................RRM......MRR.....................RRM", "RRR....MWWWW............TMM......MMT............WWWW.....RMM", "MRRR...TWWWW.......MMR................RMM.......WWWW.....4MM", "MMRR....U.WW......4MMRR..............RRMM4......WWZ.......MM", "MMR.......WW...RRRMMMRR........MM....RRMMMRRR...MT........MM", "M.........TM..RRRRMMRR......RRRMM.....RRMMRRRR............RM", "M.............RRMMMMRR....RRRRRR......RRMMMMRR............RR", "R.............MMMMM......RRRR............MMMMM........MM..RR", "RR............MMM4......CCR...............4MMM........MM..RR", "RR......................CC................................RR", "RR.............................1..........................RR", "RR....1...............................YY.............1....RR", "RR.......MM...........................YY..................RR", "RR.......MM...............................................RM", "MR...............RRRRRRMM.................................RM", "MM4............RRRRRRMMMMMM4................4MMRRRR......4MM", "MMMRRRRRRRRRRRRRRRRMMMMMMMMMRRRRRRRRRRRRRRRMMMMMRRRRRRRRRMMM", "MMMMMRRRRRRRRRRRMMMMMMMMMMMMMMRRRRRRRRRRMMMMMMMMMMRRRRRRMMMM"], "BossRace_14": ["FFFFFFFMMFFFFFFFFXXXFFFFFFFFFFFFFFFFFFFFXXXFFFFFFFFMMFFFFFFF", "FFFFFFFFMFFFFFFFFFYFFFFFFFFFFFFFFFFFFFFFFYFFFFFFFFFMFFFFFFFF", "FFFFFF...................XXX....XXX...................FFFFFF", "FFFFFF................................................FFFFFF", "FFFF4..................................................4FFFF", "FFFF...MFFFF..........X......YY......X..........FFFFM...FFFF", "FF.....MFFFF..........XX.....XX.....XX..........FFFFM.....FF", "FF.....MMMFF..........X......XX......X..........FFMMM.....FF", "MF......CMFF.....4X.......4FFFFFF4.......X4.....FFMC......FM", "MM......4MXM....XXX.......FFFFFFFF.......XXX....MXM4......MM", "FF...............X........FFWWWWFF........X...............FF", "FF...................1....XXWWWWMX....1...................FF", "FF...X.....................XWWWWX.....................X...FF", "FF...XXX....MMM..............................MMM....XXX...FF", "FF..........F4MX......Y..............Y......XM4F..........FF", "FF..........FFM.....CYYXX..........XXYYC.....MFF..........FF", "FFC................XXXXX............XXXXX................CFF", "FFX...NNNN.........FFFX4..FFFL.FFF..4XFFF.........NNNN...XFF", "FFX.......................MFF..FFM.......................XFF", "FFX.........Y.............MMWWWWMM.............Y.........XFF", "FFXX.......CYX....XY.......MWWWWM.......YX....XYC.......XXFF", "FFF4......XXXXX.1.MMMM................MMMM.1.XXXXX......4FFF", "FFFF........XX....MFFF................FFFM....XX........FFFF", "FFFF..............FFFF................FFFF..............FFFF", "FFFF....X4.........FFWWWWC...XX...CWWWWFF.........4X....FFFF", "FFXX...FXX..........FWWWWX...FF...XWWWWF..........XXF...XXFF", "FF.....FFX....FXX4.....4XX...FF...MX4.....4XXF....XFF.....FF", "FF.....FFX....FFXX........................XXFF....XFF.....FF", "FF............FFWW........................WWFF............FF", "MY....1.......H.WW........................WWG........1....YM", "MY..............WW........................WW..............YM", "FF............FFWW........................WWFF............FF", "FF.....FFX....FFXX........................XXFF....XFF.....FF", "FF.....FFX....FXX4.....4XM...FF...XX4.....4XXF....XFF.....FF", "FFXX...FXX..........FWWWWX...FF...XWWWWF..........XXF...XXFF", "FFFF....X4.........FFWWWWC...XX...CWWWWFF.........4X....FFFF", "FFFF..............FFFF................FFFF..............FFFF", "FFFF........XX....MFFF................FFFM....XX........FFFF", "FFF4......XXXXX.1.MMMM................MMMM.1.XXXXX......4FFF", "FFXX.......CYX....XY.......MWWWWM.......YX....XYC.......XXFF", "FFX.........Y.............MMWWWWMM.............Y.........XFF", "FFX.......................MFFK.FFM.......................XFF", "FFX...NNNN.........FFFX4..FFF..FFF..4XFFF.........NNNN...XFF", "FFC................XXXXX............XXXXX................CFF", "FF..........FFM.....CYYXX..........XXYYC.....MFF..........FF", "FF..........F4MX......Y..............Y......XM4F..........FF", "FF...XXX....MMM..............................MMM....XXX...FF", "FF...X.....................XWWWWX.....................X...FF", "FF...................1....XMWWWWXX....1...................FF", "FF...............X........FFWWWWFF........X...............FF", "MM......4MXM....XXX.......FFFFFFFF.......XXX....MXM4......MM", "MF......CMFF.....4X.......4FFFFFF4.......X4.....FFMC......FM", "FF.....MMMFF..........X......XX......X..........FFMMM.....FF", "FF.....MFFFF..........XX.....XX.....XX..........FFFFM.....FF", "FFFF...MFFFF..........X......YY......X..........FFFFM...FFFF", "FFFF4..................................................4FFFF", "FFFFFF................................................FFFFFF", "FFFFFF...................XXX....XXX...................FFFFFF", "FFFFFFFFMFFFFFFFFFYFFFFFFFFFFFFFFFFFFFFFFYFFFFFFFFFMFFFFFFFF", "FFFFFFFMMFFFFFFFFXXXFFFFFFFFFFFFFFFFFFFFXXXFFFFFFFFMMFFFFFFF"], "BossRace_2": ["WWWWWWWWWWWWWWWWWNNNNNFFFFFFFFFFFFFFFFNNNNNWWWWWWWWWWWWWWWWW", "W.........TWWWWWWYFFFFFFFFFFFFFFFFFFFFFFFFYWWWWWWT.........W", "W....................1.......44.......1....................W", "W.....FFF....44...........L....DL............44....FFF.....W", "W...FFFFFF........................................FFFFFF...W", "W...FFFFTFF.........NT.......CC.......TN.........FFTFFFF...W", "W..FFFWWWWF.........NWWWWWWWWWWWWWWWWWWN.........FWWWWFFF..W", "W..FFFWWWWF.........NWWWWWWWWWWWWWWWWWWN.........FWWWWFFF..W", "W..FFTWWWWW.........NWW..TNNNNNNNNT..WWN.........WWWWWTFF.DW", "W...FFWWWWWNNN......NWW....FFFFFF....WWN......NNNWWWWWFF...W", "WT...FFFWWWWWT......NWW..D...........WWN......TWWWWWFFF...TW", "WW......WWWWW.......NWW..............WWN.......WWWWW......WW", "WW.D.......WW.......NT................TN.......WW.......D.WW", "WW.........WWFFFF..................D.......FFFFWW.........WW", "WW........4WWYYFF..D....................D..FFYYWW4........WW", "WT........4WW...........MMFFFYYFFFMM...........WW4........TW", "W.........NWW...........FFFFFMMFFFFF...........WWN.........W", "W.........NWW..................................WWN.........W", "W.........NWW..................................WWN.........W", "W1......P.NWWFFFFM........C......C........MFFFFWWNO.......1W", "W..D......NWWFFFFTP....NNNY......YNNN...O.TFFFFWWN......D..W", "W.........NNNN........WWWWWW....WWWWWW........NNNN.........W", "W.....FFFFMMD.........WWWWWW....WWWWWW.........DMMFFFF.....W", "W.....FFYYM..........WWWFF........FFWWW..........MYYFF.....W", "WNNT...............WWWWWFF........FFWWWWW...D...........TNNW", "WWW................WWWTD.............TWWW................WWW", "WWW................WWWY.....TMMT....DYWWW................WWW", "WFF................NNNN.....FFFF.....NNNN................FFW", "WFF.........FFFF.................................FFFF....FFW", "WFF..4.MMFF.FF1M............................MMFF.FFMM.4..FFW", "WFF..4.MMFF.FFMM............................M1FF.FFMM.4..FFW", "WFF....FFFF.D...............................FFFF.........FFW", "WFF................NNNN..D..FFFF.....NNNN................FFW", "WWW................WWWY.....TMMT.....YWWW................WWW", "WWW............D...WWWT........D.....TWWW................WWW", "WNNT...............WWWWWFF........FFWWWWW...............TNNW", "W.....FFYYM..........WWWFF........FFWWW.......D..MYYFF.....W", "W.....FFFFMMD.........WWWWWW....WWWWWW.........DMMFFFF.....W", "W.D.......NNNN....U...WWWWWW....WWWWWW..Z.....NNNN.........W", "W.......U.NWWFFFFT.....NNNY......YNNN.....TFFFFWWNZ.....D..W", "W1........NWWFFFFM........C......C........MFFFFWWN........1W", "W.........NWW..................................WWN.........W", "W.........NWW..................................WWN.........W", "WD........NWW...........FFFFFMMFFFFF...........WWN.........W", "WT........4WW...........MMFFFYYFFFMM...........WW4........TW", "WW........4WWYYFF..D....................D..FFYYWW4........WW", "WW.........WWFFFF..........................FFFFWW.........WW", "WW.D.......WW.......NT............D...TN.......WW.......D.WW", "WW......WWWWW.......NWW..............WWN.......WWWWW.....DWW", "WT...FFFWWWWWT......NWW..D...........WWN......TWWWWWFFF...TW", "W...FFWWWWWNNN......NWW....FFFFFF....WWN......NNNWWWWWFF...W", "W..FFTWWWWW.........NWW..TNNNNNNNNT..WWN.........WWWWWTFF..W", "W..FFFWWWWF.........NWWWWWWWWWWWWWWWWWWN.........FWWWWFFF..W", "W..FFFWWWWF.........NWWWWWWWWWWWWWWWWWWN.........FWWWWFFF..W", "W...FFFFTFF.........NT.......CC.......TN.........FFTFFFF...W", "W...FFFFFF.....D..........K.....K.................FFFFFF...W", "W..D..FFF....44..............................44....FFF.....W", "W....................1.......44.......1....................W", "W.........TWWWWWWYFFFFFFFFFFFFFFFFFFFFFFFFYWWWWWWT.........W", "WWWWWWWWWWWWWWWWWNNNNNFFFFFFFFFFFFFFFFNNNNNWWWWWWWWWWWWWWWWW"], "BossRace_3": ["FFFFFFFFFFF..............FFFFFFFFFFF.............FFFFFFFFFFF", "FFFFFFFFFFF..............FFFFFFFFFFF.............FFFFFFFFFFF", "FF................T...........M.........T.................FF", "FF.4.....4...............1...MM....1..............4.....4.FF", "FF............T..............MMM............T.............FF", "FF...................T........M...........................FF", "FF.....FFFF.......T.........FFMFF........T................FF", "FF.....FFFF.................FFMFF.............FFFF........FF", "FF.....FFFF.................FFFFF....T.......FFFFFF.......FF", "FF.4..FFFFF...T.............FFFFF...........FFFFFFF.....4.FF", "FF....FFFF................4...M...4.........FFFFFFF.......FF", "......FFFF.........T.........MMM.........T..FFFFFF..........", ".............T................M......T..............T.......", "......................T.......M.............................", ".........................MMM..M..MM...........T.........T...", "..T....T....T..............M..M..M...............T..........", "................M..MMM.................M....................", "................M..M...................MM.............T.....", ".........T.....MM........M.......MMM...M......M.............", ".....T...................MMM.....M...........MM...T.........", "......................M......................M...........T..", "...............MM...MMM.............MMM.....................", "...............M.............MMM....M....MM.................", "..............................M...........M.................", "FF.1.......4......MM....MMM.....................4.......1.FF", "FF......FF....M....M....M....................M....FF......FF", "FF..M...FF....MM.................MM....M....MM....FF.MM...FF", "FFMMMMMMFFMMMMMM..................M..MMM....MMMMMMFFMMMMMMFF", "FF..MM..FF...........M...M........M...............FF..M...FF", "FF......FF...........MM..M........M...............FF......FF", "FF.1....FF.4..........M..M................MM....4.FF....1.FF", "FF......FF........M......MM............M..........FF......FF", "FF..MM..FF....M...MM.............MM..MMM......M...FF..MM..FF", "FFMMMMMMFFMMMMMM..................M.........MMMMMMFFMMMMMMFF", "FF...M..FF...MM..........MM.......M...........MM..FF.MM...FF", "FF......FF............M...M..MMM..M..M..M.........FF......FF", "FF.1.......4.....M..MMM......M.......M..M..M....4.......1.FF", "................MM....M......M.......M.....M................", "................M...........................................", "................................M...................T.......", ".........................MM.....MMM....M...MMM..........T...", "..........T.........M.....MM...........MM....M..............", ".....T..............MM...........................T..........", "..T..........T....................MMM................T......", "........................M.....M....M..........T..........T..", ".......T...............MMM..MMM...........T.................", "....T.....FF......T..........MMM...................FF.......", "..........FFFFF...............M...............T...FFF.......", "..........FFFFF...............M.........T.........FFFF......", "FF.......FFFFF............4...M...4...............FFFF....FF", "FF.4.....FFFFF.....T........FFFFF...........T..FFFFFFF..4.FF", "FF.......FFFFF..............FFFFF..............FFFFFFF....FF", "FF........FFFF..T...........FFMFF.....T........FFFFFFF....FF", "FF....................T.....FFMFF.........................FF", "FF............................M............T..............FF", "FF...........T....T..........MMM..........................FF", "FF.4.....4...............1...MM....1....T.........4.....4.FF", "FF............................M.............T.............FF", "FFFFFFFFFFF..............FFFFFFFFFFF.............FFFFFFFFFFF", "FFFFFFFFFFF..............FFFFFFFFFFF.............FFFFFFFFFFF"], "BossRace_4": ["4FF......................MMM.............................FF4", "FFF......................MMM.............................FFF", "FF4........MM.......1....MM......MM....1.....M...MM......4FF", "...........MM..MM.......MM.......MM.........MM....MM........", "......MMM......MM......MMM.......MM................M..MM....", ".....MMM..............................................MM....", "MMMMMMM.....................MM.......M.....M..........MMMM..", "MMMM.............MMMMMM.....MM......MM....MM...MMMM....MMM..", "M.........MMMM....MMMM...............M....MM...MFFF.....MMMM", "..........FFFM...........................MM....MF4F.......MM", "....MM....F4FM..............MFFFM.......MMM....MFFF.........", "....MM....FFFM.......MM.....MF4FM......MMM............MM....", ".....................MM.....MFFFM.....MMM............MMM....", "......................MM.............MM..............MMM....", "......MMM......MM......MM...........MM.....MM.....M.........", ".1.....MMM.....MM......MMMM........MM......MM....MM.......1.", "........MMM..............MMMM...................MMM.........", "...........................MMM.................MM...........", "..MM.........................MMM............................", "..MM......MMMM.....MMM.................MMM............MMMMMM", ".........MMMMM.....M4F.................F4M.........M..MMM...", ".......MMMM........MFF.................FFM......MMMM........", ".......MMM.....................................MMMM.........", "...MM..M...............MM....FFF....TM......MMMMMMM.........", "..MMM.........MMMM.....TT....F4F....TM..................MM..", "MMMMM.........MMMMM..........FFF........................MM..", ".................MMM.......................MM.......M.......", "..................MM......................MM........MM......", "...........MMM........TFFFT.......TFFFT..MMM...MMM..MM......", ".....M.....FFF........FFFFF.......FFFFF..M.....FFF..........", ".1..MMM....F4F........FF4FF.......FF4FF........F4F........1.", "...........FFF........FFFFF.......FFFFF........FFF....MM....", "...........MMM........TFFFT.......TFFFT..M.....MMM....MMM...", ".......MM.........MM.....................MM............MM...", ".......MM........MMM.....................MM.................", "................MMM..........FFF............................", "MM.............MMM.....TM....F4F....MT.......MMMMM..........", "MMMMM.........MM.......MM....FFF....MM........MMMMMM........", "..MMMMM.........................................MMMM..MMMM..", "...MMMM............MFF.................FFM............MMMMMM", ".....MM..MMMM......M4F.......MM........F4M..............MMMM", "...................MMM.....MMM.........MMM....M.............", "..........................MMM....M...........MM....MM.......", "........MM....MM.........MM......MMM...............MM.......", ".1.....MM......M.......MMM.........MM.....................1.", "......................MMM...................................", "....................MMM..................M...........MMM....", "...MMMM....MMMM....MM.......MFFFM.......MM.....MMMM...MM....", "...MMM.....FFFM.............MF4FM......MMM.....MFFF........M", "...M.......F4FM.............MFFFM......MM......MF4F.......MM", "...........FFFM......................MMM.......MFFF.....MMMM", "M...................................MMM................MMM..", "MMMMM.............MM....M..........MMM...............MMMM...", "..MMMMMM..........MM....M..........M.....MM.........MMMMM..F", "....MMMMMM..............MM...............MM...MMM..MMM......", "......MMMM..MMM.........MM.....MM.............M....MM.......", ".........M..M............MM....MM...........................", "FF4.......................MM.............................4FF", "FFF............MM...1......MM.........1.....MM...........FFF", "4FF............MM..........MM...............MM...........FF4"], "BossRace_5": ["WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFWWW", "WWWFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFWW", "WWFFFFF4FFFFF4F............4.MMM.4............F4FFFFF4FFFFWW", "WWFFFFFFFFFFFFF..............MMM..............FFFFFFFFFFFFWW", "WWFF..FFFWWWWWM.....1........MMM........1.....MWWWWWFFFFFFWW", "WWFF..FFFWWWWWM..............MMM..............MWWWWWFFFFFFWW", "WWFF..FFFWWWWWM...MMMFFF.............FFFMMM...MWWWWWFFFFFFWW", "WWFF..FFFWWWWWM...MWWFFF.............FFFWWM...MWWWWWFFFFFFWW", "WWFF..F4FWWWWWM...MWWFFFMMM..MMM..MMMFFFWWM...MWWWWWF4FFFFWW", "WWFF..FFFMMMMMM...MMMFFFMMM..MMM..MMMFFFMMM...MMMMMMFFFFFFWW", "WWFF....................MMM..MMM..MMM...................FFWW", "WWFF....................................................FFWW", "WWFF................MM.................MM...............FFWW", "WWFF..1...FFFFF......M....MMM...MMM....M......FFFFF...1.FFWW", "WWFF......FFFFF...........MMM...MMM...........FFFFF.....FFWW", "WWFF......FFWWWMMMM.......MMM...MMM.......MMMMWWWFF.....FFWW", "WWFF......FFWWWMMM.........................MMMWWWFF.....FFWW", "WWFF...4..FFWWWMM...........................MMWWWFF..4..FFWW", "WWFF......FFWWWM.....MM...............MM.....MWWWFF.....FFWW", "WWFF......MMWWWFF....MMM...MMMMMMM...MMM....FFWWWMM.....FFWW", "WWFF..MMMMMMWWWFF....MMM...WWWWWWW...MMM....FFWWWMMMMMM.FFWW", "WWFF....MMMMWWWFF..........WWWWWWW..........FFWWWMMMM...FFWW", "WWFF......MMWWWFF..........FFFFFFF..........FFWWWMM.....FFWW", "WWFF...4..FFWWWM...........FFFFFFF..........FFWWWFF..4..FFWW", "WWFF......FFWWWM......MM...MM...MM...MM.....FFWWWFF.....FFWW", "WWFF......FFWWWMM.....MM...MM...MM...MM.....FFWWWFF.....FFWW", "WWFF......FFWWWMMMM.......................MMFFWWWFF.....FFWW", "WWFF......FFFFFFMMM.......................MMFFFFFFF...1.FFWW", "WWFF.1...FFFFFFFMM.......................MMMFFFFFF......FFWW", "WWFF.....FFWWWFFMM.......................MMMMWWWFF......FFWW", "WWFF.....FFWWWFF.....MM...MM...MM...MM.....MMWWWFF......FFWW", "WWFF.....FFWWWFF.....MM...MM...MM...MM......MWWWFF......FFWW", "WWFF..4..FFWWWFF..........FFFFFFF...........MWWWFF..4...FFWW", "WWFF.....MMWWWFF..........FFFFFFF..........FFWWWMM......FFWW", "WWFF...MMMMWWWFF..........WWWWWWW..........FFWWWMMMM....FFWW", "WWFF.MMMMMMWWWFF....MMM...WWWWWWW...MMM....FFWWWMMMMMM..FFWW", "WWFF.....MMWWWFF....MMM...MMMMMMM...MMM....FFWWWMM......FFWW", "WWFF.....FFWWWM.....MM...............MM.....MWWWFF......FFWW", "WWFF..4..FFWWWMM...........................MMWWWFF..4...FFWW", "WWFF.....FFWWWMMM.........................MMMWWWFF......FFWW", "WWFF.....FFWWWMMMM.......MMM...MMM.......MMMMWWWFF......FFWW", "WWFF.....FFFFF...........MMM...MMM...........FFFFF......FFWW", "WWFF.1...FFFFF......M....MMM...MMM....M......FFFFF...1..FFWW", "WWFF...............MM.................MM................FFWW", "WWFF....................................................FFWW", "WWFF...................MMM..MMM..MMM....................FFWW", "WWFFFFFFMMMMMM...MMMFFFMMM..MMM..MMMFFFMMM...MMMMMMFFF..FFWW", "WWFFFF4FWWWWWM...MWWFFFMMM..MMM..MMMFFFWWM...MWWWWWF4F..FFWW", "WWFFFFFFWWWWWM...MWWFFF.............FFFWWM...MWWWWWFFF..FFWW", "WWFFFFFFWWWWWM...MMMFFF.............FFFMMM...MWWWWWFFF..FFWW", "WWFFFFFFWWWWWM..............MMM..............MWWWWWFFF..FFWW", "WWFFFFFFWWWWWM.....1........MMM........1.....MWWWWWFFF..FFWW", "WWFFFFFFFFFFFF..............MMM..............FFFFFFFFFFFFFWW", "WWFFFF4FFFFF4F............4.MMM.4............F4FFFFF4FFFFFWW", "WWFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFWWW", "WWWFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW"], "BossRace_6": ["...........FFFFFFY..........C...Y............FFF............", ".4....4....FFFFFFY..........Y...C............FFF.....4....4.", "...........FFFFFFY..1....4..Y.4.C..4....1....FFF............", "...FFFFY....................Y...C...........................", "...FFFFC..............FF.............FF...........MFFFFFF...", "...FFFFY..............FFT............FFT..MMMM....MFFFFFF...", ".4.FFFFC....FFFFY.........................FFFF....MFFFFFF.4.", "...YCYCY....FFFFY...............CCCCC.....FFFF....MFFFFFF...", "............FFFFY.....FFFFC.....FFFFF.....FFFF....MFFFFFF...", "............FFFFY.....FFFFY.....FFFFF.....FFFF....MMMMMMM...", "......................FFFFY.....FFFFF.....FFFF..............", "......................FFFFC.....FFFFF.....FFFF...........FF.", "......FFC.....TFF.........................MMMM.....FFFF..FF.", "......FFY......FF..................................FFFF.....", "...........................L.....L.................FFFF.....", ".1.................................................FFFF...1.", "......FFFFFFF..MMMMMMMMMMMMMMMMMMMMMMMMMMM...MM....MMMM.....", "......FFFFFFF..MMMMMMMMMMMMMMMMMMMMMMMMMMM...MM.............", "......FFFFFFF................................MM.............", "......FFFFFFF................................MM......FF.....", ".4....YYYYCCC................................MM......FF...4.", "...............MM...MMMMMMMMMMMMMMMMMMMMMM...MM...T..FF.....", "YYY............MM...MMMMMMMMMMMMMMMMMMMMMM...MM..FF........M", "CCC............MM.......................MM...MMG.FF.....MMMM", "...............MM.......................MM...MM.............", ".4.............MM.......................MM...MM.....MM....4.", "...............MM........MMMMMMMMMMMM...MM...MM.....MM......", ".....FFFFFFF...MM........MMMMMMMMMMMM...MM...MM.............", ".....FFFFFFF...MM...MM...MM.............MM...MM.....FF......", ".....FFYYYFF.H.MM...MM...MM.............MM...MM.....FF......", ".1...FFYCYFF...MM...MM...MM.............MM...MM.....FF....1.", ".....FFYYYFF...MM...MM...MM........MM...MM...MM.............", ".....FFFFFFF...MM...MM...MM........MM...MM...MM.....MM......", ".....FFFFFFF...MM...MM...MMMMMMMMMMMM...MM...MM.....MM......", "...............MM...MM...MMMMMMMMMMMM...MM...MM.............", ".4.............MM...MM..................MM...MMG..........4.", "...............MM...MM..................MM...MM.....FF......", "NNN....NFFF....MM...MM..................MM...MM....TFF..MMMM", ".......NFFF....MM...MMMMMMMMMMMMMMMMMMMMMM...MM.....FF..M...", ".4.....NNNN....MM...MMMMMMMMMMMMMMMMMMMMMM...MM...........4.", ".............................................MM.............", "....T........................................MM.....MM......", "....FF.......................................MM.....MM......", "....FF....FF...MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM.............", ".1.......TFF...MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM...........1.", "......................K...............K.....................", "..................................................MMM..TFF..", "......NNNNN.........FF.....................FF.....MMM...FF..", "..FF..FFFFF.........FF...FFFFN...FFFFFF....FFT....MMM.......", "..FF..FFFFF..........T...FFFFN...FFFFFF.....................", "...T..FFFFF..NFFFFF......FFFFN...FFMMFF.....................", "......NNNNN..NFFFFF......FFFFN...FFMMFF...........MMMMMM....", "......NFFFF..NFFFFF......NNNNN...FFFFFF..FFFFM....MFFFFF....", ".4....NFFFF..NFFFFF..............FFFFFF..FFFFM....MFFFFF..4.", "......NFFFF..............................FFFFM....MFFFFF....", "......NFFFF..........FFT.................FFFFM....MFFFFF....", ".............FFFF....FF.....................................", ".............FFFF...........N...N...........................", ".4....4......FFFF...1....4..N.4.N..4....1..FFFFFFFF..4....4.", ".............FFFF...........NNNNN..........FFFFFFFF........."], "BossRace_7": ["FFFFFFFFFFF......N.......N.........N.......N...........FFFFF", "FFFFFFFFFFF......N..1....N.........N...1...N...........FFFFF", "FFFFF...FFF......N.......N.........N.......N...D.......FFFFF", "FFFFF...FFF......N.....NNN.........N.....NNN....FFF....FFFFF", "FFFFF.4.FFF.4....N............D....N..........4.FFF.4...FFFF", "FFFFF...NNN......N.................NNNN.........NNN.....FFFF", "FFFFF............NNN..D..FFN............................FFFF", "FF...Y...4...C...........FFN....N........CC..C...4...Y....FF", "FF.......................FFN....N........CC...............FF", "FF....................NNNNNN....NFFFFF....................FF", "FF....4.NNN.4..YYY..............NFFFFFF.......4.NNN.4.....FF", "........FFF....YYY..............NNNNNNN....D....FFF.........", "NNNNNN..FFF..........YY....D....................FFF....NNNNN", ".....N..FFFFFFFF.....YY................................N....", "........FFFFFFFF.........NNNN...................NNNN...N....", ".1.........NNNNN.........FFFN...YC...NNNNNNNN...NFFF......1.", "...N.........FFN...N.....FFFN...CY...N..........NFFF........", "...N.........FFN...N........N........N..........N...........", "NNNN.D.......FFN...N........N........N...NNN....N..CC...N...", ".........YY........N...CC...N....D...NFFFFFN....N..CC...N...", ".........YY........N...CC...N........NFFFFFN....C.......NNNN", "...................N......D.NNNN......FFFFFN................", "NNNNN...........D..N..................FFFFFN................", "....N..............N........D..D...D..FFFFFN...NNNNNNN......", "....N.....NNNNN....NFFFFFFF...........NNNNNN...NFFFF........", "......D...FFFFN..D.NFFFFFFF......CC.D..........NFFFF........", "..........FFFFN....NNNNNNNN...D..CC............N.......NNNNN", "..............N.............D.........FFFFFN...N.......N....", ".........4....N..........D.....D......FFFFFN......4....N....", ".................Y..Y..Y...........NNNNNNNNN................", ".1.......................D...D..D.........................1.", ".....................D..............D....D....C.............", "....N.D..4..FFN..D...........................CC...4...D.....", "....N.......FFN....NNNNNNN....D..NNNNNNNNNN.................", "NNNNN.......FFN....NFF.....D............FFN.................", "............FFN....NFF..................FFN....NFF......N...", ".......C..NNNNN..D.NFF.D.NNNNNNNN...N..CFFN....NFF......N...", "...................NFF...NFFFFFFN.D.N...FFN....NFF......NNNN", "NNNNN..............NFF...NFFFFFFN...N...FFN....NNNNNN.......", "....N....NNNN......NFF...N..CC..N...N.......................", "....N....NFF.......NFF..............N..D....................", ".........NFF.......NFF..............N.....NFF.........NNNNNN", "......D..NFF.......NNNNNNNNNNNNNNNNNN.....NFF..N......N.....", ".........NFF...........................Y..NFF..N..C...N.....", ".1........................................NFF..N..........1.", ".....N.......NNNNNN....NNNNNN.............NFF..N......D.....", ".....N...C...FFFFFN....NFFFFN.............NFF..NNNN.........", "NNNNNN..FFF..FFFFFN.....FFFFN....NNNNNN........FFFF.....N...", "........FFF.......N.....FFFFN.......FFN........FFFF.....NNNN", "......4.NNN.4.....N..Y..FFFFN.......FFN.......4.NNN.4.......", "FFFF............NNN.....FFFFN.......FFN...Y.................", "FFFF.......................NN...D...NNN.....................", "FFFF..Y..4..C.............................D...C..4..Y...FFFF", "FFFFF................NNNN...............................FFFF", "FFFFF.............D.....N...CC...NNN...................FFFFF", "FFFFF.4.NNN.4...........N...CC...N............4.NNN.4..FFFFF", "FFFFF...FFF.....NN......N........N......NNN.....FFF...FFFFFF", "FFFFFFFFFFF.....N.......N........N........N.....FFFFFFFFFFFF", "FFFFFFFFFFFFF...N...1...N........N....1...N.....FFFFFFFFFFFF", "FFFFFFFFFFFFF...N.......N........N........N.....FFFFFFFFFFFF"], "BossRace_8": ["FFFFFFFF....MMMMMC.FFFFFFFFFMC.....FFFMMMMMMMMMMMC...FFFFFFF", ".FFFFFFFFF..MMMMM.....FFFFFFMM......FFCMMMMMMMM........FFFFF", "....TFFFFFFMMMM........TFFFMMM.........MMMCFFFF.........TFFF", "......FFFMMMMC...........FMMM..........FFM................FF", ".......FMMMC..........4....MM...1......4..................FF", "..4.....MM.................CM..............................F", ".................................MCC...........C...........T", ".................................MMM..........MM......1.....", ".......1..........FF.........................MMM4...........", "T.........YYNNNTWWWFF.........................C.............", "F....T....WWWWWWWWWWW.............................MMM.......", "F.........FFWWWWWWWT............T.....NNNN........MMC.....FM", "F.........FFFFWWW.........MM..........WWWN...............FFM", "FF.................FFFFCMMMMM........WWWWYT.............FFCM", "FF..............FFFFFF.....C.........WWWWWW.............FFCM", "FFFF...........FFFFF..................TWWWWWW...........FMMM", "FFFFFM.........MF.....................FFFWWWWWW....T.....MMM", "FF...MC.......MM.......................FFFFWWWW...........MM", "F....MM.......CM........................FFFNNWW............M", "F...MM4........MM.....CM4..MF.....T.1.....FFYYT.......T....C", "T..MMC.........M.....MMMMMMMFFF....................4........", "......................MMMMMFFFFF...................T........", "........................CC...FFFFM..........CC...........T..", "F.........M......4.............FMMMC...................1....", "FF........MC.....................MMMMMM.....................", "FF......CMMM..........CMM.........4CMM................T.....", "FFF....MMMMMM.........MMMM.......................T..........", "FFFF.....CMFF........FMMMM................MM...............T", "FFFT......FFFF......FFFMC4...............MMMMM.............F", "FF..........FFFF..MFFFF...............FFMMMMCFF......T....FF", "FF....T......FFCMMMMFF...............FFFFM..FFFF..........FF", "F.............MMMMM................CMFFF......FFFF......TFFF", "T...............MM................MMMMF........FFMC4....FFFF", ".......1..T.......................MMMM4........MMMMMM....FFF", ".....T................MMC..........MMC..........MMMC......FF", ".....................MMMMMM4....................CM........FF", ".....4..................CMMMF....................M.........F", "..T...........CC..........MFFFF...CC........................", "........T...................FFFFFMMMMM..................4...", ".............................FFFMMMMMMM.....M.........CMM..T", "C....T.......TYYFF.......T.....FM..4MC.....MM...1.....MM...F", "M............WWNNFFF........................MC.......MM....F", "MM...........WWWWFFFF.......................MM.......CM...FF", "MMM.....T....WWWWWWFFF.....................FM.........MFFFFF", "MMMF...........WWWWWWT..................FFFFF...........FFFF", "MCFF.............WWWWWW.........C.....FFFFFF..............FF", "MCFF.............TYWWWW....1...MMMMMCFFFF.................FF", "MFF...............NWWW..........MM.........WWWFFFF.........F", "MF.....CMM........NNNN.....T............TWWWWWWWFF.........F", ".......MMM.............................WWWWWWWWWWW....T4...F", ".............C.........................FFWWWTNNNYY.........T", "...........4MMM.........................FF..................", ".....1......MM..........MMM.................................", "T...........C...........CCM.................1...............", "F..............................MC4................MM........", "FF.............................MM...............CMMMF.......", "FF................MFF..........MMMF...........CMMMMFFF......", "FFFT.........FFFFCMMM.........MMMFFFT........MMMMFFFFFFT....", "FFFFF........MMMMMMMMCFF......MMFFFFFF.....MMMMM..FFFFFFFFF.", "FFFFFFF...CMMMMMMMMMMMFFF.....CMFFFFFFFFF.CMMMMM....FFFFFFFF"], "BossRace_9": ["MMM......MMMMFFFFFFFF.....MMMMMMMMMFFF........MMMMYYC...FFFF", "MMM......MM.....FFFFF........MMMFFFFFF..........MM........FF", "MMM......MM........FF........MMM....FF..........MM........FF", "....FFFFFF......MMMFFFF.............FNNNN..................F", "FFFFFFF.............................FNWWWW.................F", "FFFNNNN......................4........WWWW......MM....MMM..M", ".FFY...........................MMM....WWWW......MMFFFFFMM..M", ".FFC.4......................CYYMMM......MMMFF........FFMM..T", "...........CCYYYWWW.............MM.......MMFF........FFFF...", "...............WWWWW............MM.......MMFF...............", "C..............WWWWW...YYMM..1...........WWWF...4...........", "Y.....CC.......MMMMM.....................WWWF.......T.......", "NNNN........1..FFFFF............MMM......WWWF...MMMMM.......", "FFFF...........FFFFF.4...................WW.....MMFFF.......", ".........WWW....FFF.....WWWW.....FFFFF...WW.................", ".........WWWWW..FFF..WWWWWWW.....MMMFF...TY..1............MM", ".....MMMMWWWWW..FFF..WWWWWWW.....MM.....................MMMM", "FF.....MMMT..........NNNNNWW..4..MM.4.........MM..........FF", "FF......................YYWW....FMM..........FFF..........FF", "FF..............................FMMMM.....FFFFFF..........FF", "FF....................1.........FFF......MMMMT.......MMMM.FF", "FF...MM.....4.C..........................MM........YYMMFFFFF", "....MMM.......Y.............CC...........MM...........FFFFFF", "....M......MMMY...NNNN....NNNN........................FFFF..", "....T......MMMY...CY...................4......C.4....MMFF...", "M..........MM.................................Y......MMFF...", "M.4........MM...................YYYYMMFFFFF...YMMM.....FF...", "M..........FF......................MMMMMMFF...YMMM..........", "MM..MM.FFFFFFFF...MM...FFFF......4.......FF.....MM..1.......", "MM..MM.FFFFFFFF...MM...FFFF.....................MM.......4.M", "M..........FF............FF.......FF............FF.........M", "M.4........MM.....................FFFF...MM...FFFFFFFF.MM..M", "M.......1..MM.....FF.......4......FFFF...MM...FFFFFFFF.MM..M", "...........MMMY...FFMMMMMM......................FF.........M", "....FF.....MMMY...FFFFFMMYYYY...................MM.......4.M", "....FFMM......Y.................................MM..........", "....FFMM....4.C.....4....................YC...YMMM......T...", "...FFFF........................NNNN....NNNN...YMMM......M...", "FFFFFFF...........MM...........CC.............Y.......MMM...", "FFFFFFMMYY........MM..........................C.4.....MMFFFF", "FF.MMMMM.......TMMMM......FFF.........1...................FF", "FF...........FFFFFF.....MMMMF.............................FF", "FF...........FFF..........MMF....WWYY.....................FF", "FF...........MM.........4.MM..4..WWNNNNN..........TMMM....FF", "MMMM..............YT......MM.....WWWWWWW..FFF..WWWWWMMMM....", "MM.............1..WW...FFMMM.....WWWWWWW..FFF..WWWWW........", "..................WW...FFFFF.....WWWW.....FFF....WWW.......C", "........FFFMM...FWWW...................4.FFFFF.............Y", "........MMMMM...FWWW......MMM............FFFFF..1........NNN", "........T.......FWWW.....................MMMMM.......CC.....", "............4...FFMM...........1..MMYY...WWWWW..............", "....FFFF........FFMM.......MM............WWWWW..............", "T...MMFF........FFMMM......MM.............WWWYYYCC....4.CFF.", "M...MMFFFFFMM......WWWW....MMMYYC.......................YFF.", "M...MMM....MM......WWWW....MMM.......................NNNNFFF", "F..................WWWWNF......4.....................FFFFFFF", "F...................NNNNF.............FFFFMMM.....FFFFFF....", "FF.........MM..........FF...............FF........MM.....MMM", "FF.........MM..........FFFFFFMMM........FFFFF.....MM.....MMM", "FFFF....CYYMMMM........FFFFMMMMMMM......FFFFFFFFMMMM.....MMM"], "CRoyale": ["CC......2.2.2.....CCT", "........RRRRR.......C", "RRRRRRRRRRRRRRRRRRRRR", "RRRRRRRRR...RRRRRRRRR", "RRRRXXX...8...XXXRRRR", "RRRRXMXRR...RRXMXRRRR", "....XXXRRRRRRRXXX....", "........RRRRR........", ".....................", ".....................", ".....................", ".....................", ".........RRR.........", "........RRRRR........", "...B....RRRRRB......T", "WWWN...NWWWWWN...NWWW", "WWWN...NWWWWWN...NWWW", "WWWN...NWWWWWN...NWWW", "T......BRRRRR....B...", "........RRRRR........", ".........RRR.........", ".....................", ".....................", ".....................", ".....................", "........RRRRR........", "....XXXRRRRRRRXXX....", "RRRRXMXRR...RRXMXRRRR", "RRRRXXX...8...XXXRRRR", "RRRRRRRRR...RRRRRRRRR", "RRRRRRRRRRRRRRRRRRRRR", "C.......RRRRR........", "TCC.....1.1.1......CC"], "CaptureTheFlag_1": ["MMMM.......2.2.2.......MMMM", "M.........................M", "M.....MMMT.......TMMM.....M", "...........................", "RRRRRRR.............RRRRRRR", "RRRRRRR.............RRRRRRR", "RRMT.........8.........TMRR", "RRM.....................MRR", "RRM......M.......M......MRR", "RRM......MM.....MM......MRR", "RRM......RR.....RR......MRR", "RRM.....................MRR", "RRM...M.............M...MRR", "RRM...MM...........MM...MRR", "...........................", "...........................", ".......MRR.......RRM.......", ".......MMM.......MMM.......", "RRT.....................TRR", "RRT.....................TRR", "RRT.....................TRR", ".......MMM.......MMM.......", ".......MRR.......RRM.......", "...........................", "...........................", "RRM...MM...........MM...MRR", "RRM...M.............M...MRR", "RRM.....................MRR", "RRM......RR.....RR......MRR", "RRM......MM.....MM......MRR", "RRM......M.......M......MRR", "RRM.....................MRR", "RRMT.........8.........TMRR", "RRRRRRR.............RRRRRRR", "RRRRRRR.............RRRRRRR", "...........................", "M.....MMMT.......TMMM.....M", "M.........................M", "MMMM.......1.1.1.......MMMM"], "CaptureTheFlag_2": ["........2.2.2........", ".....................", ".....................", "RRRR.................", "RRRR.................", "RR........8..........", "RR...................", "RR...................", "RR...................", "RR.RRRYY.....YYRRR...", "RRCRR..YYYYYYY..RRC..", "RRY...............Y..", "RRY...............Y..", "RRR....YRR...YYYYYY..", ".RR....YRR...Y.......", ".RRYY................", ".RRYY...........YYRR.", "................YYRR.", ".......Y...RRY....RR.", "..YYYYYY...RRY....RRR", "..Y...............YRR", "..Y...............YRR", "..CRR..YYYYYYY..RRCRR", "...RRRYY.....YYRRR.RR", "...................RR", "...................RR", "...................RR", "..........8......RRRR", ".................RRRR", ".....................", ".....................", ".....................", "........1.1.1........"], "CaptureTheFlag_3": ["........2.2.2........", ".....................", "............MMMRRR...", "............M..RRMMMM", "..NNNRRRR......RR...M", "..NRRRRNN.8....RR...M", "..N..RRN.......RRRXMM", ".....CMN..........XMM", "......MN.............", "......MN....MMMM.....", ".....................", "RRR.................R", "RRMM.........MMM....R", "RR...RRR.....MM....RR", "RR...RMR......M...XMM", "MR...RMMM.....M...XMM", "MR....MMM...MMM....RM", "MMX...M.....MMMR...RM", "MMX...M......RMR...RR", "RR....MM.....RRR...RR", "R....MMM.........MMRR", "R.................RRR", ".....................", ".....MMMM....NM......", ".............NM......", "MMX..........NMC.....", "MMXRRR.......NRR..N..", "M...RR....8.NNRRRRN..", "M...RR.....RRRRRNNN..", "MMMMRR..M............", "...RRRMMM............", ".....................", "........1.1.1........"], "CaptureTheFlag_4": ["........2.2.2........", ".....................", "..L.CCR..............", "....MMR..........RR..", "....MMRRR........MM..", "....MMMMM.8......MM..", ".................MO..", ".................M...", "...XX............CC..", "MMMMMRRRRR..MX.......", "MMMRRRRRMMMMMXR......", "XX...RR..XXRRRR......", "X.........X..........", "................CR...", ".....N........YYYR...", ".....NNNN......RRRRR.", "...RRRRR.....RRRRR...", ".RRRRR......NNNN.....", "...RYYY........N.....", "...RC................", "..........X.........X", "......RRRRXX..RR...XX", "......RXMMMMMRRRRRMMM", ".......XM..RRRRRMMMMM", "..CC............XX...", ".U.M.................", "...M.................", "..MM......8.MMMMM....", "..MM........RRRMM....", "..RR..........RMMK...", "..............RCC....", ".....................", "........1.1.1........"], "CaptureTheFlag_5": ["RRMMC...2.2.2........", "RRMY.................", "RR..............RRRRR", "RRRRRR..........RRCMM", "..RRMMMY..8.....RR...", "..RR..MM........RR...", "MMRR..MMMMM...M.RR...", "MYRR..........MRRRR..", "RRRR..........MM.RRYM", "..........MMMMMM.RRMM", "......YY..YM.....RRRR", "....NNNN.............", ".....RRC.............", ".....RR..............", "...RRRR........CY....", "..MMMRR.....NNNNN....", "....MRRR.....RRRM....", "....NNNNN.....RRMMM..", "....YC........RRRR...", "..............RR.....", ".............CRR.....", ".............NNNN....", "RRRR.....MY..YY......", "MMRR.MMMMMM..........", "MYRR.MM..........RRRR", "..RRRRM..........RRYM", "...RR.M...MMMMM..RRMM", "...RR........MM..RR..", "...RR.....8..YMMMRR..", "MMCRR..........RRRRRR", "RRRRR..............RR", ".................YMRR", "........1.1.1...CMMRR"], "CaptureTheFlag_6": ["MX......2.2.2...CMM..", "M...............FRR..", "...............FFRR..", "...MM..........MMRR..", "..CMMMX...8....XMRRMM", ".....FRF..........FF.", "......FF.............", "M.....FRRRFFFF..MM...", "X.....FFFFFF...CM...C", "........NNNN........R", "...................RR", "..FF..............MRR", "FFFMM.....WWWWW...MRR", "C.FFM....WWWWWW...MRR", "....M....WWWWNN...XRR", "....X....RRRRRR...FFF", "........FFRFF........", "FFF...RRRRRR....X....", "RRX...NNWWWW....M....", "RRM...WWWWWW....MFF.C", "RRM...WWWWW.....MMFFF", "RRM..............FF..", "RR...................", "R........NNNN........", "C...MC...FFFFFF.....X", "...MM..FFFFRRRF.....M", ".............FF......", ".FF..........FRF.....", "MMRRMX....8...XMMMC..", "..RRMM..........MM...", "..RRFF...............", "..RRF...............M", "..MMC...1.1.1......XM"], "CaptureTheFlag_7": ["MMMM....2.2.2...MMMMM", "MM..............RRRMM", "MM..............RRRMM", "T....C....8.....RRRMM", ".....Y..............T", ".....YMM.............", "....MMMM......MM.....", "..........RRRRMM.....", "..........RRRRMMNNN..", "..............MM.....", "...MMM...............", "....MMRRR..........RR", "....MMRRRMM........RR", "..MMMMRRRMMYY......RR", "............C...YYYRR", "................C..RR", "RR.................RR", "RR..C................", "RRYYY...C............", "RR......YYMMRRRMMMM..", "RR........MMRRRMM....", "RR..........RRRMM....", "...............MMM...", ".....MM..............", "..NNNMMRRRR..........", ".....MMRRRR..........", ".....MM......MMMM....", ".............MMY.....", "T..............Y.....", "MMRRR.....8....C....T", "MMRRR..............MM", "MMRRR..............MM", "MMMMM...1.1.1....MMMM"], "CaptureTheFlag_8": ["........2.2.2........", ".....................", "....WW..........RRR..", "....WW.........RRRY..", "..TWWW....8....RRMM..", "..MWWW.........WWWM..", "..MMRR.........WWWW..", "..RRRR.........WWWW..", "RRRRR...TMMMR........", "RRRMM.....YRR........", "..MMC.....RRR......CM", "...M......RRR......MM", ".........RRR.......RM", "......RRMMMT......RRR", "....RRRRRM.......RRRR", "...MMRRR.......CYRRR.", "..MMMMR.......RMMMM..", ".RRRYC.......RRRMM...", "RRRR.......MRRRRR....", "RRR......TMMMRR......", "MR.......RRR.........", "MM......RRR......M...", "MC......RRR.....CMM..", "........RRY.....MMRRR", "........RMMMT...RRRRR", "..WWWW.........RRRR..", "..WWWW.........RRMM..", "..MWWW.........WWWM..", "..MMRR....8....WWWT..", "..YRRR.........WW....", "..RRR..........WW....", ".....................", "........1.1.1........"], "Coop_1": ["........I........", "........I........", "....T...I........", "........I..T.....", "........I........", "..T.....I.......T", ".......III..T....", ".....IIIII.......", "........I........", "........I.....I..", "........I....II..", "..T.....I....II..", "........I........", "........I........", "....IIIII........", "....IIIII..IIII..", "........I...III..", "T...D...I........", "........I......D.", ".D.....II........", "......IIII...II..", "..II.....I....I..", ".....D...I.......", ".........III..D..", ".........III.....", "...D.............", "III..............", "III........D.....", "III...........III", "III.....1.....III", "III.....5.....III", "III....1.1....III", "III...........III"], "Coop_2": ["...I.........I...", "...I.........I...", "...I.........I...", "...IIII...IIII...", "......I...I......", "......I...I......", "...T..I...I......", "......I...I...T..", "......I...I......", ".....TI...I......", "......I...I..WW..", "......I...I..WW..", "......I...I..WW..", "......I...I......", "..IIIII...I......", "......I...I.DIIII", "......I...I......", "T....DI...I......", "......I...I.....T", "..D...I...IIII...", "......I...I...D..", "IIII..I...I......", "T.....ID.........", "......I.......III", "......I........D.", "....III..........", ".............D...", "I.....D.........I", "II.............II", "III.....1..D..III", "III.....5.....III", "III....1.1....III", "III...........III"], "Coop_3": ["FFFFFFFFFFFF................................................", "FFFFFFFFFFF.................................................", "FFFFFFFFF....MM...........MM......................MMM.......", "FFFFF........MM...........MMM.......MMMM............M..MMM..", "FFF.....MM.................MM.......MMMM....MMMM....M....M..", "FFF......M........M.........................MMMM....M....M..", "FF.MM...........MMM...MMM................................M..", "FF.M...........................MMMM....................MMM..", "FF.......MM....................MMMM.....MMMM.....MMM........", "FF.......MMM...........M................MMMM.......M........", "F.........MM.....M.....MM..........................M.......M", "F.MM.............MMM...M...........................M.......M", "...M...M...............M..........MMMM........MMM.........MM", "...M...M...MM..........MM.........MMMM..........M.....MM....", "......MM..MMM...M......MMM...MM.................M......M....", "..........MM....MM..........MMM............MMM..M...........", "F...............M...........MM.....M.......MMM.............M", "FF..............M............M.....M........MM.....MMM.....M", "FF....M.........MMM....MMM...M...MMMMM...............M....MM", "F....MM...MM...........MMM...M..........MM...........M......", "......M...MM............................MMMWWWWW............", ".........MMMMMMMMMMM.............WWWWW.....WWWWW............", "F............MM............MMMM..WWWWW.....WWWWW.......M...M", "FF............................M..WWWWW.................M...M", "F.........T......MM...........M..MMMMM...............MMM..MM", "......T..........MM.....MMMM..M...........MM...........M....", ".................MM.....M.....M...........MM.....MM....M....", "..T..........T.......M..M........MMM..MM.........MM.........", ".........T...........M..MMM.......MM..MM.........MM.........", ".....................M.......5....M...MMM....M..........MM..", ".....T..........MM...M.................M.....M.......MMMMM..", ".............MMMMM...MMM...1.1.1.......M.....MM.........MM..", ".........T....MM.....MMM............M..MMMM.................", ".............................MMM..MMM...M........M..........", ".....T.........................M...MM.........MMMM....MM..MM", "............MMM.........MMM....M...MM.................MM...M", ".........T....M...MMMM..WWWWW..M..MMM...MM............MM...M", "..............M...MMMM..WWWWW...........MM....MMMM....MM....", "..T...T..............M..WWWWW...........M...................", "...........T.....................MM.......................MM", "..............WWWWW..............MM.............M..MM......M", "........T.....WWWWW.....M....MM..M....MMMMMMM...M..MM.......", "..............WWWWW...MMMMM..MM.........MMMMM...M...........", "...T.......T............................................MM..", "...................................MM..............MMM..MM..", "...............MM.....WWWWW...MM...MM...MMM...MM...MMM..MM..", "..T.....T......MMM....WWWWW...M.....M...MMM...MM...M........", "................MM....WWWWW.................................", ".....T..................................................MM..", "...........T....................MMM.....................MM..", "..................MMM.....M.....MMM....MMMM...MM...M........", "..T................M.....MM......M......MM....MMM..MMM......", "...............T.........MM..............M....M....MM.....MM", "........T................MM........................M....MMMM", "..............................M...MM...............M....MM..", "............T.................M...MMM...MMMMMM..........MM..", "....T....T....................M....MM..MMMMMMM..M.......M...", ".................T.......MMMMMM...FFF...FFFFF...MM......M...", "..........................FFFF..............................", "............................................................"], "Coop_4": ["MMMMMMM..MMMMMMMMMMMMMMMMMM..MMMMMMM..MMMMMMMMMMMMMMMMMMMMMM", "M........M................M.....M.............M............M", "M........M................M.....M.............M............M", "MMMMMMM..M................M..MMMM.............MMMMM........M", "M........M................M..MMMMMMM..MMMMMMMMMMMMM.....D..M", "M........M....MM.............MM...MM.......................M", "MMMMMMM..M....MMM.D...D......MM...MM.......................M", "M....MM..M.....MM........MM...........MMMMMM..MMMMM........M", "M....MM.............D....MM...........MM..MM...MM...D......M", "M........................MM...........MM..MM...MM..........M", "M...................MM................MM..MM..MMM...MM.....M", "MMMMMMM.......MMMMMMMM..........................M...MM.....M", "M.............MM.........MM.....................M...MM..MMMM", "M........................MM..MM..M..M..MMMMM........MM.....M", "M..................D.....MM..MM..M..M......M...D...MMM.....M", "MMMM..MMMM..MMMMM.....MMMMM..MM..M..M......M............MMMM", "M...........M..MM......................M...M...............M", "M...........M..MM....................D.MMMMM......MMMM.....M", "MMMM..MMMM............MMMM..M...M...............D.M..M..MMMM", "M.....MMMM.............M....M...M.................M..M.....M", "M.....M.....M..MM..M...M....M...MD.....MMMM..MMM...........M", "M.....M.....M..MM..MM..M...............M.....MMM........MMMM", "MMMM..MMMM..M..MM..MM..M...............M..........M..M.....M", "M.....MMMM..MMMMM..MM..M....MMMMM..MM..M..........M..M.....M", "...................MM..M....M...M...M..MMMM..MMM..MMMM..MMMM", ".............D.....MM..M............M..M....................", "M......M........MMMMM..MM.....1.....M..M....................", "M..MM..M......D...........................MMMMMM..MM...MMMMM", "M......M......................5...........MMMMMM..MM........", "M......M........MMM..MMM............MMM............MM.......", "MMMMMMMM........M....MM......1.1.....MM............MM..M....", "M...M......D....M....MM..............MM....M..MM..MMM..MMMMM", "M...M...........M....MM....M.....M...MM....M..MM...........M", "M...M.....MM..MMM....MMMMMMMM...MMMMMMM....MMMMM.D...D.....M", "M...MMMM..MM..M......MMMMMM...............MMM..M...........M", "M......M..MM..M........................................MMMMM", "M......M..MM..................MM..MMMMMM...............M...M", "M......M..MM.........MMMMMMM..MMMMMM...M..MMMMMM.......M...M", "M...MMMM..MMMM....M..MMMMMMM..M........M..MMMMMM...D...M...M", "..........D.......M...........M.............................", "..................M...........MMM.D.........................", "MMMMM..MM.........MMM..MMMM................MM..M..M..MMMMMMM", "M...M..MM.........M....M...................MM..M..M..M..M..M", "M...M..MM...D.....M....M......MMM.......D..MM.....M..M..M..M", "M...M..MM.........M....M...M..MMMMM..MMMMMMMM.....M..M..M..M", "M...M..MMMMMMM....M....M...M..M..MM..MMMMMMMM..MMMM........M", "M......M.....M....M..............MM..MM....................M", "M.................MMM..D.........MM..MM..............MM....M", "M..MM....................................D.....MMMMMMMM....M", "M..MM..M.....M...............D.................MMMMMMMM..MMM", "M..MM..MMMMMMM..M..MM...D.......M..MMMM......D.............M", "M...............M..MM...........M..MMMM....................M", "M...............M..MM..MM...MMMMM........MMMM..MMM..MMM....M", "M...MMMM..MMMMMMM......MMM..MMMMM........MMMM..MMM....M....M", "MMMMMMMM..MMMMMMM......MM..........MMMM...............M..MMM", "M..................M..................M....................M", "M..................M........M.........M..M.....MMM.........M", "M......M..MM..MM..MM..M.....M.........M..M..........MM..M..M", "M......M..MM..MM..MM..M.....M.........M..M..........MM..M..M", "MMMMMMMM..MM..MM..MM..MMMMMMMMMMMMMMMMM..MMMMMMMMMMMMMMMMMMM"], "Gemgrab_1": ["CC......2.2.2......CC", "CC.................CC", "CC...................", ".....................", ".....................", "......YYY......YY.RRR", "RRMX.......CC.....RRR", "RRMM..............RRR", "RRRR.............XMRR", "RRRRRRMMXRRXMMRRRMMRR", "RRRRRRRRRRRRRRRRRMXRR", "RRMM...............RR", "RRXM................R", "RR...RRM.......RXM..R", "R....RXM.......RRM...", "R....................", ".....................", "....................R", "...MRR.......MXR....R", "R..MXR.......MRR...RR", "R................MXRR", "RR...............MMRR", "RRXMRRRRRRRRRRRRRRRRR", "RRMMRRRMMXRRXMMRRRRRR", "RRMX.............RRRR", "RRR..............MMRR", "RRR.....CC.......XMRR", "RRR.YY......YYY......", ".....................", ".....................", "...................CC", "CC.................CC", "CC......1.1.1......CC"], "Gemgrab_10": ["........2.2.2........", "...............RR....", "..MM...........RR....", "..MRR................", "...RR................", ".........RRR.........", ".........XMM...RR....", "...............MM....", "..MMMXR........XM....", "..DRRRR..............", "..RRRRR..............", "..RRRRDD.....DD......", "RRRRMXWWD...DWWXMRR..", "RRRRMWWW.....WWWMRR..", "H...WWWH......WWWRRRR", "...WWWW.......WWWWRRR", "...WWWW.......WWWW...", "RRRWWWW.....G.WWWW.G.", "RRRRWWW.......WWW....", "..RRMWWW.....WWWMRRRR", "..RRMXWWD...DWWXMRRRR", "......DD.....DDRRRR..", "..............RRRRR..", "..............RRRRD..", "....MX........RXMMM..", "....MM...............", "....RR...MMX.........", ".........RRR.........", "................RR...", "................RRM..", "....RR...........MM..", "....RR...............", "........1.1.1........"], "Gemgrab_11": ["........2.2.2........", ".....................", ".....................", ".....................", "...RRRRRR......RRRX..", "...RRRRRRR....RRRXMMX", "...WWWWRRR....RRRMMMX", "..WWWWWWRR....RRXMM..", "..WWWWWWRR....RRRXM..", "...TWWWRRRT..........", "....WWWRRR...........", ".......RR.......TRR..", ".........T.......RR..", "RRR.T.........RRRRRR.", "RRRRRRR.......RRRRRRR", ".RRRRRR.......XXTRR..", "....MRR.......RRM....", "..RRTXX.......RRRRRR.", "RRRRRRR.......RRRRRRR", ".RRRRRR.........T.RRR", "..RR.......T.........", "..RRT.......RR.......", "...........RRRWWW....", "..........TRRRWWWT...", "..MXRRR....RRWWWWWW..", "..MMXRR....RRWWWWWW..", "XMMMRRR....RRRWWWW...", "XMMXRRR....RRRRRRR...", "..XRRR......RRRRRR...", ".....................", ".....................", ".....................", "........1.1.1........"], "Gemgrab_12": ["YYY.....2.2.2.....RRR", "YY.................RR", "Y...................R", ".....................", "...X.................", "...MMMM.....RRRR.....", "RRRRRRRRR...XMMM..M..", "RRRRRRRRR...MMMM..M..", "RRMRRMX.......RR..R..", "RRMRRM.........R..R..", "RR.RR..........M..M..", "RR.RR..........M..M..", "RRMRRMMMM...RRRR..R..", "RRMRRX.........R..R..", "RRXRRR.........X..R..", "RRRRRRR.......MM..M..", "RRRRRRRR.....XMM..M..", "RRRRRRR.......MM..M..", "RRXRRR.........X..R..", "RRMRRX.........R..R..", "RRMRRMMMM...RRRR..R..", "RR.RR..........M..M..", "RR.RR..........M..M..", "RRMRRM.........R..R..", "RRMRRMX.......RR..R..", "RRRRRRRRR...MMMM..M..", "RRRRRRRRR...XMMM..M..", "...MMMM.....RRRR.....", "...X.................", ".....................", "Y...................R", "YY.................RR", "YYY.....1.1.1.....RRR"], "Gemgrab_13": ["......RR2.2.2RR......", "......RR.....RR......", "RRRR.............RRRR", "RRRR.............RRRR", "MMMM....TMMMT....MMMM", ".....................", ".....................", ".....MM.....MMMM.....", "RRM..MRR....RRRM..MRR", "RRM..MRR....RRR...MRR", ".....M...............", ".............RRM.....", "......RRR....RRM.....", "RRM..MRRR....RRM.....", "RRM..MMMM.....MM..MRR", "RR................MRR", "RR.................RR", "RRM................RR", "RRM..MM.....MMMM..MRR", ".....MRR....RRRM..MRR", ".....MRR....RRR......", ".....MRR.............", "...............M.....", "RRM...RRR....RRM..MRR", "RRM..MRRR....RRM..MRR", ".....MMMM.....MM.....", ".....................", ".....................", "MMMM....TMMMT....MMMM", "RRRR.............RRRR", "RRRR.............RRRR", "......RR.....RR......", "......RR1.1.1RR......"], "Gemgrab_14": ["CC......2.2.2......CC", "CC.................CC", "CC...................", ".....................", ".....................", "......YYY......YY.RRR", "RRMX.......CC.....RRR", "RRMM..............RRR", "RRRR.............XMRR", "RRRRRRMMXRRXMMRRRMMRR", "RRRRRRRRRRRRRRRRRMXRR", "RRMM...............RR", "RRXM................R", "RR...RRM.......RXM..R", "R....RXM.......RRM...", "R....................", ".....................", "....................R", "...MRR.......MXR....R", "R..MXR.......MRR...RR", "R................MXRR", "RR...............MMRR", "RRXMRRRRRRRRRRRRRRRRR", "RRMMRRRMMXRRXMMRRRRRR", "RRMX.............RRRR", "RRR..............MMRR", "RRR.....CC.......XMRR", "RRR.YY......YYY......", ".....................", ".....................", "...................CC", "CC.................CC", "CC......1.1.1......CC"], "Gemgrab_15": ["MMRRR...2.2.2...MWWRR", "MMRRR...........MWWRR", "WWWWR....RR..........", "WWWWR...MTR..........", "MMMMT...........RMMMM", "................RMRRR", "............MR..RRRRR", "...RRRRRRRRRMR.......", "..RRWWMRRRMMMR.......", ".RRRWWMRRRRRRR.......", "....WW.........MMRRRR", "................MMRRR", "P....................", ".........MMMR........", "RRRRRR.....TR........", "RRMMTR.....RR.....MRR", "RRM...............MRR", "RRM.....RR.....RTMMRR", "........RT.....RRRRRR", "........RMMM.......Z.", ".....................", "RRRMM................", "RRRRMM.........WW....", ".......RRRRRRRMWWRRR.", ".......RMMMRRRMWWRR..", ".......RMRRRRRRRRR...", "RRRRR..RM............", "RRRMR................", "MMMMR...........TMMMM", "..........RTM...RWWWW", "..........RR....RWWWW", "RRWWM...........RRRMM", "RRWWM...1.1.1...RRRMM"], "Gemgrab_16": ["CC......2.2.2....RRRM", "CC................RRM", "........RR..........T", ".......RRR...........", "RR....CYYY...........", "MM...................", ".....................", ".....................", "...........RRRRRR....", "...RRR....RRRRRRRR...", "...RRR...RRRRRRRRRR..", "...XXX..RRRRRNNNRRRR.", "........RRRR.....RRR.", "........RMM......RRRM", "MRRRR............RRRM", "MRRRRR.........TMRRRM", "MRRRRR.........RRRRRM", "MRRRMT.........RRRRRM", "MRRR............RRRRM", "MRRR......MMR........", ".RRR.....RRRR........", ".RRRRNNNRRRRR..XXX...", "..RRRRRRRRRR...RRR...", "...RRRRRRRR....RRR...", "....RRRRRR...........", ".....................", ".....................", "...................MM", "...........YYYC....RR", "...........RRR.......", "T..........RR........", "MRR................CC", "MRRR....1.1.1......CC"], "Gemgrab_17": ["CC......2.2.2.......Y", "CC...................", "...............RRRR..", "...DRRRXX.....TRRRR..", "...NRRRRM.....XNNNN..", "...NRRRRM............", "...NRRRR............R", "...NRRRRRR.........RR", "L..NRRRRRRX...N...RRR", "...NX...NNN...NXXRRRR", "..............NRRRRRR", "...............RRRRRR", "RR...X...D.....RRRRRR", "RRRNNN......D..BXNNNN", "RRRRRMD..D.......RRRR", "RRRR........D....DRRR", "RRR..D.........D..RRR", "RRRD....D........RRRR", "RRRR.......D..DMRRRRR", "NNNNXB..D......NNNRRR", "RRRRRR.....D...X...RR", "RRRRRR...............", "RRRRRRN..............", "RRRRXXN...NNN...XN.K.", "RRR...N...XRRRRRRN...", "RR.........RRRRRRN...", "R............RRRRN...", "............MRRRRN...", "..NNNNX.....MRRRRN...", "..RRRRT.....XXRRRD...", "..RRRR...............", "...................CC", "Y.......1.1.1......CC"], "Gemgrab_18": [".RRR....2.2.2...RRMR.", "..............D.RRMR.", "................RRRR.", ".....D..RRRRR...RRRR.", "RRR.....MMMM.....MM..", "RRR....D..L..D.......", "WWR...........N......", "WWR..RR....D..NRRR...", "WWR.NNN.....D.NRRR...", "WWR....D......NRRR...", "WWR......XXX..NXXX...", "RRR..MRRRRRRRRRRRRRR.", "RR...MRRRRRRRRRRRRRR.", "...D.NNNN...NNNWWWRR.", "..D..........D.WWWRR.", ".RRRRR.........WWWRRD", ".RRRRR..D..D...RRRRR.", "DRRWWW......D..RRRRR.", ".RRWWW.D..........D..", ".RRWWWNNN...NNNN.D...", ".RRRRRRRRRRRRRRM...RR", ".RRRRRRRRRRRRRRM..RRR", "...XXXN..XXX......RWW", "...RRRN......D....RWW", "...RRRN.D.....NNN.RWW", "...RRRN..D....RR..RWW", "......N..K........RWW", "..................RRR", "..MM.....MMMM.....RRR", ".RRRR...RRRRR..D.....", ".RRRR................", ".RMRR.D..............", ".RMRR...1.1.1....RRR."], "Gemgrab_19": ["YYC.....2.2.2.....CYY", "YC.................CY", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", "...RRMMMMRRRMMMRRMMMM", "...RRMMMMRRRMMMRRMMMM", ".....................", ".....................", ".....................", "MMMMMMRR....RRMMRR...", "MMMMMMRR....RRMMRR...", ".....................", "Q...................Q", ".....................", "...RRMMRR....RRMMMMMM", "...RRMMRR....RRMMMMMM", ".....................", ".....................", ".....................", "MMMMRRMMMRRRMMMMRR...", "MMMMRRMMMRRRMMMMRR...", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", "YC.................CY", "YYC.....1.1.1.....CYY"], "Gemgrab_19_train_0": [".....................", ".....................", ".....................", ".....................", ".....................", ".....................", "..7.................8", ".6...................", ".....................", ".....................", ".5...................", "..4...............3..", "...................2.", ".....................", ".....................", "...................1.", "..................0..", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", "....................."], "Gemgrab_19_train_1": [".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", ".....................", "..0..................", ".1...................", ".....................", ".....................", ".2...................", "..3...............4..", "...................5.", ".....................", ".....................", "...................6.", "8.................7..", ".....................", ".....................", ".....................", ".....................", ".....................", "....................."], "Gemgrab_2": ["RR..CYY.2.2.2.YY.RRRR", "RR................RRR", "RRR...............RRR", "RRR................RR", "..............D......", ".....................", "........D.....XMMMM..", "..RRXMM..............", "..RRMMX..............", ".............D.......", ".....................", "......RRR...RRR......", "......XMR.D.RMX......", "..RR..MMR...RMM..RR..", ".RRRR..D........RRRR.", "RRMRR.......D...RRXRR", "RRMRR...........RRMRR", "RRXRR........D..RRMRR", ".RRRR.D.........RRRR.", "..RR..MMR...RMM..RR..", "......XMR...RMX......", "......RRR...RRR......", ".....................", "...........D.........", "......D.......XMMRR..", "..............MMXRR..", "..MMMMX..............", ".....................", ".....D...............", "RR........D.......RRR", "RRR...............RRR", "RRR................RR", "RRRR.YY.1.1.1.YYC..RR"], "Gemgrab_20": ["........2.2.2...CYY..", "................CYY..", "..XX.................", "..XX.................", ".....................", ".....................", ".....NNNN............", ".....NWWW............", "...RRNWWW............", "...RRNWWW.....NNNNN..", ".....NWWW.....RRRRN..", ".....NWWW.....RRRRN..", ".....NWWW.....XXRRN..", "MMM..NNNN.....XXRRN..", "MMM..................", ".....................", ".....................", ".....................", "..................MMM", "..NRRXX.....NNNN..MMM", "..NRRXX.....WWWN.....", "..NRRRR.....WWWN.....", "..NRRRR.....WWWNRR...", "..NNNNN.....WWWNRR...", "............WWWN.....", "............WWWN.....", "............NNNN.....", ".....................", ".....................", ".................XX..", ".................XX..", "..YYC................", "..YYC...1.1.1........"], "Gemgrab_21": ["WWNNNC..2.2.2...RRRMM", "WWRRR...........RRRMM", "WWRRR..............CC", "MM.................CC", "MX.................RR", "MM......EE.........RR", "RR.....WWWO..RRRRRRRR", "RR.....WWW...RRRRRRRR", "RR....EWWWWWWWRR.....", "RR....EWWWWWWWRR.....", "RR.....WWWWWWWRR.....", "RRRRRRRRRWWWWWRR.YNNN", "RRRRRRRRRWWWXMRRRR...", "...NRR...WWWMMRRRR...", "...NRR...............", "...Y.................", ".....................", ".................Y...", "...............RRN...", "...RRRRMMWWW...RRN...", "...RRRRMXWWWRRRRRRRRR", "NNNY.RRWWWWWRRRRRRRRR", ".....RRWWWWWWW.....RR", ".....RRWWWWWWWA....RR", ".....RRWWWWWWWA....RR", "RRRRRRRR.U.WWW.....RR", "RRRRRRRR...WWW.....RR", "RR.........AA......MM", "RR.................XM", "CC.................MM", "CC..............RRRWW", "MMRRR...........RRRWW", "MMRRR...1.1.1..CNNNWW"], "Gemgrab_22": ["........2.2.2....RRRR", "..................RRR", "....................R", "...MMR...............", "...MMRR.....XX.......", "...RRRR...NNNWW......", "....RR...XXWWWW....XX", ".........WWWWWC....XX", ".........WWWC........", "XX...................", "MMR..................", "MRR....RR........MRR.", "RRR..MMMRR......MMRR.", "RR.....MMR....CMMRR..", "R.......C......RRRR..", "R..............RR....", ".....................", "....RR..............R", "..RRRR......C.......R", "..RRMMC....RMM.....RR", ".RRMM......RRMMM..RRR", ".RRM........RR....RRM", "..................RMM", "...................XX", "........CWWW.........", "XX....CWWWWW.........", "XX....WWWWXX...RR....", "......WWNNN...RRRR...", ".......XX.....RRMM...", "...............RMM...", "R....................", "RRR..................", "RRRR....1.1.1........"], "Gemgrab_23": ["MMX.....2.2.2...MMMRR", "X................MXRR", "....RRX..............", "...RRMM..............", "..XMMM......RRRR.....", "............XMMR.....", "..............MMWWW..", "XR..............WWWRR", "MRRRRRMMX.........MRR", "RRRRMMM...........MRR", "RRRMM.............XRR", ".RRM........XMM......", "..RX...RRX..RRMM.....", "......RRRM..RRRMM....", "......XMMM...RRRM...X", "X.............RRX...M", "M...................M", "M...XRR.............X", "X...MRRR...MMMX......", "....MMRRR..MRRR......", ".....MMRR..XRR...XR..", "......MMX........MRR.", "RRX.............MMRRR", "RRM...........MMMRRRR", "RRM.........XMMRRRRRM", "RRWWW..............RX", "..WWWMM..............", ".....RMMX............", ".....RRRR......MMMX..", "..............MMRR...", "..............XRR....", "RRXM................X", "RRMMM...1.1.1.....XMM"], "Gemgrab_24": ["........2.2.2....RRMM", "..RR.............RRMM", "..RRR.............RRR", "..CCRR...MMM.......RR", "..CCRR...............", "..............CC.....", "..............CC.....", ".......MMM...........", ".....RRRRM...RR......", ".....RRRR....RR......", "MM..........MRRRRRRRR", "MM..........MRRRRRRCC", "....RRM.....MM.......", "....RRM..............", "RRRRRRRR.............", "RRRRRRRR...........RR", "RRMM.............MMRR", "RR...........RRRRRRRR", ".............RRRRRRRR", "..............MRR....", ".......MM.....MRR....", "CCRRRRRRM..........MM", "RRRRRRRRM..........MM", "......RR....RRRR.....", "......RR...MRRRR.....", "...........MMM.......", ".....CC..............", ".....CC..............", "...............RRCC..", "RR.......MMM...RRCC..", "RRR.............RRR..", "MMRR.............RR..", "MMRR....1.1.1........"], "Gemgrab_25": ["........2.2.2........", ".....................", "C.......BB..........M", "YYY.....MM.........MM", "RRRR....MRRRRRM...RRR", "RRRR....CRRRRRM...RRR", "RRMM........TMM...MRR", "RRM..............MMRR", "RRM................RR", "RRT...BRRRY........RR", "RR....MRRRY........RR", "RR....MMRRNNN......CM", "MM....TMRR.........MM", "M......M.......MRRRRR", "T.............TMRRRRR", "..............MMM....", ".....................", "....MMM..............", "RRRRRMT.............T", "RRRRRM.......M......M", "MM.........RRMT....MM", "MC......NNNRRMM....RR", "RR........YRRRM....RR", "RR........YRRRB...TRR", "RR................MRR", "RRMM..............MRR", "RRM...MMT........MMRR", "RRR...MRRRRRC....RRRR", "RRR...MRRRRRM....RRRR", "MM.........MM.....YYY", "M..........BB.......C", ".....................", "........1.1.1........"], "Gemgrab_26": ["........2.2.2......CY", "...................CC", "RRRRR......B...B...RR", "RRNNNNX............RR", "RR..............RRRRR", "RR............XNNNNRR", "RR...................", "CC.....RRRR..........", "......RRRRR........XX", "....MXXX..MMRR....NNN", "...RNNN...RRRR......X", "..RRR...RRRR........X", "MMRR....RRXM.....YRRX", "MMRR....XXX.....CCRR.", "MRRR..........RRRRRR.", "XRR..........XRRR....", "XXX..MMX.....XMM..XXX", "....RRRX..........RRX", ".RRRRRR..........RRRM", ".RRCC.....XXX....RRMM", "XRRY.....MXRR....RRMM", "X........RRRR...RRR..", "X......RRRR...NNNR...", "NNN....RRMM..XXXM....", "XX........RRRRR......", "..........RRRR.....CC", "...................RR", "RRNNNNX............RR", "RRRRR..............RR", "RR............XNNNNRR", "RR...B...B......RRRRR", "CC...................", "YC......1.1.1........"], "Gemgrab_27": ["RRYYC...2.2.2....YRRR", "RRRR.............CRRR", "RRR...........B..RRRR", "......MXMM.........RR", "C.....M..............", "YY........RR....M....", "YY.......RRRR...X....", "CRRRM....TMMR..MMMT..", "RRRRMX..........MMR..", ".RRXM...........MRR..", "...M........WW..XRR..", "...M..RRRWWWWW..RR...", ".....RRMMWWWWW.......", "T....RRR....NNN......", "H....RR...........RR.", ".....MR..........RRRR", "MMR..X.........X..RMM", "RRRR..........RM...G.", ".RR...........RR.....", "......NNN....RRR....T", ".......WWWWWMMRR.....", "...RR..WWWWWRRR..M...", "..RRX..WW........M...", "..RRM...........MXRR.", "..RMM..........XMRRRR", "..TMMM..RNNN....TRRRC", "....X...RRRR.......YY", "....M....RR........YY", "..............M.....C", "RR.........MMXM......", "RRRR..B...........RRR", "RRRC.............RRRR", "RRRY....1.1.1...CYYRR"], "Gemgrab_28": ["YYYY....2.2.2....CCYY", "CC.................YY", ".....................", ".....................", "..NNN................", "...B....NNNN.........", "...............XMMMO.", "...............FFMM..", "....FFFF.......FFMMMM", "....MMFF.......FFFFFF", "....MMFFMMMX.........", "....MMFFMMFF.........", "X.....FFMMFF.........", "MM....FFFFFF......XFF", "MM.............MMMMFF", "FFFFF..........MMMMFF", "FFFFF...........FFFFF", "FFMMMM..........FFFFF", "FFMMMM.............MM", "FFX......FFFFFF....MM", ".........FFMMFF.....X", ".........FFMMFFMM....", ".........XMMMFFMM....", "FFFFFF.......FFMM....", "MMMMFF.......FFFF....", "U.MMFF...............", "..MMMX...............", ".........NNNN....B...", "................NNN..", ".....................", ".....................", "YY.................CC", "YYCC....1.1.1....YYYY"], "Gemgrab_29": ["BBFFF...2.2.2....BBBB", "BBFFF................", "......M..............", "......MY......CMMMM..", "...CMMMM.....FFFFYM..", "...............FFFFFF", "...................FF", "...FFFFF.....XM....FF", "...FFMMMMM...MMMMM...", "...FFMM......FFF.....", ".FFFFMX.....FFF......", "MMMFFFF....MMFF......", ".....FF..XMMMFF......", ".....FF.....FFFMMMM..", "...MXFF.....FFFBBXM..", "...BBBB..............", ".....................", "..............BBBB...", "..MXBBFFF.....FFXM...", "..MMMMFFF.....FF.....", "......FFMMMX..FF.....", "......FFMM....FFFFMMM", "......FFF.....XMFFFF.", ".....FFF......MMFF...", "...MMMMM...MMMMMFF...", "FF....MX.....FFFFF...", "FF...................", "FFFFFF...............", "..MYFFFF.....MMMMC...", "..MMMMC......YM......", "..............M......", "................FFFBB", "BBBB....1.1.1...FFFBB"], "Gemgrab_3": ["RRMR....2.2.2....RTRR", "RRMR.............RRRR", "RRRR.................", ".....................", ".....................", "......RRR...XX.......", "..T...NNN..NNN.......", "RRXXRR.....RRR..TXXRR", "RRRRRR..........RRRRR", "RRRRRR............RRR", "....RRRRRRT..........", "...DRRRMXXXD....D....", ".....................", "..MMT........RTMM....", "..RR....D....RRRMD...", "..R........D.......D.", "...D.D........D..D...", ".D.......D........R..", "...DMRRR....D....RR..", "....MMTR........TMM..", ".....................", "....D....DXXXMRRRD...", "..........TRRRRRR....", "RRR............RRRRRR", "RRRRR..........RRRRRR", "RRXXT..RRR.....RRXXRR", ".......NNN..NNN...T..", ".......XX...RRR......", ".....................", ".....................", ".................RRRR", "RRRR.............RMRR", "RRTR....1.1.1....RMRR"], "Gemgrab_30": ["YY......2.2.2......YY", "C..................CC", "...................RR", ".....MM............RR", "..RRMMM....RRRRRR....", "RRRRRL.....MMRRRR....", "RRRRR......MMRRMM....", "MM...........RRMM....", "MM.............B...L.", ".....................", "...RRM.............MM", "...RRMMM....MMM...MMM", "...RRRRR....MRRRRRRRR", ".............RRRRRRRR", ".............RRRYY...", "...WWRRY.....RRRWW...", "...WWRRY.....YRRWW...", "...WWRRR.....YRRWW...", "...YYRRR.............", "RRRRRRRR.............", "RRRRRRRRM....RRRRR...", "MMM...MMM....MMMRR...", "MM.............MRR...", "K....................", ".....B.............MM", "....MMRR...........MM", "....MMRRMM....K.RRRRR", "....RRRRMM......RRRRR", "....RRRRRR....MMMRR..", "RR............MM.....", "RR...................", "CC..................C", "YY......1.1.1......YY"], "Gemgrab_31": ["NNN.....2.2.2........", "YRR..................", "CRR............TNNN..", ".....RRM.....RRRRRR..", ".....RRMB....RRRRRR..", "....RRRMM..MMMM..RR..", "...MRRRT...RRR...RR..", "..CMRRR...RRRR...YY..", "..MMRR....RRRRMMMNRR.", "..........RRRRRYYNRR.", ".........MRRRRR.CNRR.", "..B......MRRRR...RRR.", "..MMMT...MNNRR...RRRR", "RRRRRRR...........RRR", "RRRRRRR...........MMM", "YCRRNNN..........RR..", "..RR.............RR..", "..RR..........NNNRRCY", "MMM...........RRRRRRR", "RRR...........RRRRRRR", "RRRR...RRNNM...TMMM..", ".RRR...RRRRM......B..", ".RRNC.RRRRRM.........", ".RRNYYRRRRR..........", ".RRNMMMRRRR....RRMM..", "..YY...RRRR...RRRMC..", "..RR...RRR...TRRRM...", "..RR..MMMM..MMRRR....", "..RRRRRR....BMRR.....", "..RRRRRR.....MRR.....", "..NNNT............RRC", "..................RRY", "........1.1.1.....NNN"], "Gemgrab_4": ["........2.2.2......XX", ".RR..............RRRX", ".RR..............RRR.", ".................RRR.", "..............XMMMM..", "....BB............B..", "XR..MMRR.............", "XR..MMRR.............", ".............D.......", ".....................", "R....D........RRRMMMX", "R...X..XMMM...RRRMMMX", "RR..MRRRRR....D..B...", "RR..MRRRRR...........", ".....................", "......D.......MMMX...", ".............D.......", "...XMMM.............R", ".....D..............R", "...........RRRRRM..RR", "...B.......RRRRRM..RR", "XMMMRRR...MMMX..X....", "XMMMRRR..............", ".............D.......", ".....................", ".............RRMM..RX", "......D......RRMM..RX", "..B............BB....", "..MMMMX..............", ".RRR.................", ".RRR..............RR.", "XRRR..............RR.", "XX......1.1.1........"], "Gemgrab_4_LNY": ["........2.2.2......TT", ".RR..............RRRT", ".RR..............RRR.", ".................RRR.", "..............TMMMM..", ".....................", "TR..MMRR.............", "TR..MMRR.............", ".....................", ".....................", "R.............RRRMMMT", "R...T..TMMM...RRRMMMT", "RR..MRRRRR...........", "RR..MRRRRR...........", ".....................", "..............MMMT...", ".....................", "...TMMM.............R", "....................R", "...........RRRRRM..RR", "...........RRRRRM..RR", "TMMMRRR...MMMT..T....", "TMMMRRR..............", ".....................", ".....................", ".............RRMM..RT", ".............RRMM..RT", ".....................", "..MMMMT..............", ".RRR.................", ".RRR..............RR.", "TRRR..............RR.", "TT......1.1.1........"], "Gemgrab_5": ["...RR...2.2.2........", "...RR...........RR...", "................RR...", ".....................", ".....................", "....RR.........RR....", "RRRRXX.........XXRRRR", "RRNNNN.........NNNNRR", "RRN.RR.........RR.NRR", "NNN...............NNN", "RRR................RR", "RRR....NRRNNNX.....RR", "RRRR...NRRR......RRRR", "RRRR...X.........RRRR", "RRRRX............RRRR", "RRRRN...........XRRRR", "RRRRN...........NRRRR", "RRRRX...........NRRRR", "RRRR............XRRRR", "RRRR.........X...RRRR", "RRRR......RRRN...RRRR", "RR.....XNNNRRN....RRR", "RR................RRR", "NNN...............NNN", "RRN.RR.........RR.NRR", "RRNNNN.........NNNNRR", "RRRRXX.........XXRRRR", "....RR.........RR....", ".....................", ".....................", "...RR................", "...RR...........RR...", "........1.1.1...RR..."], "Gemgrab_5_LNY": ["...RR...2.2.2........", "...RR...........RR...", "................RR...", ".....................", ".....................", "....RR.........RR....", "RRRRMM.........MMRRRR", "RRMMMM.........MMMMRR", "RRM.RR.........RR.MRR", "MMM...............MMM", "RRR................RR", "RRR....MRRMMMT.....RR", "RRRR...MRRR......RRRR", "RRRR...T.........RRRR", "RRRRT............RRRR", "....M...........T....", "....M...........M....", "....T...........M....", "RRRR............TRRRR", "RRRR.........T...RRRR", "RRRR......RRRM...RRRR", "RR.....TMMMRRM....RRR", "RR................RRR", "MMM...............MMM", "RRM.RR.........RR.MRR", "RRMMMM.........MMMMRR", "RRRRMM.........MMRRRR", "....RR.........RR....", ".....................", ".....................", "...RR................", "...RR...........RR...", "........1.1.1...RR..."], "Gemgrab_6": ["......2.2.2......", ".................", ".................", "....MMMMM..M.....", "....RRRRR..M.RR..", "....RRRRR..M.RR..", "...........M.RR..", "...........M.....", "..MMMMMM...MMMM.R", "................R", ".........RRRR...R", "...MMMM..MMMM...R", "...RRRM..........", "...RRRM..........", "..B........XRRR..", "...........XRRR..", "...........XRRR.D", "R.T..T.....XXXX..", "R..RR............", "R..RR............", "R.T..T.RXXXX.....", ".......RRRRR.RXR.", ".......RRRRR.RXR.", "..BB.........RXR.", "......XXX....XXR.", "......RRR........", "............D....", "....X............", "....XRRR...RRR...", "....XXXX...XXX...", ".B...............", ".................", "......1.1.1......"], "Gemgrab_7": ["RRR.....2.2.2.....RRR", "RRR...............RRR", "RR.................RR", "........RRRR.......RR", "..C.....RRRRC........", "..YY....YCYCY....YY..", "..................C..", ".....................", "..CYYC..........RR...", "..............XMRR...", "...............MRRRMM", ".....RRR.......MRRRXM", "RRX..RRRMM........XXM", "RRM..MRRRM...........", "RRM..MRRRM...........", "RRM..MRRR............", ".....MM.......MM.....", "............RRRM..MRR", "...........MRRRM..MRR", "...........MRRRM..MRR", "MXX........MMRRR..XRR", "MXRRRM.......RRR.....", "MMRRRM...............", "...RRMX..............", "...RR..........CYYC..", ".....................", "..C..................", "..YY....YCYCY....YY..", "........CRRRR.....C..", "RR.......RRRR........", "RR.................RR", "RRR...............RRR", "RRR.....1.1.1.....RRR"], "Gemgrab_8": ["FFFFF.2.2.2.FFFFF", "FFFFF.......FFFFF", "FFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFMMMFF", "FFFYMMFFFFFFMMMFF", "FFFMMMFFFFFFFFFFF", "FFFFFFFFFFFFFFFFF", "FFFFFFFFMMCFFFFFF", "FFFFFFFFMMMFFMMMM", "FFYMFFFFFFFFFMMMM", "FFMMFFFFFFFFFFFFF", "FFMMMMMFFFFFFFFFF", "FFFFF.......FFFFF", "FFFFF.D.....FFFFF", "FFFFF....D..FFFFF", "FFFFF.......MMMFF", "MMMFF......DYMMFF", "MMCFF..D....FFFFF", "FFFFF.......FFFFF", "FFFFFFFFFMMMFFFFF", "FFFFFFFFFFFMFFFMM", "FFFFMMMFFFFMMFFMM", "FFFFMMMFFFFMMFFFF", "FFFFFFFFFFFMYFFFF", "MMFFFFFFFFFFFFFFF", "MMFFFFFFFFFFFFFFF", "FFFFFMMFFFFFMMFFF", "FFFFFMMFFFFFMMFFF", "FFFFFMCFFFFFFFFFF", "FFFFFFFFFFFFFFFFF", "FFFFF.......FFFFF", "FFFFF.1.1.1.FFFFF"], "Gemgrab_9": ["........2.2.2........", ".....................", "..NNNN.........NNNN..", "..RRRY.........Y.....", "..RRRY.........Y.....", "...RRRRRYYYCY........", "..MRRRRR.............", "MMMM.................", "..MRR..C.....CYYYYMMM", "..MRR.............Y..", "..YRR................", "........RRRRR........", "RR...YYMMRRRMMMY.....", "RR...................", "RR...........RRR...RR", "RR...........RRR...RR", "RR.CNNNY.....YNNNC.RR", "RR...RRR...........RR", "RR...RRR...........RR", "...................RR", ".....YMMMRRRMMYY...RR", "........RRRRR........", "................RRY..", "..Y.............RRM..", "MMMYYYYC.....C..RRM..", ".................MMMM", "...RRRRR..........M..", "...RRRRRYCYYY........", "..RRRY.........Y.....", "..RRRY.........Y.....", "..NNNN.........NNNN..", ".....................", "........1.1.1........"], "GeneratedRobo": ["roboleft,0,roboright,0", "roboleft,0,roboright,0", "roboleft,0,roboright,0", "spawnroboleft,0,spawnroboright,0"], "Laserball_1": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "......RRR...RRR......", ".....................", ".....................", ".....RYYYYYYYYY......", ".....RRR2.2.2........", ".................NNNN", ".................RRRR", "....YYYR.....RRR.....", ".....RRR....YYYR.....", ".....................", ".....................", "CC.................CC", "YC.................CY", "CC.................CC", ".....................", ".....................", ".....RYYY....RRR.....", ".....RRR.....RYYY....", "RRRR.................", "NNNN.................", "........1.1.1RRR.....", "......YYYYYYYYYR.....", ".....................", ".....................", "......RRR...RRR......", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_10": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "RRRRR...........RRRRR", "RRRRR...........RRRRR", "........C...C........", "........NNNNN........", "....C...2.2.2...C....", "....Y...........Y....", "...YY...........YY...", ".....RRRRRRRRRRR.....", "RR...RRRRRRRRRRR...RR", "RR...RR.CYYYC.RR...RR", "RR..YRR.......RRY..RR", "RR..NRR.......RRN..RR", "RR..NRR.......RRN..RR", "RR..NRR.......RRN..RR", "RR..YRR.......RRY..RR", "RR...RR.CYYYC.RR...RR", "RR...RRRRRRRRRRR...RR", ".....RRRRRRRRRRR.....", "...YY...........YY...", "....Y...........Y....", "....C...1.1.1...C....", "........NNNNN........", "........C...C........", "RRRRR...........RRRRR", "RRRRR...........RRRRR", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_11": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ..YYY..JJJJJJJ", "RRRRR.....Y.....RRRRR", "RRRRR.....Y.....RRRRR", "RR....YY..Y..YY....RR", "RR.C..Y...Y...Y..C.RR", "L.....Y...Y...Y....L.", "..........Y..........", "YYY......YYY......YYY", "..YY....2.2.2....YY..", "......RRR...RRR......", "......RYR...RYR......", "..RR..RYY...YYR..RR..", "..RY.............YR..", "..RY.............YR..", "..RY.............YR..", "..RR..RYY...YYR..RR..", "......RYR...RYR......", "......RRR...RRR......", "..YY....1.1.1....YY..", "YYY......YYY......YYY", "K.........Y........K.", "......Y...Y...Y......", "RR.C..Y...Y...Y..C.RR", "RR....YY..Y..YY....RR", "RRRRR.....Y.....RRRRR", "RRRRR.....Y.....RRRRR", "JJJJJJJ..YYY..JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_12": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "CC................CCC", "C...................C", "........CYYYYR.......", "..RRY....RRRRR...RR..", "..RRY............RR..", "..RRY...2.2.2........", ".....................", "C............YYY.....", "R......RRRRRRRC......", "R.....YRRRRRRR.......", "R.....YYYC.......CYRR", "RR................YRR", "RRY...............YRR", "RRY................RR", "RRYC.......CYYY.....R", ".......RRRRRRRY.....R", "......CRRRRRRR......R", ".....YYY............C", ".....................", "........1.1.1...YRR..", "..RR............YRR..", "..RR...RRRRR....YRR..", ".......RYYYYC........", "C...................C", "CCC................CC", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_13": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "...CY...........YC...", ".....................", ".....RR.......RR.....", "....RRYYY...YYYRR....", "...RRRYY.....YYRRR...", "...RRYY.......YYRR...", "........2.2.2........", ".....................", ".RR......Y.RRR...YYR.", ".RRYY....YYYRRR.YYRR.", "..RRYY....YYYRR..RR..", "C...........RR.......", "Y...................Y", ".......RR...........C", "..RR..RRYYY....YYRR..", ".RRYY.RRRYYY....YYRR.", ".RYY...RRR.Y......RR.", ".....................", "........1.1.1........", "...RRYY.......YYRR...", "...RRRYY.....YYRRR...", "....RRYYY...YYYRR....", ".....RR.......RR.....", ".....................", "...CY...........YC...", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_14": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....................", ".....................", ".....................", "....RRRYYYYYYYRRR....", "...RRRRR.....RRRRR...", "..CRR...2.2.2...RRC..", "..YY.............YY..", "..YY...YRRRRRY...YY..", ".......YRRRRRY.......", ".....................", ".RR..................", ".RRYY...........RRRR.", ".RRYY...........YYRR.", ".RRRR...........YYRR.", "..................RR.", ".....................", ".......YRRRRRY.......", "..YY...YRRRRRY...YY..", "..YY.............YY..", "..CRR...1.1.1...RRC..", "...RRRRR.....RRRRR...", "....RRRYYYYYYYRRR....", ".....................", ".....................", ".....................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_15": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....................", "...RRR...RRR...RRR...", "...RRR...RRR...RRR...", "...N....CNNNC....N...", "...N.............N...", "...N.RR.......RR.N...", "..RRRRR.2.2.2.RRRRR..", "..RRR...........RRR..", "............YYY......", "..................Y..", ".......RR.........Y..", ".......RY.........Y..", "..YY...RY...YR...YY..", "..Y.........YR.......", "..Y.........RR.......", "..Y..................", "......YYY............", "..RRR...........RRR..", "..RRRRR.1.1.1.RRRRR..", "...N.RR.......RR.N...", "...N.............N...", "...N....CNNNC....N...", "...RRR...RRR...RRR...", "...RRR...RRR...RRR...", ".....................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_16": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "..................RRR", "..................RRR", "......YYYYYY.........", ".........YYYYYY......", "........2.2.2........", "..RRRR...............", "..RRYYY..............", "RRRR.....RRRRR.......", ".........RRYYY...RRCC", ".........RR......RR..", ".................RR..", "................CRR..", "..NNN...........NNN..", "..RRC................", "..RR.................", "..RR......RR.........", "CCRR...YYYRR.........", ".......RRRRR.....RRRR", "..............YYYRR..", "........1.1.1..RRRR..", ".....................", "......YYYYYY.........", ".........YYYYYY......", "RRR..................", "RRR..................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_17": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "RRRRRRRR.....RRRRRRRR", "RRRRRR..........RRRRR", "RRRR..NNN..RNNN...RRR", "RRR...RRR..RRRR....YY", "RRR...RR...........RR", "RRRRCC........CCC..RR", "RRRCC...........CC.RR", "RRRRR...2.2.2......RR", "RRRR..............RRR", "RR....RRRRRR....RRRRR", "CCC...RNNNN.....RRRRR", "RRCC..RY.........RRRR", "RRRR.............RRRR", "RRRR.........YR..CCRR", "RRRRR.....NNNNR...CCC", "RRRRR....RRRRRR....RR", "RRR..............RRRR", "RR......1.1.1...RRRRR", "RR.CC...........CCRRR", "RR..CCC........CCRRRR", "RR...........RR...RRR", "YY....RRRR..RRR...RRR", "RRR...NNNR..NNN..RRRR", "RRRRR..........RRRRRR", "RRRRRRRR.....RRRRRRRR", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_18": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "RRRRR................", "RRR..................", ".......YYNNNYY.......", "..YC......C.......YYY", "..Y...............RRC", "........2.2.2.....RRR", "....................R", "...YYRRRY...YRRRYY...", "...CRRRRY...YRRRCYY..", ".....................", ".....................", "RR.............RRRRCY", "RRRRYYY.......YYYRRRR", "YCRRRR.............RR", ".....................", ".....................", "..YYCRRRY...YRRRRC...", "...YYRRRY...YRRRYY...", "R....................", "RRR.....1.1.1........", "CRR...............Y..", "YYY.......C......CY..", ".......YYNNNYY.......", "..................RRR", "................RRRRR", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_19": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....................", ".....................", "......N..NNN..N...C..", "..FF..N.2.2.2.N......", "..FF..N.......N..FF..", "..NNNNN.......N..FF..", "..FF.............FF..", "..FF.............YY..", "........YYYYY.....Y..", "..FFN.............YYY", "..FFN................", "..NNN.......YY.......", ".....................", ".......YY.......NNN..", "................NFF..", "YYY.............NFF..", "..Y.....YYYYY........", "..YY.............FF..", "..FF.............FF..", "..FF..N.......NNNNN..", "..FF..N.......N..FF..", "......N.1.1.1.N..FF..", "..C...N..NNN..N......", ".....................", ".....................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_2": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "..YY.............YY..", "..YY.............YY..", ".....................", ".........CCC.........", "..CC..Y.......Y..CC..", "..CC..Y.......Y..CC..", "......YYY...YYY......", "......RR2.2.2RR......", "......RR.....RR......", "...............YY....", "..Y.....YYY.RR.YY....", "..Y.........RR......Y", "..Y...RR...........YY", "..Y...RR............Y", "..Y.......YYY..YY....", "...............YY....", "......RR.....RR......", "......RR1.1.1RR......", "......YYY...YYY......", "..CC..Y.......Y..CC..", "..CC..Y.......Y..CC..", ".........CCC.........", ".....................", "..YY.............YY..", "..YY.............YY..", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_20": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....Y..........Y....", ".....................", "..Y..................", ".....Y..2.2.2..Y..Y..", ".....Y.........Y.....", ".....YYYYYYYYYYY.....", "..................YYY", "YYY...............YYY", "YYY..YYYYYYYYYYY..YYY", "YYY..YRRRRRRRRRY.....", ".....YRRRRRRRRRY.....", "......RRRRRRRRR......", ".....................", "......RRRRRRRRR......", ".....YRRRRRRRRRY.....", ".....YRRRRRRRRRY..YYY", "YYY..YYYYYYYYYYY..YYY", "YYY...............YYY", "YYY..................", ".....YYYYYYYYYYY.....", ".....Y.........Y.....", "..Y..Y..1.1.1..Y.....", "..................Y..", ".....................", "....Y..........Y.....", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_21": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "FFN..N.........N..NFF", "FFN..N.........N..NFF", "FFN..NNNN...NNNN..NFF", "FFN...............NFF", "FFN.....2.2.2.....NFF", "FFN...............NFF", "FFN...NNNNNNNNN...NFF", ".....................", ".......FF...FF.......", ".......FF...FF.......", ".....FFCC...CCFF.....", ".....FF.......FF.....", "NNNNN...........NNNNN", ".....FF.......FF.....", ".....FFCC...CCFF.....", ".......FF...FF.......", ".......FF...FF.......", ".....................", "FFN...NNNNNNNNN...NFF", "FFN...............NFF", "FFN.....1.1.1.....NFF", "FFN...............NFF", "FFN..NNNN...NNNN..NFF", "FFN..N.........N..NFF", "FFN..N.........N..NFF", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_22": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "RR..............YRRRR", "RR..............YRRRR", "RRNNN..YYYYYYY..YYYRR", "........2.2.2........", ".....................", "....NNNNRRRRYYYYRRRRY", ".......NRRRR.CC.RRRR.", ".......N.............", "NNNN...N.........NNNN", "RRRN...N.....YY..NRRR", "RRRN...N..C..YY..NRRR", ".............YY......", ".....................", "......YY.............", "RRRN..YY..C..N...NRRR", "RRRN..YY.....N...NRRR", "NNNN.........N...NNNN", ".............N.......", ".RRRR.CC.RRRRN.......", "YRRRRYYYYRRRRNNNN....", ".....................", "........1.1.1........", "RRYYY..YYYYYYY..NNNRR", "RRRRY..............RR", "RRRRY..............RR", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_23": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....Y...............", ".....................", "..Y.....YY....Y....YY", "..YY....2Y2.2YY.....Y", "....................R", "......Y..........Y.RR", "Y....YY....YY...YY.RR", "YY..........Y......RR", "RR...................", "RR......YY.......YY..", "RR.YY...Y...Y....Y...", "RR..Y.......YY.......", ".....................", ".......YY.......Y..RR", "...Y....Y...Y...YY.RR", "..YY.......YY......RR", "...................RR", "RR......Y..........YY", "RR.YY...YY....YY....Y", "RR.Y..........Y......", "R....................", "Y.....YY1.1Y1....YY..", "YY....Y....YY.....Y..", ".....................", "...............Y.....", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_24": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "...................FF", "...................FF", "YY..YY..YYNYY..YY..YY", "YY..YY..YYNYY..YY..YY", ".....................", ".....................", "NN..YYYYY...YYYYY....", "NFF.YFF.2.2.2...Y....", "NFF.YFF.........Y....", "NFF.Y.......YY..Y....", "NFF.Y..YY...YY..FFFCC", "....Y..YY.......FFFCC", "....Y...........Y....", "CCFFF.......YY..Y....", "CCFFF..YY...YY..Y.FFN", "....Y..YY.......Y.FFN", "....Y.........FFY.FFN", "....Y...1.1.1.FFY.FFN", "....YYYYY...YYYYY..NN", ".....................", ".....................", "YY..YY..YYNYY..YY..YY", "YY..YY..YYNYY..YY..YY", "FF...................", "FF...................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_25": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "CCRRCC........CCCRRG.", "CCRRCC........CCCRR..", "........YYYY..CCCRR..", "....L...2.2.2........", "...................CC", "P..CCCC............CC", "...CCCCL......O......", "...CCCC..CCCC........", "CCCCCCCCCCCCCCCCCCC..", "CCCCCCCCCCCCCCCC.....", "RRRCCCCCCCCCC........", "RRRCCCCCC............", ".....................", "............CCCCCCRRR", "........CCCCCCCCCCRRR", ".....CCCCCCCCCCCCCCCC", "..CCCCCCCCCCCCCCCCCCC", ".....U..CCCCK.CCCC...", "..............CCCC.Z.", "CC............CCCC...", "CC.............K.....", "........1.1.1........", "..RRCCC..YYYY........", "H.RRCCC........CCRRCC", "..RRCCC........CCRRCC", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_3": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....................", ".......RR...RR.......", ".......RR...RR.......", "....YY..YYYYY..YY....", "....RR.2..2..2.RR....", "....RR.........RR....", "....RR.........RR....", "....YY...YYY...YY....", ".....................", ".......RRRRRRR.......", "..YY...RRRRRRR...YY..", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", "..YY...RRRRRRR...YY..", ".......RRRRRRR.......", ".....................", "....YY...YYY...YY....", "....RR.........RR....", "....RR.........RR....", "....RR.1..1..1.RR....", "....YY..YYYYY..YY....", ".......RR...RR.......", ".......RR...RR.......", ".....................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_4": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....................", ".....................", "CYYY.............YYYC", "..C.....YYYYY.....C..", "......RRRRRRRRR......", ".....RRRRRRRRRRR.....", "........2.2.2........", "..RR.............RR..", "..RR.YYYY...YYYY.RR..", "..CRR...........RRC..", "..YRR...RRRRR...RRY..", "..YYRRRRRRRRRYYRRYY..", "YYYYRRRRRR.RRRRRRYYYY", "..YYRRYYRRRRRRRRRYY..", "..YRR...RRRRR...RRY..", "..CRR...........RRC..", "..RR.YYYY...YYYY.RR..", "..RR.............RR..", "........1.1.1........", ".....RRRRRRRRRRR.....", ".......RRRRRRR.......", "..C.....YYYYY.....C..", "CYYY.............YYYC", ".....................", ".....................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_6": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "..YR.............YY..", "..YR.............YY..", "......RRR...RRR......", "......NNN...NNN......", ".....................", "................RRR..", "NNNN.....YYY....NNN..", "..C.....2.2.2.....C..", "......RRR............", "......CCR.....CR.....", "..R...........YR.....", "..RR..........YRRRR..", "..RRNNN.......NNNRR..", "..RRRRY..........RR..", ".....RY...........R..", ".....RC.....RCC......", "............RRR......", "..C.....1.1.1.....C..", "..NNN....YYY.....NNNN", "..RRR................", ".....................", "......NNN...NNN......", "......RRR...RRR......", "..YY.............RY..", "..YY.............RY..", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_7": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "RRRRR.............NNN", "RRWWR................", "RRWWN................", "RRRNN..WW...WW.RRR...", ".......WWNNNWW.RWW...", "........2.2.2..RWW...", "...............RRR...", "....WWWNRRRWW........", "..RRWWWNRRRWW......WW", "..RR..NNRRRNN......WW", "..RRRRRRR......WWRR..", "..RRRR.........WWRR..", "..RRNN.........NNRR..", "..RRWW.........RRRR..", "..RRWW......RRRRRRR..", "WW......NNRRRNN..RR..", "WW......WWRRRNWWWRR..", "........WWRRRNWWW....", "...RRR...............", "...WWR..1.1.1........", "...WWR.WWNNNWW.......", "...RRR.WW...WW..NNRRR", "................NWWRR", "................RWWRR", "NNN.............RRRRR", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_8": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", ".....................", ".....................", "........NNNNN.....RRR", "..WWW...2.2.2.....RRR", "..WWW.............CCC", "..WWW................", ".............YYY.....", "...................RR", "RR....MRRRRRR......RR", "RR....MRRRRRR...WWW..", "......MMMMMRR...WWW..", "................WWW..", ".....................", "..WWW................", "..WWW...RRMMMMM......", "..WWW...RRRRRRM....RR", "RR......RRRRRRM....RR", "RR...................", ".....YYY.............", "................WWW..", "CCC.............WWW..", "RRR.....1.1.1...WWW..", "RRR.....NNNNN........", ".....................", ".....................", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Laserball_9": ["JJJJJJJ.7.7.7.JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJYY...YYJJJJJJJ", "....RR.........RR....", "....RR.........RR....", "...CYYRRYYYYYRRYYC...", ".....YRRRRRRRRRY.....", ".....................", "R.......2.2.2........", "RR...................", "RRR..YYYYRRRYYYY.....", "........YRRRY.......R", "...................RR", "..................RRR", "....NRR.......RRRRRRR", "NNNNNRR.......RRNNNNN", "RRRRRRR.......RRN....", "RRR..................", "RR...................", "R.......YRRRY........", ".....YYYYRRRYYYY..RRR", "........1.1.1......RR", "....................R", ".....................", ".....YRRRRRRRRRY.....", "...CYYRRYYYYYRRYYC...", "....RR.........RR....", "....RR.........RR....", "JJJJJJJYY...YYJJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.......JJJJJJJ", "JJJJJJJ.6.6.6.JJJJJJJ"], "Raid_1": ["..............MMM....................MMMM...................", "...............M.......................MM...................", "..XXXM...XMM.......MXX....MM....MXX........X.....XX......X..", "...MMM...X..........X....MMM....MX.........XXX...MM.....MX..", "...............X................MX...MM...MMMM..........MX..", "...............XX................X...MM...M.............MX..", "..XX..MMX......MM....MM.....M........XM...M.......XX........", "..MM....X......MMM...MMM....M........XM...........MX........", "..MM....X............MXX....M......................X........", "......MMX............XX.....X..MMMX................X.....X..", "..................................MM.....................M..", "............MX...........................XM..............M..", "..M..XX.....MX..X.............XM.........XMM..........X..M..", "..MMMMM.....MX.......YYCC..........YY....XM..........MX.....", "......................YCC.........CYY............XX..MX.....", "...................................C...........MMMM..MM.....", "..X...XXX...CC..YYCC...........................MM...........", "..XM..MMM...CC...YCC....XX....XMM.........M.................", "..XM..MM....YY.........MMM....XM....XXX...M........MM.......", "..XM..MM...............MMM....XM.....MM...MMM......X...XMM..", ".......................M......X.......M................XM...", "........................................................M...", "...........CC.............M.......M................MM...MM..", ".......X...CC.....XX.....MM.......MM....MMMX.......MM...MM..", ".......X..........MM..........................YC...MMX..MM..", "....MMMX..........MM..........2...............YY....MX......", "..................XX....CC..........Y...MM.....Y.....X......", "...........YCY....X.....CC.........YY...M...............MM..", "...........Y............................................M...", "..MX....................................................M...", "..MX...................C............Y.........YY...MM...M...", "..MM...XM..MMMM........CC...........YY...X....Y....MM...M...", "..MMM..XM..MX...........................MM..........MX..M...", ".......XM..MX...........................MM..........MM..MM..", ".......XM..MM...........CC.........Y....M....M.....MM.......", "........................CC........YY...MM...MM.....MM.......", ".................MM...................XM....MM..........MM..", ".................MMMMX................MM................XM..", "...MM...XMMMM........M...MM.......MM....................XM..", "...MM...XMMMMMM......M....M.......M.............XM..........", "..XXX...X....MM..CC..MM.................MM...MMMXM..........", "...X.............YC..................M..MM...MMM...........M", "............................1.1.1..MMM..MM................MM", "...................................M......................MM", "............MXX.....MX..C.........MM..................MM....", "...MXX......MXX.....M.........C..MMMM.....MXXX.......MM.....", "............MX.....XM......Y.............MMM.........MM.....", "...................MMX......................................", ".......XXX......................MMMMMX..........XX.......X..", "MM.....MM...........................MX..........MMMMM..MMX..", "M......MM.................XMMM......M...........MMMMM..MMX..", "M.........................XMMM......M.......................", "M..........XXX....XX......X.........XX......MM..............", "....MMX....MMM....MM................MM......MM..............", "....MMX......M....MM.........................M...XX...XXMM..", "M....MX......M....MMXX......MXM..............M...MM....XMM..", "M........XX.................MXM.....XMMM.....M...MM.........", "M........MM..................X......XMMM....MM...MM.........", "M.................MM........................................", "MM................MM........................................"], "Raid_2": ["............................................................", "............................................................", "......MMM..................MM.........MM................M...", ".......MM..M.....M....................MM..M....MM..MMM..M...", "...........M....MMM....MM......M..MM......M....MM..M....MM..", "..MMM......MMM.........MMM...MMM..MM......MM............MM..", "..MMM.......................................................", "..M..............MMM.................................M......", ".......WW..MM..........WWW...WWW..M...MM..MMM..MM....M......", ".....WWWW..M...........WWW...WWW..M...MM..MM...MM..MMM..MM..", ".....WWWW........WWW...WWW........MM..MM................MM..", "......WWW........WWW........................................", "............MMM..WWW.........MMM..........MMM....MMM........", "...M.......MMM...WW..........MMM..........M.......MM..MM....", "...MM............WW.......................M........M..MM....", "........M............MM..MM.......MM..MM....................", ".......MM..WWWW.......M..MM..WWW..MM..M......MMMM...........", "..WW...MM..WWWW..MM...M..MM..WWW..MM..M.........M...MMM..M..", "..WW....M...WWW...M..........WWW................M.....M..M..", "..WW.......................................MMM........M.....", "..WW.....................MM.......MM..MM...M..........M.....", ".............MMM...MM.....MM.....MM...MM...M.......M........", ".......WWW.....M...MM......MM...MM.................M........", "..MM..WWWWW.....................................MMMM...MX...", "..MM..WWWWW..............................MM............MM...", "..MM..WWWWW..MMM......WWMM....2......WW..MM.................", "..M..........MMM......WWMM...........WW..........X..M.......", "..................MM..WW...........MMWW......MX..M..MX......", "..................MM..WW...........MMWW......MM..M......MM..", "...WWW...WWWWW........WWMM...........WW..........M......MM..", "...WWW...WWWWW........WWMM...........WW..MM......MX.........", "...WWW...WWWW............................MM..MX.............", "....WW...WWW................WWWWWW...........MM......MM.....", "...................M..MM....WWWWWW...MM..........MM..MXM....", "..................MM..MM....MMMMMM...MM..........MM...MM....", "..N..........................................MX.............", "..NNNN..NNNN..YY.........................M...MM.............", "........................M...........M....MM........MM.......", "........................MM...YYY...MM..............MXM......", "..NN..NNNN...NNNN...N...............................MM......", "..N...NC.......YN...N.......................................", "..N...NC.......YN...NYY......................Y..............", "..NN..NNNN...NNNN...NNNNNN..1.1.1....YYY.....NNNN...NNNNN...", "......................................................C.....", "............................................................", "..N...NNNN......N...NNNNNN..NNNNNNN..YYY.....NNNNNNN.....N..", "..N...N.........N...NYCCYN..NCC......CCC..C........N.....N..", "..N...N.........N...NY..CN..NC............C........N.....N..", "..N...N.........N...N....N..N....YY............YY..N..Y..N..", "..NN..NNNC...CNNN...N....N..N....YY..YC........YY..N..Y..N..", ".....................................YY............N........", "...................................................N........", "..NN..NNNN...NYY....NNN..N...YYCC.........CYYC.....N.....N..", "..N.....CN...NYY....N....N...C......Y........C.....N.....N..", "..N......N...N......N....N...C......Y........C........N..N..", "..N......N...N......N....N...C..CY..Y....YY..C........N..N..", "..N......N...NNNN...N....N...C..CY..YC...YC..C..NNNNNNN..N..", "....................N..NNN..........YYY.....................", "............................................................", "............................................................"], "Raid_3": ["WWWWWWWWWWMMMMMMMMMMMMYYY....YYMMMMMMMMMMMMMMM........MMMMMM", "WWWWW.....MMMMMMMMMMMMY........MMMMMMMMMMMMMM...........MMMM", "WWW........MMMMMMMMMM...........MMMMMMMMMMMMM....D........MM", "WW..........MMMMMMMY............MMMMMMMMM..................M", "W...........MMMMMM..............YMMMMM..........MMM........M", "W............MMMM................MMMM...........MMMMM.D.....", "M............MMMM.....YM..........MMM............MMMMM.....D", "MMM..........MMM.......M...MMM.....M...T...........MMMM.....", "MMMMM........MM........M...........................MMMM.....", "MMMMMM..........................................T...MMM.....", "MMMD................................................MMM....W", "MM.......................MM............MM...........MM.....W", "MM................M......MMM.........MMMMM.............D...W", "MM..............MMM..........D........MMM...T..............W", "MMM..D.........MMMM................D...M..................WW", "MMMMM..........MMM..........D..D.......M..................WW", "MMMMMMM.......MMMM.............2.D.......................WWW", "MMMMMMMM......MMMM...........D....D...........MM...........W", "MMMMMMMM......MMMM........D.....D.............MM...........W", "MMMMMM........MMMMM........................................M", "MMM............MMMMMMMMM...................T...............M", "M..............MMMMMMM..............MM............T........M", ".........MMMM...MMMM.........MM......................MM....M", ".........Y................MMMMMM...........................M", ".CC.........................MMMM.......MMM................MM", "..............................MM....MMMMMMM......MM.......MM", "....M...................................MMM...............MM", "...MMM...................................M...............MMM", "...MMMM..................................................MMM", "....MMM..............................................T..MMMM", "W....MM........MM.......................................MMMW", "WW...MMM.......M...........................M...........MMWWW", "WW....MMMM....MM............M..............MM.............WW", "WW....MMMMMMMMM...MMMMMM....MMMM...........YM.............D.", "WW....MMMMM.......M...........MMMM..........M...............", "W.....MMM......................CMMM.........C...............", "W....MMM.....T.......T...........YM.........................", "W....MM.....................C.....MC........................", "W....MM.................M.......................MMC.........", ".....M...T..............MM...........................M......", "....CC.........T.........MY.................C........M......", ".........................MM...............YMM........M......", "M..................MM.....MC..Y.........MMMM.........MM.....", "M...................M.....MM............MMMM........MMM.....", "MM..................MM.................YMMMC........MMMM...M", "MM..................MMMM...............MMY.........MMMMMMMMM", "MM....T................................MC.........MMMMMMMMMM", "MMMM.......M.....................................MMM....MMMM", "MMMM.......MMMM..................................MB.......MM", "MMMMM......MMMMMM.........................................MM", "MMMM.......MMM............................................MM", "MMMM......MM................................M.D.........D..M", "MMM......MM.................................MM..........D..M", "MM.......M....T.............1.1.1........MMMMM...........D..", "MM.....................................D...MMM..............", "MW....M.......................Y..............MM............W", "WW....M.......................M..............MM............W", "WW....MM...T..................MM...........D.MMM..........WW", "WWW...MM...........T.....MM...MMMM......B..D.MMMM...D..WWWWW", "WWWWMMMMM..............MMMMMMMMMMMMMMMM.....MMMMMMMM..WWWWWW"], "Raid_4": ["............................................................", "............................................................", ".............T.........T....................................", "............................................................", "..T.....T........T..........................................", "..........................NNNNN...NNNNN...NNNNN.............", ".....................T....NWWWN...NWWWN...NWWWN.........WWWW", "..........................NWWWN...NWWWN...NWWWN.........WWWW", "......T......T............NWWWN...NWWWN...NWWWN.........WWWW", "..........................NNNNN...NNNNN...NNNNN.........WWWW", "..................T.....................................WWWW", "........................................................WWWW", ".........T..................................................", "............................................................", "....................MMMWWWWW....WWWWWMMMM...............WWWW", "...T...........MMM..WWWWWWWW....WWWWWWWWW...............WWWW", "...............MMM..WWWWWWWW....WWWWWWWWW...............WWWW", "........T......MMM..MMMMMMMM....MMMMMMMMM.......WWWW..WWWWWW", "................................................WWWW..WWWWWW", "................................................WWWM........", "..............MWW.........................WWWW..WWWM........", "..............MWW.......WWWWW..WWWWW..WW..WWWW..WWWM........", "..T..........MMWW.......WWWWW..WWWWW..WW..WWWW..WWWM...T....", ".......T......WWW.......WWWMM..MMWWW..WW..WWWW..WWWM........", "..............WWW..WW...MMMM....MMMM..WW..WWWW..............", "..............WWW..WW.........2...........WWWW...........T..", "............MMWWW..WW.....................WWWW..............", "............MWWWW..WW..WWM........MWW.....WWWW..............", "............MWWWW......WWM........MWWWW...WWWW...T.....T....", ".......................WWM........MWWWW.....................", "...T...................WWM........MWWWW.....................", ".......T..........................MMMMM.....................", "..........................................MWWW......T.......", "..............WWW....MMM..................MWWW..........T...", "..............WWW....WWM....WWWWW....WWM..MWWW..............", ".....................WWM....WWWWW....WWM..MWWW..............", ".....................WWM....MMMMM....WWM..WWWW..............", "....T.....WW..WWW....MMM.............WWM..WWWM.........T....", "..........WW..WWW....................MMM..WWWM..............", "..........WW..WWW...........1.1.1.........WWWM...T..........", "..........WW................................................", "WWWWWW..WWWW..........................................T.....", "WWWWWW..WWWW........MMM...MMM...MMM...MM..MMM...............", "WWWWWW..............WWW...WWW...WWW...WW..MMM...............", "WWWW................WWW...WWW...WWW...WW..MMM...............", "WWWW......WWWW......WWW...WWW...WWW................T........", "WWWW......WWWW...........................................T..", "............................................................", "................................................T...........", "..........MMMM..............................................", "WWWW......WWWW..............................................", "WWWW......WWWW.......NNNNN...NNNNN...NNNNN..................", "WWWW.................NWWWN...NWWWN...NWWWN.....T.....T......", "WWWW.................NWWWN...NWWWN...NWWWN..................", "WWWW.................NWWWN...NWWWN...NWWWN..................", "WWWW.................NNNNN...NNNNN...NNNNN..................", ".............................................T.....T.....T..", "............................................................", "............................................................", "............................................................"], "Siege_1": ["YY.........2.2.2.........YY", "C.........................C", "..........D...D............", ".............8...D.........", "...CY.....D....D......YC...", "..MMMM.....MMMMM.....MMMM..", "..MMMM.....MMMMM.....MMMM..", "...........................", "RR.......................RR", "RRR.....................RRR", "RRR.....................RRR", "RR.......................RR", "RR.......................RR", "RR.......................RR", "RR....D..................RR", "RR..................RRMMMRR", "RRMMMRRMMM..........RRMMMRR", "RRMMMRRMMM...............RR", "RR.....................G.RR", "RRH....D.........D.......RR", "RR.......................RR", "RR........D......MMMRRMMMRR", "RRMMMRR..........MMMRRMMMRR", "RRMMMRR............D.....RR", "RR.......................RR", "RR.......................RR", "RR.......................RR", "RR.......................RR", "RRR.....................RRR", "RRR.....................RRR", "RR.......................RR", "...........................", "..MMMM.....MMMMM.....MMMM..", "..MMMM.....MMMMM.....MMMM..", "...CY.......D..D......YC...", ".........D...8.............", "..........D...D............", "C.........................C", "YY.........1.1.1.........YY"], "Siege_10": ["MMMM.......2.2.2.......MMMM", "M.........................M", "M.....MMMT.......TMMM.....M", ".............8.............", "RRRR...................RRRR", "RRRT...................TRRR", "RRR......MRRRRRRRM......RRR", "RRR......MMMRRRMMM......RRR", "RRM.......MMMMMMM.......MRR", "RRM.........MMM.........MRR", "RRM....M...........M....MRR", "RRM....MM.........MM....MRR", "RRM.....................MRR", "RRM.....................MRR", "...........................", ".......TMM.......MMT.......", ".......MRR.......RRM.......", ".......MR.........RM.......", "RRT.....................TRR", "RRT.....................TRR", "RRT.....................TRR", ".......MR.........RM.......", ".......MRR.......RRM.......", ".......TMM.......MMT.......", "...........................", "RRM.....................MRR", "RRM.....................MRR", "RRM....MM.........MM....MRR", "RRM....M...........M....MRR", "RRM.........MMM.........MRR", "RRM.......MMMMMMM.......MRR", "RRR......MMMRRRMMM......RRR", "RRR......MRRRRRRRM......RRR", "RRRT...................TRRR", "RRRR...................RRRR", ".............8.............", "M.....MMMT.......TMMM.....M", "M.........................M", "MMMM.......1.1.1.......MMMM"], "Siege_2": ["...YY......2.2.2......YY...", "...YY.................YY...", "...YC...Y.........Y...CY...", "........Y....8....Y........", "...........................", "..YY...................YY..", "..YY....Y.........Y....YY..", "........YY.......YY........", "...........................", "....CC...............CC....", "....CC...............CC....", "........M.........M........", "........MM.......MM........", "............MMM............", "MMM.....................MMM", "RRR.....................RRR", "RRRR...TT...TTT...TT...RRRR", "RRRR...................RRRR", "RR.......................RR", "RR.TT..TT...TTT...TT..TT.RR", "RR.......................RR", "RRRR...................RRRR", "RRRR...TT...TTT...TT...RRRR", "RRR.....................RRR", "MMM.....................MMM", "............MMM............", "........MM.......MM........", "........M.........M........", "....CC...............CC....", "....CC...............CC....", "...........................", "........YY.......YY........", "..YY....Y.........Y....YY..", "..YY...................YY..", "...........................", "........Y....8....Y........", "...YC...Y.........Y...CY...", "...YY.................YY...", "...YY......1.1.1......YY..."], "Siege_3": ["...........2.2.2.....CC....", ".....................CC....", "..C...................C....", "......C......8.............", "...........................", "...........................", "....Y.................Y....", "....YYY.............YYY....", "..........WWWWWWW..........", "..........WWWWWWW..........", ".....C....WWWWWWW...TT.....", "..........WWWWWWW..........", "MM.........................", "M......................MM..", "..........MMRRRMM.....MMM..", "...MMRR..MMMRRRMMM....MM...", "...MMRR....................", "...........................", "..........MM........MMRR...", "...RRMM...MM...MM...MMRR...", "...RRMM........MM..........", "...........................", "....................RRMM...", "...MM....MMMRRRMMM..RRMM...", "..MMM.....MMRRRMM..........", "..MM......................M", ".........................MM", "..........WWWWWWW..........", ".....TT...WWWWWWW....C.....", "..........WWWWWWW..........", "..........WWWWWWW..........", "....YYY.............YYY....", "....Y.................Y....", "...........................", "...........................", ".............8......C......", "....C...................C..", "....CC.....................", "....CC.....1.1.1..........."], "Siege_4": ["......MMR..2.2.2..RMM......", "......MMR.........RMM......", ".....MMRR.........RRMM.....", ".....MMRRR...8...RRRMM.....", "......MMRR.......RRMM......", ".......MMR.......RMM.......", "..M.....................M..", "..MM...................MM..", "...MM.................MM...", "...........MMMMM...........", "...........MMMMM...........", "..RRM.................MRR..", ".RRMM.................MMRR.", "RRMM....T.........T....MMRR", "RRMM....MM.......MM....MMRR", ".........MM.....MM.........", "..........MMRRRMM..........", "..........MMRRRMM..........", ".....MM.............MM.....", "TT...MM.............MM...TT", ".....MM.............MM.....", "..........MMRRRMM..........", "..........MMRRRMM..........", ".........MM.....MM.........", "RRMM....MM.......MM....MMRR", "RRMM....T.........T....MMRR", ".RRMM.................MMRR.", "..RRM.................MRR..", "...........MMMMM...........", "...........MMMMM...........", "...MM.................MM...", "..MM...................MM..", "..M.....................M..", ".......MMR.......RMM.......", "......MMRR.......RRMM......", ".....MMRRR...8...RRRMM.....", ".....MMRR.........RRMM.....", "......MMR.........RMM......", "......MMR..1.1.1..RMM......"], "Siege_5": ["....YY.....2.2.2....YYC....", "....YY..............YYC....", "...........................", ".............8.............", ".....YY....................", "....YYCC...........CYY.....", "...................CC......", "...........................", "...........................", "..........MMM............RR", "...........MMMMM.......RRRM", "....MM......MM........RRRMM", ".....MMM............MRRR...", "......MMM........MMMM......", "M...............MMM.......M", "MMMMR.................RMMMM", "MMMRRRRMMM..........RRRRMMM", "..RRRRRRMMMM.......RRRRRR..", ".........M..........MM.....", "...........................", ".....MM..........M.........", "..RRRRRR.......MMMMRRRRRR..", "MMMRRRR..........MMMRRRRMMM", "MMMMR.................RMMMM", "M.......MMM...............M", "......MMMM........MMM......", "...RRRM............MMM.....", "MMRRR........MM......MM....", "MRRR.......MMMMM...........", "RR............MMM..........", "...........................", "...........................", "......CC...................", ".....YYC...........CCYY....", "....................YY.....", ".............8.............", "...........................", "....CYY..............YY....", "....CYY....1.1.1.....YY...."], "Siege_6": ["CC.........2.2.2........CYY", "........................CYY", "....................YY.....", "..YYY........8......YY.....", "..Y........................", "............MMM............", "...........MMMMM...........", "....MMM.............MMM....", "...MMM...............MMM...", "...........................", "...........WWWWW...........", "...........WWWWW...........", "MM.......................MM", ".....RR.............RR.....", ".....RR...MM........RR.....", ".....RR...M......MMMRR.....", "RRM..RR...M.........RR..MRR", "RRMMM.................MMMRR", "RR.......................RR", "RR......MM.......MM......RR", "RR.......................RR", "RRMMM.................MMMRR", "RRM..RR.........M...RR..MRR", ".....RRMMM......M...RR.....", ".....RR........MM...RR.....", ".....RR.............RR.....", "MM.......................MM", "...........WWWWW...........", "...........WWWWW...........", "...........................", "...MMM...............MMM...", "....MMM.............MMM....", "...........MMMMM...........", "............MMM............", "........................Y..", ".....YY......8........YYY..", ".....YY....................", "YYC........................", "YYC........1.1.1.........CC"], "Siege_7": ["......MM...2.2.2...MMM.....", "......MM...........MMM.....", "......MM...........T.......", ".......T.....8.............", "..MM....................M..", "..RM....................M..", "..RMM.................MMM..", "..RRM....MMRRRRRMM....MRR..", "..........MMRRRMM.....MRR..", "...........MMMMM...........", "...........................", "....RMM....................", "....RRMMT..................", "...RRRR...........MMM......", "MMMMRR.....T...TMMMRR......", "MMMRR.....MM......RR....T..", "..........MM............MRR", ".........MM............MMRR", "........MMM......M....MMRRR", "..RMM...MM.......MM...MMR..", "RRRMM....M......MMM........", "RRMM............MM.........", "RRM............MM..........", "..T....RR......MM.....RRMMM", "......RRMMMT...T.....RRMMMM", "......MMM...........RRRR...", "..................TMMRR....", "....................MMR....", "...........................", "...........MMMMM...........", "..RRM.....MMRRRMM..........", "..RRM....MMRRRRRMM....MRR..", "..MMM.................MMR..", "..M....................MR..", "..M....................MM..", ".............8.....T.......", ".......T...........MM......", ".....MMM...........MM......", ".....MMM...1.1.1...MM......"], "Siege_8": ["YY....CYY..2.2.2..YYC....YY", "YC.....YY.........YY.....CY", "...........................", ".............8.............", "...........................", "...........................", "........CRRR...RRRC........", "RR......YYYR...RYYY......RR", "RR.......................RR", "MMNN...................NNMM", "MM.......................MM", "...........................", "..................M........", "........MM........MRRRRRRR.", ".........M........MRRRRRMR.", ".RRM.....MH.......MM....MR.", ".RRMH....M..............M..", "...M.....M.................", "...M....MMMMRR.............", ".........RRRRRRRRR.........", ".............RRMMMM....M...", ".................M...G.M...", "..M............G.M.....MRR.", ".RM....MM........M.....MRR.", ".RMRRRRRM........M.........", ".RRRRRRRM........MM........", "........M..................", "...........................", "MM.......................MM", "MMNN...................NNMM", "RR.......................RR", "RR......YYYR...RYYY......RR", "........CRRR...RRRC........", "...........................", "...........................", ".............8.............", "...........................", "YC.....YY.........YY.....CY", "YY....CYY..1.1.1..YYC....YY"], "Siege_9": ["CC.........2.2.2........WWW", "CC......................WWW", ".........................WW", ".............8.............", "........T.........T........", ".....Y...............Y.....", ".....C...............C.....", ".....Y..RMMMCCCMMMR..Y.....", "........RRMMMMMMMRR........", "........RRRXMMMXRRR........", "P.......RRRRRRRRRRR......O.", "...........................", "RRR.....................RRR", "RRR.....................RRR", "RRM.....................MRR", "RRMM.......CRRRC.......MMRR", "RRMMM......NNNNN.......MMRR", "RRMMM..................MMRR", "RRR................T....RRR", "RRR..........T..........RRR", "RRR....T................RRR", "RRMM..................MMMRR", "RRMM.......NNNNN......MMMRR", "RRMM.......CRRRC.......MMRR", "RRM.....................MRR", "RRR.....................RRR", "RRR.....................RRR", "U........................Z.", "........RRRRRRRRRRR........", "........RRRXMMMXRRR........", "........RRMMMMMMMRR........", ".....Y..RMMMCCCMMMR..Y.....", ".....C...............C.....", ".....Y...............Y.....", "........T.........T........", ".............8.............", "WW.........................", "WWW......................CC", "WWW........1.1.1.........CC"], "Solobounty_1": ["WWWWWWWWWMMC.......RMMMMWWWWWWWWWWWWWMMMMR.........XXXXXMMMM", "W......WWM......D..RRMMMWWWWWWWWWWWWWMMMRR..D.......RRRRRMMM", "W.RRR......................MMMMMMM..................RRRRRRMM", "W.RTR.........M..............XXX..............MYC...RR...RRM", "W.RRR....D....MRRR.........................RRRM.....RR.T.RRX", "W.............MRRR....NNN...........NNN....RRRM.....RR...RRX", "W..............RRWWW..N......RRR......N..WWWRR......RRRRRRRX", "WW...RRRRRRR.....WWW..N..D..RRMRR.....N..WWW........RRRRRRRX", "WW...RNNNNRR.....WWW..N....RRNNNRR....N..WWW......NNNN.....X", "MM...RNH..RR..........N....RXXXXXR....N............L.N......", "M....RN.......B............RRNNNRR............D......N......", "C....RN.....................RRXRR........D...........N......", ".....RRR............D........RRR..................D.....D...", "..D..RRR...TRR..N........T.........T........N...............", "...........RRR..N...........................NRRR............", "................N....MM......2.2......MM....NRRR....T.......", ".......D..............MM......1..D...MM......RRR............", "..MM.......NNN.........M.............M.........NN.......N...", "..MYYC.......................MMM........................N...", "...YWWW.........D...........XXXXX....................WWWN...", "...CWWW..D.........MM1...B.........D...1MM.......D...WWWN...", "....WWW.............MY.................YM............WWWN...", "............CYMM.....C.................C.....YC.............", "...............MMRR.......................RRMM..............", "......MM........MRR.....Z..M...WWM.U......RRM......RRRR.....", "R.....XXX..D...............MMRRWMM................MRR......R", "RR.....MM.....212.........MMMRRWMMM.........212...MR......RR", "RRR.....................XXXWWRRWWWXXX.............M..D...RRR", "NRRR........N.......N....MMWWRRWWWMM....N...............RRRN", "NMRRR...RR..N.......N....WWWWRRRRRRR....N..............RRRMN", "NMMRR..TRR..NNNNN...N....RRRRRRRRRRR....N...YYC...T...RRRMMN", "NMRRR...RR..........N....RRRRRRRWWWW....N..............RRRMN", "NRRR................N....MMWWWRRWWMM....N...............RRRN", "RRR.....................XXXWWWRRWWXXX.............M......RRR", "RR.....MM..D...1..........XXXWRRXXX..........1....MR......RR", "R.....XXX...............O..MMWRRMM.P...D..........MRR......R", "..D...MM........MRR........MWW...M........RRM......RRRR.....", "...............MMRR.......................RRXX..............", "............CYXX.....C.................C.....YC...........D.", "....WWW.............MY...D.........D...YM..........D.WWW....", "....WWW............MM1.................1MM......D....WWW....", "MMRRWWW..D..................NNNNN...........T........WWWRR..", "MMRRR...........2.2.........N...N........2.2...........RRR..", "MMRRR......NNN.........M.............M.........NN......RRR..", "..............RR......MM......1...D..MM........RR...........", "..............RRN....MM...............MM....N..RR...T.......", ".......D........N...........................NRRRR.......B...", "...........T....N........T...RRR...T........NRRRR...........", "XX.................D.....RR..RTR..RR....D.................RR", "MM....NRRR...............RR.......RR.................NR...RR", "MM....NK.R...........RR...............RR...........G.NR...WW", "......N..R...D.......RRT.............TRR......D......NR...WW", "......NNNN.......WWW.........RTR.........WWW......NNNNR...WW", ".................WWW.........RRR.........WWW......RRRRR...RR", "R..............RRWWW....RR.........RR....WWWRR............RR", "RR.T..........NRRR......RRT.......TRR......RRR.........T..WW", "RRR.....D.....NRRR.........................RRR............WW", "RRRR.......NNNN.......M.......T.......M...................WW", "RRRRR................XXX...RRRRRRR...MMM........RRWWWRRWWWWW", "RRRRRR..............MMMMMRRRRRRRRRRRXXXXX.......RRWWWRRWWWWW"], "Solobounty_2": ["WWWWWT.......RRRMMMMMMMMMMMMMMMRRR....MMM......MMRR......WWW", "WWWW..........RRRRMMMMMMMMMMMRRRR.....MM.......MMRR......WWW", "WW..............RRRRRMMMMMRRRRR.................MMRR.....WWW", "..................RRRRRRRRRRR...................MMRR.....WWW", ".....................RRRRR.......................MMR.....WWW", "...........MM............................WW.......MM......WW", "............MMM.......1.............1..WWWWW..............WW", "..RRM........MM..............CC.......WWWWWW...............T", "RRRRM.........MM.............CC.......WWWWWWW...............", "RRRMM..........M......MMM..............WWWWWWT..............", "RRMM...........M....RMMM...............WWWWWRR..........M...", "MMMM.....1.........RRMMM..........M....TWWRRRR.........MM...", "MM................RRRRR...........M....RRRRR......1...MM....", "M...............RRRRRRR...........MM....RR...........MMM...R", ".........TRR....MMMMMR............MMM..............MMMM...RR", "........WWRR...MMMMM...............MM.........M...........RR", "......WWWWWRR.......................MMM.......MM.........RRM", ".....WWWWWWRR............RR..........MMM......MM.........RRM", ".....WWWWWWWRR.........RRRRR...M..............MMR.......RRMM", "......WWWWWWRR.........RRMMM...MMMM...........MMR.......RRMM", "......WWWWWTR..........MMMMM...MMMMMM.........RMRR......RRMM", ".......WW...............MM.....RRRMM..........RRRR.....RRMMM", "...............................RRRRR..........RRRRR....RRMMM", "...CC...............M............RR....MRR.....RMMM....RRMMM", "...CC...............MMR...............MMRR.....RMMMM...RRMMM", ".........MMM.......MMMRR.....CC.......MMMRR....MMMMM...RRMMM", "R........MMMM......MMRRR.....CC........MMRR.....MM......RRMM", "RR.........MMM.....MMRR................MMR..............RRMM", "RR..........MM....MMMRR.................................RRMM", "MRR..1......MM...........CC......CC......................RRM", "MRR......................CC......CC...........MM......1..RRM", "MMRR.................................RRMMM....MM..........RR", "MMRR..............RMM................RRMM.....MMM.........RR", "MMRR......MM.....RRMM........CC.....RRRMM......MMMM........R", "MMMRR...MMMMM....RRMMM.......CC.....RRMMM.......MMM.........", "MMMRR...MMMMR.....RRMM...............RMM...............CC...", "MMMRR....MMMR.....RRM....RR............M...............CC...", "MMMRR....RRRRR..........RRRRR...............................", "MMMRR.....RRRR..........MMRRR.....MM...............WW.......", "MMRR......RRMR.........MMMMMM...MMMMM..........RTWWWWW......", "MMRR.......RMM...........MMMM...MMMRR.........RRWWWWWW......", "MMRR.......RMM..............M...RRRRR.........RRWWWWWWW.....", "MRR.........MM......MMM..........RR............RRWWWWWW.....", "MRR.........MM.......MMM.......................RRWWWWW......", "RR...........M.........MM...............MMMMM...RRWW........", "RR...MMMM..............MMM............RMMMMM....RRT.........", "R...MMM...........RR....MM...........RRRRRRR...............M", "....MM...1......RRRRR....M...........RRRRR................MM", "...MM.........RRRRWWT....M..........MMMRR.........1.....MMMM", "...M..........RRWWWWW...............MMMR....M...........MMRR", "..............TWWWWWW..............MMM......M..........MMRRR", "...............WWWWWWW.......CC.............MM.........MRRRR", "T...............WWWWWW.......CC..............MM........MRR..", "WW..............WWWWW..1.............1.......MMM............", "WW......MM.......WW............................MM...........", "WWW.....RMM.......................RRRRR.....................", "WWW.....RRMM...................RRRRRRRRRRR..................", "WWW.....RRMM.................RRRRRMMMMMRRRRR..............WW", "WWW......RRMM.......MM.....RRRRMMMMMMMMMMMRRRR..........WWWW", "WWW......RRMM......MMM....RRRMMMMMMMMMMMMMMMRRR.......TWWWWW"], "Solobounty_3": ["MMMMMMRRR......MM.........RRRMMRRR.........MM......RRRMMMMMM", "MMMMMMRRR......MM.........RRRMMRRR.........MM......RRRMMMMMM", "RRRRMMRRR......RR.........WWWMMWWW.........RR......RRRMMRRRR", "RRRRMMRRR......RR.........WWWMMWWW.........RR......RRRMMRRRR", "RRRRMMMMMB.................WWMMWW.................BMMMMMRRRR", "RRRRMMMMMM.........1.......WWMMWW.......1.........MMMMMMRRRR", "......BBMM.................WWMMWW.................MMBB......", ".......BMMM........RRMMRR....L.....RRMMRR........MMMB.......", ".........MMM.......RRMMRR..........RRMMRR.......MMM.........", "..........MMM......RRRRRR..........RRRRRR......MMM..........", "MRR........MMM......RRRR............RRRR......MMM........RRM", "MRR.........MMM..............................MMM.........RRM", ".............MM..............................MM.............", "......1........P...........................O.........1......", "...........................TNNNNT...........................", "........RR........................................RR........", "......MMRR......RRRR....................RRRR......RRMM......", "......MMRR......RRRR....................RRRR......RRMM......", "........RR......RRMM.........TT.........MMRR......RR........", "..T.............RRMM....RM...RR...MR....MMRR.............T..", ".......................RRM...RR...MRR.......................", "......................RMMM........MMMR......................", ".....................RRM............MRR.....................", "........T...........RMMM............MMMR...........T........", "...................RRM................MRR...................", "............MMR....MMM.....MMMMMM.....MMM....RMM............", "RRWW........MMR.............WWWW.............RMM........WWRR", "RRWWWWWW....RRR..............WW..............RRR....WWWWWWRR", "RRWWWWWW....RRR...........W......W...........RRR....WWWWWWRR", "MMMMMMMMH.........TRR....MWW....WWM....RRT......1.G.MMMMMMMM", "MMMMMMMM...1......TRR....MWW....WWM....RRT..........MMMMMMMM", "RRWWWWWW....RRR...........W......W...........RRR....WWWWWWRR", "RRWWWWWW....RRR..............WW..............RRR....WWWWWWRR", "RRWW........MMR.............WWWW.............RMM........WWRR", "............MMR....MMM.....MMMMMM.....MMM....RMM............", "...................RRM................MRR...................", "........T...........RMMM............MMMR...........T........", ".....................RRM............MRR.....................", "......................RMMM........MMMR......................", ".......................RRM...RR...MRR.......................", "..T.............RRMM....RM...RR...MR....MMRR.............T..", "........RR......RRMM.........TT.........MMRR......RR........", "......MMRR......RRRR....................RRRR......RRMM......", "......MMRR......RRRR....................RRRR......RRMM......", "........RR........................................RR........", "...............U...........TNNNNT..........Z................", "......1..............................................1......", ".............MM..............................MM.............", "MRR.........MMM..............................MMM.........RRM", "MRR........MMM......RRRR............RRRR......MMM........RRM", "..........MMM......RRRRRR..........RRRRRR......MMM..........", ".........MMM.......RRMMRR....K.....RRMMRR.......MMM.........", ".......BMMM........RRMMRR..........RRMMRR........MMMB.......", "......BBMM.................WWMMWW.................MMBB......", "RRRRMMMMMM.........1.......WWMMWW.......1.........MMMMMMRRRR", "RRRRMMMMMB.................WWMMWW.................BMMMMMRRRR", "RRRRMMRRR......RR.........WWWMMWWW.........RR......RRRMMRRRR", "RRRRMMRRR......RR.........WWWMMWWW.........RR......RRRMMRRRR", "MMMMMMRRR......MM.........RRRMMRRR.........MM......RRRMMMMMM", "MMMMMMRRR......MM.........RRRMMRRR.........MM......RRRMMMMMM"], "Solobounty_4": ["MMMMMMMM...RRMMMRR........MMMMMMMM...WWWWWRRMMMRR...MMMMMMMM", "MMMMRRR....RRRMRRR........MMMMMMMM....WWWWRRRMRRR....RRRMMMM", "MMMRRR......RRRRR...T....MMRRRRRRMM........RRRRR......RRRMMM", "MMRRR........RRR........MMRRRRRRRRMM........RRR........RRRMM", "MRRR..........R........MMRRR....RRRMM........R..........RRRM", "MRR......................................................RRM", "MR................MM....................MM................RM", "M.....MMR........MMM..........1.........MMM........RMM.....M", "......MRR.......MMM......................MMM.......RRM......", "......RR....RRRMMMR........T.............RMMMRRR....RR......", "............RRMMMRR......................RRMMMRR............", "RR..........RMMMRRR1............MMRR.....RRRMMMR..........RR", "RRR.........MMM.......RR........MMMRR......1.MMM.........RRR", "MRRR.......MMM.......RRRR........MMMR.........MMM.......RRRM", "MMRRR......MM.......RRMMRR.......RMMM..........MM......RRRMM", "MRRR................RRMMRR.......RRMMM..................RRRM", "RRR..................RRRR.........RRMMM..................RRR", "RR....................RR.............MM...................RR", "WW....T.........T...................................T.......", "WW.......RRR.................................RR.............", "WW.......RRM..............T.................RRRR............", "WW.......RMM1.......MM........MM.......T...RRMMRR...........", "W................RRMMM........MMM..........RRMMRR...........", "....M...........RRMMM..........MMMRRR.......RRRR.......M....", "...MM..........RRMMM...........RMMMRR........RR.1......MM...", "..MMR..........RMMMR...........RRMMMR..................RMM..", "MMMRR..........MMMRR.....RRR....RRMMM..................RRMMM", "MMRRR..........MMRR......RR........MMM.................RRRMM", "MMRR.....................T..........MM......MMMMM.......RRMM", "MMRR....RMMMM.................................MMMMRR....RRMM", "MMRR....RRMMMM.................................MMMMR....RRMM", "MMRR.......MMMMM..................T.....................RRMM", "MMRRR.................MM.........RR......RRMM..........RRRMM", "MMMRR.................MMMRRR....RRR.....RRMMM..........RRMMM", "..MMR..................MMMRR............RMMMR..........RMM..", "...MM......1.RR........RMMMR............MMMRR..........MM...", "....M.......RRRR.......RRMMM...........MMMRR....1......M....", "...........RRMMRR......RRRMMM.........MMMRR................W", "...........RRMMRR...T......MMM........MM........MMR.......WW", "............RRRR............MM...T..............MRR.......WW", ".............RR.................................RRR.......WW", ".......T...................................T.........T....WW", "RR...................MM.............RR....................RR", "RRR..................MMMRR.........RRRR..................RRR", "MRRR..................MMMRR.......RRMMRR................RRRM", "MMRRR......MM..........MMMR.......RRMMRR.......MM......RRRMM", "MRRR.......MMM..1......RMMM........RRRR....1..MMM.......RRRM", "RRR.........MMM........RRMMM........RR.......MMM.........RRR", "RR..........RMMMRRR.....RRMM.............RRRMMMR..........RR", "............RRMMMRR......................RRMMMRR............", "......RR....RRRMMMR.............T........RMMMRRR....RR......", "......MRR.......MMM......................MMM.......RRM......", "M.....MMR........MMM.........1..........MMM........RMM.....M", "MR................MM....................MM................RM", "MRR......................................................RRM", "MRRR..........R........MMRRR....RRRMM........R..........RRRM", "MMRRR........RRR........MMRRRRRRRRMM........RRR........RRRMM", "MMMRRR......RRRRR........MMRRRRRRMM....T...RRRRR......RRRMMM", "MMMMRRR....RRRMRRRWWWW....MMMMMMMM........RRRMRRR....RRRMMMM", "MMMMMMMM...RRMMMRRWWWWW...MMMMMMMM........RRMMMRR...MMMMMMMM"], "Solobounty_5": ["CMMMMMMNNNNNMMMMMM........MMMMMMMM........MMMMMMMMNNNNNMMMMM", "..YYMM.......MMM......1....MM..MM....1....MM..MMMM.....CYYMM", ".....M.....................MM..M..............MM..........MM", "...........................MM..................M...........M", "............................M......FFFM.....................", "M.............MMFFFF..............FFFMMM....................", "MMM........FFFMMMFFFFFF...........FFMMM............FFFFF....", "MM.......FFFFFFMM..FFFMMM.........FFM.............FFFFFFFF..", "MM......FFFF...M.....FMM..........FFF............FFFMMMFFFF.", "MMMM....FFF............M...........FFFF..........FMMM....FFF", "MMMMM...FFF.................MMM.....FF......C....MMM......FM", "MMFFF....FFF....NNNN.......MMM.............YY.....M.......MM", "FFFF......FFF....YY.......FFFF............NNN.............MM", "FF.........MM....C......FFFFF.............FFF..............M", "FF....1.....MM.........FFF......NN......FFFFFFF......1.....M", "FFF.........MM.......MFFF.......YY.....FFF...FFF...........M", "MMFF.........M......MMFFF.......Y.....FFF.....FFF.........MM", "MMMM................MMFFFF......C......T......FMMM.......MMM", "MMM...FFFT...........MMFFFFF....................MMMM......MM", "M....FFF.................FFFFF...................MM.......MM", ".....FF.....................FFF.........................MMMM", ".....FF.......MFF.................MMM..................MMMMM", ".....FFF.....MMFFFF................MM....FF.............FFFM", "......FFF....MMMMFFFMM...MMYYC.....FMM...FFF.......C.....FFF", "M......FF.....MM..FFFMMMMMMM.......FFM....FFMM.....YY.....FF", "MM.....FMM..........FFFFMM........FFF.....FFFMMM...NNN....FF", "MMM....MMM...........FFFFF.......MFF.......FFFMM.....C.....F", "M.....MMM..............FF.......MMMM........FFM.............", "........M...FF...................MM.........FFM.............", "............FFF.........................T....FF.........1...", "...1.........FF....T.........................FFF............", ".............MFF.........MM...................FF...M........", ".............MFF........MMMM.......FF..............MMM.....M", "F.....C.....MMFFF.......FFM.......FFFFF...........MMM....MMM", "FF....NNN...MMMFFF.....FFF........MMFFFF..........MMF.....MM", "FF.....YY.....MMFF....MFF.......MMMMMMMFFF..MM.....FF......M", "FFF.....C.......FFF...MMF.....CYYMM...MMFFFMMMM....FFF......", "MFFF.............FF....MM................FFFFMM.....FFF.....", "MMMMM..................MMM.................FFM.......FF.....", "MMMM.........................FFF.....................FF.....", "MM.......MM...................FFFFF.................FFF....M", "MM......MMMM....................FFFFFMM...........TFFF...MMM", "MMM.......MMMF......T......C......FFFFMM................MMMM", "MM.........FFF.....FFF.....Y.......FFFMM......M.........FFMM", "M...........FFF...FFF.....YY.......FFFM.......MM.........FFF", "M.....1......FFFFFFF......NN......FFF.........MM.....1....FF", "M..............FFF.............FFFFF......C....MM.........FF", "MM.............NNN............FFFF.......YY....FFF......FFFF", "MM.......M.....YY.............MMM.......NNNN....FFF....FFFMM", "MF......MMM....C......FF.....MMM.................FFF...MMMMM", "FFF....MMMF..........FFFF...........M............FFF....MMMM", ".FFFFMMMFFF............FFF..........MMF.....M...FFFF......MM", "..FFFFFFFF.............MFF.........MMMFFF..MMFFFFFF.......MM", "....FFFFF............MMMFF...........FFFFFFMMMFFF........MMM", "....................MMMFFF..............FFFFMM.............M", ".....................MFFF......M............................", "M...........M..................MM...........................", "MM..........MM..............M..MM.....................M.....", "MMYYC.....MMMM..MM....1....MM..MM....1......MMM.......MMYY..", "MMMMMNNNNNMMMMMMMM........MMMMMMMM........MMMMMMNNNNNMMMMMMC"], "Solobounty_6": ["FFF...........XXWW...FFFXXXY........XXXX................FFFF", "FFFF..........XXWW...FFFXXXX........XC..................FFFF", "FF.............WWW.....CXY...............................FXX", "...........T...WWW..............XX.......YX................T", "..............FWW..............XXXFF.....XX.................", ".....MXX......FXX.........1....CTFFF............FFF.........", "....MMYY.....FFXC................FF..........WWWFFFFFXT.....", "....XX.......FF.......................C......WWWYYFFFMX....C", "...........MMF.......................MMY.....WWW...FFXX...MM", "...........MMF.........MMM...........TXX.....1........XFFFXM", ".....................MMMMMY...........XXX..............FFFFF", "......T..1..........CCMFFFF...T........XX...............FFFF", ".....................FFFFF................................FF", "..........CX..........FF...........T..........XM.....YC...FF", "...MY.....XXXT...............................XXXX....YY...FF", "...MMM....FFXX...............................XXFF...........", "....MM....FF.................................FFF............", ".....C....FFF..............XXXXXXFFF.....................X..", "Y.........FFF.......XMM.....XXXXFFFFFF...................XFF", "YX......MMTFF......MMM............FFFMMM........T........CFF", "XX......MMM......FFFM..............FFFMMM.................FF", "X................FFF...................XX..............1....", ".................FF.........................................", ".............T...FF..........................NNN...TMX......", "...1...C.........TX.....XXX......XXX.........CFFFFFMXM......", "X......NNN.......XX.....X.FF....FF.X.........FFFFFFXWW......", "XX...............XX....FY.FF.CC.FF.YF.....YFFFFF.WWWWW....FF", "XXXX...................FFFFF....FFFFF.....XFFFF..WWWWW....FF", "XXXX......................................XXFF...........XFF", "MMMFF.....................................MXFF...........XXX", "XXMFF......CC............................................XMX", "XXFFF...........XM.......................................YXX", "XFFF............XX....YCC..........CCY...........MM.......XX", "XFF....MM.......FX....YFFF........FFFY...........C........MX", "FFF....XM......FF......FFF..WWWW..FFF.....MX.....FFF......CX", "FF.....YMX.....FF...........WWWW..........XX.....FFF....1..Y", "FF......MM.....TF...........WWWW..........XT....MMM.........", "FF......MXC.......................................T.........", "FF..1.......................................................", "XX.................XX....FFFXNNNFFF.........................", "XX.................XXY....FFXY..FF....XX......XX......XXX...", "X.........WWFF......XX....FF....FF...XXX....NNNX......XXWWWW", "....T.....WWFF.......X...............XX...............MMWWWW", "..........WWWWN.......................X...........MM...XFFWW", "..........WWWWN.......................C..........MMM...YFFFF", "...........WWWN..................................MM.....FFFF", ".......T...YNNN..............MMM............T....MM.........", "C..................T...Y....MMMMM.................M.........", "XX....................XX.....YMM.....FFFF.........1.....T...", "MMFFF.................XX......M......FFXX...................", ".FFFMMM.......1........X..............FXY.....FFF..........X", "...FXMY......................................FFFFF.........X", "..........XT...............................XFFFFTMX.......XX", "..........MMX.....WWW.....................XXFFF.XM........XY", "..T........XMFFFTXWWW......T.....1........XXFF.......T......", "............FFFFFMMWW..........FFFC...T....XXF..............", "...............FFF............FFFYY.........................", "..............................T.......................NNN...", "XXFFFFF...............XT.FFF.........................FFFFF..", "XXXXXFFFF.............XXFFF.........................FFFFFFFF"], "Solobounty_7": ["XXXF....YY........XXXXXXXFFFFFFFFFF..YYC..FFXXFF.....FFXXXXX", "XXFF....YC........XXXXXFFFFFFF.......CY....FXYFF.....FFFXXXX", "XXFF..............FXXFFFFF............Y....FFFF......FFFXXXX", "XFF...............FFFFFF....................FFF.......FFFFXX", "XFF................FF........................F........FFFFFX", "FF....FFF.................T......................N......FFFX", "FF...FFFXXYY............YYX.......NNYX....XY.....N.......FFF", "....XXXXXX................X.........XX....XX..............FF", "...XXXXXC.......WWWWW...............XX.....C..........T...FF", ".....XXXF.......WWWWWW..1.............................X...FF", ".....XXFF.......NNWWWW.......FF.....................YXX...FF", ".....XFF.........FFFWW.......FFFF......1.FX...........XXC.FF", ".....CFF..........FFWW.......FFF....WW...FXX...........X..FF", "X....FFF...........F...............WWW..FFXX......Y....X..FF", "X....FFFWWWXX......F.....T..C......WWW..FFX.....YYYC......FF", "XX....FFWWWXXXXX........XXXXX......WWW..FF................FF", "XXX....FFWW...XY......XXXX.........NNN.........1..........YY", "XXX......WW...........YX.............T....................XX", "XX....................Y.........................WW.......XXX", "XX........1......T..............................WW.......XXX", "X..............................C.........C...XYTWWWXX.....XX", "..........................YCFFFXX.......FX....XXWWWXX......X", "FFFF........XX............YFFFFXX.......FXX...XXWWWWFF.....X", "FFFFFFCY....XC..............FFFWWWW...FFFXY......WWWFF.....X", "WWFFFFXY...XX................FFWWWWWXXFFFXC......WWWFF.....X", "WW...CX.....C....FFTNNNN.....FF..WWWXXFF.........WWWF......X", "WW...............FFFFFF..............CF...........WWF......C", "WWW...............FFFF....C.......................WW....WWWW", "WWW...........Y....F.....XX.............................WWWW", "WWW...1....XXXY.........................................WWWW", "WWWW.........................................YXXX....1...WWW", "WWWW.............................XX.....F....Y...........WWW", "WWWW....WW.......................C....FFFF...............WWW", "C......FWW...........FC..............FFFFFF...............WW", "X......FWWW.........FFXXWWW..FF.....NNNNTFF....C.....XC...WW", "X.....FFWWW......CXFFFXXWWWWWFF................XX...YXFFFFWW", "X.....FFWWW......YXFFF...WWWWFFF..............CX....YCFFFFFF", "X.....FFWWWWXX...XXF.......XXFFFFY............XX........FFFF", "X......XXWWWXX....XF.......XXFFFCY..........................", "XX.....XXWWWTYX...C.........C..............................X", "XXX.......WW..............................T......1.........X", "XXX.......WW.........................Y.....................X", "XX....................T.............XY...........WW......XXX", "YY..........1.........NNN.........XXXX......YX...WWFF....XXX", "FF................FF..WWW......XXXXX........XXXXXWWWFF....XX", "FF......CYYY.....XFF..WWW......C..T.....F......XXWWWFFF....X", "FF..X....Y......XXFF..WWW...............F...........FFF....X", "FF..X...........XXF...WW....FFF.......WWFF..........FFC.....", "FF.CXX...........XF.1......FFFF.......WWFFF.........FFX.....", "FF...XXY.....................FF.......WWWWNN.......FFXX.....", "FF...X.............................1..WWWWWW.......FXXX.....", "FF...T..........C.....XX...............WWWWW.......CXXXXX...", "FF..............XX....XX.........X................XXXXXX....", "FFF.......N.....YX....XYNN.......XYY............YYXXFFF...FF", "XFFF......N......................T.................FFF....FF", "XFFFFF........F........................FF................FFX", "XXFFFF.......FFF....................FFFFFF...............FFX", "XXXXFFF......FFFF....Y............FFFFFXXF..............FFXX", "XXXXFFF.....FFYXF....YC.......FFFFFFFXXXXX........CY....FFXX", "XXXXXFF.....FFXXFF..CYY..FFFFFFFFFFXXXXXXX........YY....FXXX"], "Solobounty_8": ["MMMMMMMFFFFFFFXXXMXC.................FFFMMMMMMMMFFFFFMMMWWWW", "MMMMMFFFFFFFFFFXXX....................FFFFMMMMMFFFFFFFMMWWWW", "MMMFFFFFF...FFFFFX............FF.......FFFFMMMFFF...FFFFWWWW", "XMFFFFF......FFF..............FFNNN......FFFFFFF.....FFFFWWW", "MMFFF......................FFFFFFYY.......FFFFF...XX..FFFFMM", "MFFF.......................FFFFFFT................XM...FFFMM", "MFFF..MM....MMM....MMM.....FFMM...................MMMM..FFFM", "FFF...MM....XMFFFFFFMM.......MX..........................FFM", "FFF..........MFFFFFF....................FFFFFFM..........FFF", "FF............FF.......1............1..MFFFFFFM.....MMMM..FF", "FF............FFC............MM........MMMM...MMM.....XX..FF", "FF............FFXX........M..MMFF......MMY....MMM.........FF", "FFF..WWWW......XX.........MFFFFFFWW....MM......MM.........FF", "FFF..WWWWWW..............YMFFFFFFWW............MMMM......FFF", "MFFF.WWWWWW..............XXXFF..WWW.........FFFFFF.......FFM", "MFFF....NWW........MM.......FF..WWW......MMMFFFFFF......FFFM", "MMFFF...NWW.......MMMMM.........WWWWW....MMMMMM.........FFMM", "MMFFF...NWW....FFFFFC...........WWWWW....MC.............FFMM", "MMMFFF......1..FFFFF.....................M.....1.......FFFMM", "MMMFFF..........MXFF...................................FFMMM", "MMMFFF..........MMFF...................................FFMMM", "MMMFFF.CWW........FFFFFF..........NNNN...MMM........MM..FMMM", "MMFFF..YWW........FFFFFF....CFFFFFFFYT...MM.......MMMM...MMM", "MFFFF..YWWWWWW....FFMM.....MMFFFFFFFC....MM.........CMM...MM", "FFFF...TWWWWWW....MMMM.....MMMMFFM.......MMMMM............MM", "FFF........WWW.............M...FFM.........FFFFF...........M", "FF.............................FFMM........FFFFF............", "FF.............................MMMM........FFMM......YMM....", "FF...............MM...............M....FFFFFFMM...MMMMMM....", "F........1.....FFMM....................FFFFFF.........MM....", "....MM.........FFFFFF....................MMFF.....1........F", "....MMMMMM...MMFFFFFF....M...............MMY..............FF", "....MMY......MMFF........MMMM.............................FF", "............FFFFF........MMFF.............................FF", "M...........FFFFF.........MFF...M.............WWW........FFF", "MM............MMMMM.......MFFMMMM.....MMMM....WWWWWWT...FFFF", "MM...MMC.........MM....CFFFFFFFMM.....MMFF....WWWWWWY..FFFFM", "MMM...MMMM.......MM...TYFFFFFFFC....FFFFFF........WWY..FFFMM", "MMMF..MM........MMM...NNNN..........FFFFFF........WWC.FFFMMM", "MMMFF...................................FFMM..........FFFMMM", "MMMFF...................................FFXM..........FFFMMM", "MMFFF.......1...........................FFFFF..1......FFFMMM", "MMFF.............CM....WWWWW...........CFFFFF....WWN...FFFMM", "MMFF.........MMMMMM....WWWWW.........MMMMM.......WWN...FFFMM", "MFFF......FFFFFFMMM......WWW..FF.......MM........WWN....FFFM", "MFF.......FFFFFF.........WWW..FFXXX..............WWWWWW.FFFM", "FFF......MMMM............WWFFFFFFMY..............WWWWWW..FFF", "FF.........MM......MM....WWFFFFFFM.........XX......WWWW..FFF", "FF.........MMM....YMM......FFMM..M........XXFF............FF", "FF..XX.....MMM...MMMM........MM............CFF............FF", "FF..MMMM.....MFFFFFFM..1............1.......FF............FF", "FFF..........MFFFFFF....................FFFFFFM..........FFF", "MFF..........................XM.......MMFFFFFFMX....MM...FFF", "MFFF..MMMM...................MMFF.....MMM....MMM....MM..FFFM", "MMFFF...MX................TFFFFFF.......................FFFM", "MMFFFF..XX...FFFFF.......YYFFFFFF......................FFFMM", "WWWFFFF.....FFFFFFF......NNNFF..............FFF......FFFFFMX", "WWWWFFFF...FFFMMMFFFF.......FF............XFFFFF...FFFFFFMMM", "WWWWMMFFFFFFFMMMMMFFFF....................XXXFFFFFFFFFFMMMMM", "WWWWMMMFFFFFMMMMMMMMFFF.................CXMXXXFFFFFFFMMMMMMM"], "Solobounty_9": ["RRRRRWWWNRRRRRRRRRRRRRRRRRMMMMMMMMRRRRRRRRRRRRRRRMMMMMMMRRRR", "RRRRRWWWNRR........RRRR.BRRMMMMMMRR..RRRRD......RRMMMM.BRRRR", "RRR...WWNR..........RR....RRMMMMRR....RR.......D.....T...RRR", "RR......NR.................RMMMMR.............B...........RR", "RR...............T.........RRMMRR....D...T.................M", "WW.........D.D.........NNN..RRRR..NNN.............NNN......M", "WWW...D.....D...............................T.RM..C.....D.MM", "WWW...DTWWT...T..1.RRRRR............RRRRR.1...RM.......N.DMM", "NNNN.D.WWW.........RMMMR...C....C...RMMMR........DDD...N.DMM", "RRRR...WWW............MRD.....D...D.RM...........D.D..CN..MM", "RR.....T....NNN.......MR..RR....RR..RM.......NNN..D.......RM", "R.........P.TWW.....BMMR..MM....MM..RMM...RRRWWTO.........RR", "R......DD...WWWW......D...M......M....B..RRRWWWW....MMT....R", "R.....D....WWWWWW.........M......M.......RRWWWWWW...RR.....R", "RR.........WWWWWW...D.....M......M...D...RRWWWWWW.........RR", "RRR........TWWWW.........TM......MT......RR.WWWWT.......TRRR", "RRRR...1.....WW.......RR..MM....MM....T...RR.WWNN...1...RRRR", "RRRR.........NN.....TRRR..RR..D.RR.........RRRRRR.......RRRR", "RRR..DMMMM..........RRRR....................RRRR..MMMM...RRR", "RR.......M.........RRRRR...NNNNNN...T.............M.......RR", "R..................RRRRT...RRRRRR..........T..........D....R", "R...M..................................................M...R", "R...MMMMC....T........................D.......T....CMMMMD..R", "RR..D.....D.....WWW...D..TWWW..WWWT......WWW........B.....RR", "RR..............WWWC....WWWWW..WWWWW....TWWWD.............RR", "RRR.............WWWN...TWWWWW..WWWWWT...RWWW.............RRR", "MRRR.....WWWW...NNNN...WWWWW....WWWWW...RRRC...WWWW.....RRRM", "MMRRR.....WWWT..RRRR...WWWWG.....WWWW.........TWWW.....RRRMM", "MMMMRR.....WW..D.......WWWN....RRNWWW..........WW.....RRMMMM", "MMMMMR.T...............WWWNRR..RRNWWW.......1.....D.T.RMMMMM", "MMMMMR.T.......1......DWWWNRR..RRNWWWD.............DT.RMMMMM", "MMMMRR.....WW..........WWWNRR..H.NWWW..........WW.....RRMMMM", "MMRRR.....WWWT.........WWWW......WWWW...RRRR..TWWW.....RRRMM", "MRRR.....WWWW...CRRR...WWWWW....WWWWW...NNNN...WWWW.....RRRM", "RRR.............WWWR...TWWWWW..WWWWWT...NWWW.............RRR", "RR....D.........WWWT..D.WWWWW..WWWWW....CWWW..............RR", "RR.......D......WWW......TWWW..WWWT......WWW........B.....RR", "R...MMMMC.D..T................................T....CMMMM...R", "R...M.....................................D...........DM...R", "R................T.........RRRRRR...TRRRR..................R", "RR.......M.............T...NNNNNN...RRRRR.........M.......RR", "RRR...MMMM..RRRR.................D..RRRR..........MMMM...RRR", "RRRR....B..RRRRRR..T....D.........D.RRRT.D...NN.........RRRR", "RRRR...1...NNWW.RR.......DMMRRRRMM..RR.......WW.....1D..RRRR", "RRR........TWWWW.RR...T...MMRRRRMM..........WWWWT........RRR", "RR.........WWWWWWRRD......RRR..RRR.........WWWWWW.........RR", "R..........WWWWWWRRD......RRR..RRR.........WWWWWW..........R", "R....RRR..U.WWWWRRR.......RRRRRRRR.........BWWWWZ...RRR....R", "R....NNN....TWWRRR...MMR..MMRRRRMM..RMM......WWT....MMM....R", "M...........NNNN......MR..MMRRRRMM..RM.......NNN....M.....BM", "MM..DDD...............MR...C....C...RM....................MM", "MMM................RMMMR............RMMMR...............D.MM", "MMM........NR.T..1.RRRRR............RRRRR.1....RMM........MM", "MMR........NR................................T.RM....NNN...M", "RRR........NR..........NNN..RRRR..NNN..........RM.D..NC....R", "RRB.....D........T.........RRMMRR.B..D....T..........N.....R", "RR.............D.......D...RMMMMR................D........RR", "RRR..RRMM......D....RR....RRMMMMRR....RR.................RRR", "RRRRRRMMMM.........RRRR..RRMMMMMMRR..RRRR.........MMM...RRRR", "RRRRRRMMMMMRRRRRRRRRRRRRRRMMMMMMMMRRRRRRRRRRRRRRRMMMMMRRRRRR"], "Survival_1": ["........FF..F......1.FF..FFF..........1FF..........FFF......", "FF...FF...............F..FF.....FF.....FF..........FFF......", "F...FFFFFF........MM.....FF.....FFFFF...FF........FFF.....FF", "F...FFFFF.........MX.......2.2.....FFF..F.........FF.....FF.", "....FFF.....FF.....FF.....FFF.........................F..FF.", ".....F.....FFF.....FF.....FFFFF.XXXXXX........M.FF...FFF....", "...........FFFF....F..MMX.......MMMMMM.......XM.FFF..FF.....", ".......FF..FFFF.......MMM...XX...MMMM....FFF.XM..FF..F......", "..F...FF...FFFF.FFFF..XXX...MM....XX.....FFF.XM.FFF.......F.", ".FF...FF..FFFFF.FFFFF..MM...MM.........X.FFF.XM.FF..MM....F.", ".FF.....1.FFFFF.............MM........MM..F..X......XX...FF.", "..........FFFF....BB...FF...M......T..M........F......1..F..", "...........FF..........FF......................F............", ".......FF...F..........NF......FFFFFF.......T.FF............", "FF....FFF.....MMM..NNNNN........FFFF....D.F...FF.T..........", "FFF...FFF....XXXX..........F.4...F.....DBD....FF...FFF.T....", ".......F....MM............4F....4..T....D.....F....FF......F", ".........FF..........NNN.FFF................T.....FF.......F", ".........FF..........BBN.FF...T.................T...T..FF.FF", "..........F..........BBN.FF.....FF....M...............FFF...", "...MM..........4FF...BBN.F.....FF.....M....4...F......FF....", "...MX...XXX.....FF.............FF...XXX.......FF.....FFFF...", ".1.......MM....FFF..................M.......T.FF..T..FF.....", "......F.......FFF.BBBN...NBBNNNNNN..M....T....FF............", "FFF...FF..........BBBN...NBB....XN.............FF.....T.....", ".FF...FF....FF....BBBN...NBB.............................M..", "..F.........FFF..NNNNN..FNNNF........NNNNN..XXX..MM......M..", "..2.2.......F...........FFFFFF..N....NBBBN..MXX4.MX....2.2..", "........FFFF.............FFFFFF.NNN...BBBN..MX..............", ".......FFFFF.....NM..44....F.44.BBN...BBBN..M..4............", ".FF.....FF.F..4..NM.............BBN.44..NN..M...XXX..B....F.", "FF.........BB....NBBB...X.......BBN.........MX.4MMX.......F1", "FF..........F....NBBBM..XXX..NNNNNN.........MM..MM.......FF.", ".....FFFF...FFF..NNNNN...............BN.............F....FF.", ".....FFFFF...FF..............44......BN..M..........FF......", "......F......FF...........N..BB..N...NN..MX.......FFFF......", "...........F.....FFFFBBN..N..BB..N...N...M.......FFFFF..FFF.", "....XXX...FFF...FFF..BBN..NNNNNNNN...........B...FFFFF.FF...", "....MMM...FF.........NNN....................D.....FFFF......", "..........FF...4..................................FF.......F", ".1.........F..............D..BBBB.D.D...M..4......F........F", "....FFF........F........WWWWWWWWWWWWWW..MMMMFFFF........F..F", "F...FF..MM..MMFFMM..MM..WWWWWWWWWWWWWW..XXXXFFF........FF..F", "F...F...MXF.XMFFMX..XM..WWWWWWWWWWWWWW.....XFFF..MM...FFF...", "FF..F..FFFF...............D..D.D....D............MM...FFF...", "FF....FFFF..............................T.....T.......FF....", "........MM..MMFFMM..MM..MX..MMT.....T.......................", "........XM..MXFFMXFFMX..MM4.XM..4....FFFF...........T.......", ".....FF.....FFF....FFFFFF...F4FFF......FF.T......T........FF", "FF...FF................FF.....FFFT...T........T.......1..FFF", "F....F..MX..MM..MX..MM.FMX..MM..FF.......................F..", "F.......MM..XM..MM..XM..MM..XMT.FF......XXX.........FF...F..", "....FFF..............FFFFF......FF.T....MMX..B.....FFF......", "....FFF......1......FFFF........FF......MM...B.....FFF......", ".....FF.MM.FXM..XM..MX.FMM..MX...FF.....XM......XXXXXF..M...", "....FFF.MX.FMM..MM..MM..XM..MM..T.......MM......MMMMMF..M...", "FF..FFF....FFFF.................................2.2.........", "FF...F......FFFF2.2.............F..T...........FFFFFF...F...", "F.......MX..XMFFMX..MX..MX..MX.FFF.................FFF.FF...", "........MM..MMFFMM..MM..MM..MMFFF.1....BB.......MM..FF.FF..."], "Survival_10": ["WWWWWWWWWWMMMMMMMMMMMMYYY....YYMMMMMMMMMMMMMMM........MMMMMM", "WWWWWWWWWWMMMMMMMMMMMMY........MMMMMMMMMMMMMM...........MMMM", "WWW........MMMMMMMMMM.......4...MMMMMMMMMMMMM....D...4....MM", "WW.........FMMMMMMMY............MMMMMMMMMFFF...............M", "WW..........MMMMMM.......4......YMMMMMFFF.......MMM........M", "WW...212.....MMMM................MMMMFF.........MMMMM.D.....", "MMM..........MMMM.....YN..........MMMF....212...FMMMMM...4.D", "MMM.........FMMM.......N...NNN.....MF............FFMMMM.....", "MMMMM.......FM.........N..........................FMMMM.....", "MMMMMM......FF..................................T..FMMM.....", "MMMD...............................................FMMM...WW", "MM......................FM.............MM...........MM....WW", "MM..4.............M.....FMMM.........MMMMM.............D..WW", "MM.......4......MMM...................MMMF..T.............WW", "MMM..D.........MMMM............MM......MFFF..............WWW", "MMMMM..........MMM..............MM..4..MFF...............WWW", "MMMMMMM.......MMMMF...1....FFF..MMF.....FF...........1...WWW", "MMMMMMMM......MMMMF........FFF..MMFF.....F....MM..........WW", "MMMMMMMMF.....MMMMFF.........F...MMFF..4.F....MMF.........WW", "MMMMMMFFF.....MMMMMFFFF............FFF..........F..........M", "MMMFF..........MMMMMMMMM...........FFF.....T...........F...M", "M..............MMMMMMM..............MM............T.F......M", "..........NNN...MMMM.........MM......................MM....M", "...CC.....................MMMMMM................F..........M", "...............F............MMMM.......MMM........FF......MM", "...............F.....4......FFFM....MMMMMMM......MM.....FFMM", "....M.........FFF......FF....FFF........MMM.........FFFFFFMM", "...MMM..........F.....FFF.4...F......4...M.............FFMMM", "...MMMM...............FFF.....F..........................MMM", "....MMM....1.................F.....FFF..................MMMM", ".....MM........MM.....4......F...4.FFF.........1........MMMW", "WW...MMM.......M............FF.....FF......M......2.2..MMWWW", "WW....MMMM....MM............MFF.......4....MM.............WW", "WW...4MMMMMMMMM...MMMMMM....MMMM...........YM.............D.", "WW...4MMMMM.FF....M...........MMMM..........M...............", "WW....MMM...FF.................CMMM.........C............4..", "WW...MMM...FFT...................YM.....F...................", "WW...MM..F.FF........FFF..........MC...FF..................F", "WW...MMFFF.F......F...FFM....C..................NNC........F", ".....M...T.......FF.4..FMM...........................M..4..F", "....CC.........T.FF....FFMY.................C........M....FF", ".................FFF....FFM.........1.....YMM........MFFF.FF", "M.................FMM.....MC..Y.........MMMM.........MMFFFFF", "M.................FFM..4..MM............MMMM........MMMFFFFF", "MM......1..........FMM.................YMMMC........MMMMFFFM", "MMFF................MMMM...............MMY.........MMMMMMMMM", "MMFF.......F...........................MC.........MMMMMMMMMM", "MMMM.......MFF................Y..................MMMFFFFMMMM", "MMMM.......MMMM.............CMMMMMY..............MB....FFFMM", "MMMMM.....FMMMMMM.....MMMMMMMMMMMMMC.....................FMM", "MMMM......FMMM...........CMMMMMMMMY.......................MM", "MMMM......MM...............Y..CMY...........M.D.........D..M", "MMM......MM.................................MM....212...D..M", "MM...4...M....T..........................MMMMMF..........D..", "MM.....................................D...MMMF.............", "WW....M......F..212......4...FY...F..........MMF..........WW", "WW....M.F....F.............FFFM...F...4......MMF.......4..WW", "WW....MMF..T.FF........F..FFFFMM.FF........D.MMMF.........WW", "WWWW..MMFF..FFF.......FFFMMFFFMMMMFF.......D.MMMMF..DWWWWWWW", "WWWWMMMMMFFFFFFFF...FFFMMMMMMMMMMMMMMMM.....MMMMMMM..WWWWWWW"], "Survival_12": ["FFFFFFFF..........D...1FFWWWW..WWWFF.1.......D.......FFFFFFF", "FF.4FFFFFF.....FF......FFWWWW..WWFF................FFFFF4.FF", "FF4.FFFWWWWD...FFF......D...............T...WWW....WWFFF.4FF", "FFFFFFFWWWW....FF..........................CWWWF...WWFFFFFFF", "FFFFFFFWW.....FF...WWW...............FF....FWWFF...WWFFFFFFF", "FFWWFF...FF....F...WWW.D.............FT..D.FFFF..D....FFWWFF", "FFWWT...............................D..................TWWF.", "FFWW.......................................T............WWF.", "FFWW......NNNNNNNNNNNNNNNNNNN..NNNNNNNNNNNNNNNNNNN......WW..", ".....D....NM...MFFF...MMB.........MF......BXXXXX............", ".......N..NF.........DMM..........MF.......MFFFM....N....2.2", "..CFF..N..NF......MM..MM...MFF..MMMM..MM............N.......", "..WWF..N..NM...D.MM4.....D.MMF..M4....M......D...D.FN.....FC", "..WWF..N......M.......D....MMM..M...D.M...MM......FFN...FFFF", "..WWF..N......M.......NNN.....D..........D....M...MMN..D.FFF", "..WW...N..M...M.......NF.....................4MF....N....CFF", "2.2....N.FMM...D.FF...NF...M......MM..FFM..MMMMF....N.....FF", "D......N.FMM.....NN...N..MMMF.MM......MMM...........NF....F.", "...F...N.....FM..N.....D..4MF..M....................NF.....1", "1.FFF..X.....FM..N.........M...MMBB................FN..WWW.D", "..FFT..XX....MM.FN..NNNNNNNNN..NNNNNNNNNM..N..M....FN..WWW..", ".......XXXXD.M..FF..NBB........T.....BBN4FFN..MF...FN..WW...", ".......MF....M......NB................BNFFFN..MF....N..WW...", ".......MF...........N.....T............NNNNN..M.....X..WW.FF", "F......NNN...4......N..D.........T.D...XB.....M..XXXX.....FF", "FF.....NMB...MM.....N......D.4.........XB..........XXD....WW", "WW..D..N.......D.M.4N.....FF.....FF.T..NNNN........MM.....WW", "WW.....N.........MMMN..T..FFFFFFFFF....N.4N.FF..N..MM.....WW", "WW.....N..MM..MF....N....4.FFFFFFF4....N..N.FM..N..MM.....WW", "...1......FM..MF........44.FFBBBFF44.........M..NF......1...", "..........FF..M..M.......4.FFBBBFF4..........M..NF..........", "WW.....N......M..MMMN..D...FFFFFFF.T...NMMM..M..NNNNN.....WW", "WW.....NM.....D....FN....TFFFFFFFFF....NB......D...FN.....WW", "WW2.2..N...........FN.....FF.....FF....N.........FFFN.....FW", "WW.....N...NN..XXX.FN.........4........N...XXX..MMMMN.....FF", "FF.....NM..N4.......N...T...........T..N...FF...M..BN......F", "FF.WW..NMF.N........N........T...D....DNM...........N.......", "...WW..NMF.N...MM...NB.........D.......NM..M........N.....D.", "...WW..NMF....DM...MNBB..............BBN...XXX4...FMM.......", "..WWW..N...........MNNNNNNNNN..NNNNNNNNN....DMMM..FMM..TFF..", "1.WWW..N...........FFMMMMM..M....M..4M............FMM..FFF.1", "......FXXXX..M..MFFFFMM..M..M....M........M.......MMM...F...", "FF....FXXXXF.M..MMM.....D.......MM......DXXXX..N..FFN....2.2", "FF..D..MB.FF...D..........................FF...N.FFFN.......", "FFC....MB.............MM..NNN......FNNN........NNNFFN...WW..", "FFF....NNN.....4.N...MM....4N.FM...FN.......M.......N..FWW.D", "FFFF...NXX..M....NF..M........FMM..........4M.......N..FWW..", "CF.....N..D.M....NF......M....FMM......MM..MM..MMM..N..FWW..", ".......N....MFF..NN.....FMMD.......MM..........FF...N..FFC..", "............XXX..D...M..FF.............FF...................", "............XXX..D...M............FF...FMMM...MM............", "..WW......NNNNNNNNNNNNNNNNNNN..NNNNNNNNNNNNNNNNNNN......WW..", ".FWW.2.2................................................WWF.", ".FWWT......................D...........................DWWF.", "FFWWFF.......FFFF.D..TF.....................F....FF...FFWWFF", "FFFFFFFWW...FFWWF....FF............D........FF.....WWFFFFFFF", "FFFFFFFWW...FFWWC.........................TFF..D..WWWFFFFFFF", "FF4.FFFWW.....WW...T......................FFF.....WWWFFFF.4F", "FF.4FFFFFF...............FFWW..WWWWFF...D..FF.....FFFFFFF4.F", "FFFFFFFF........D.....1.FFFWW..WWWWFF1..............FFFFFFFF"], "Survival_13": ["..FFFFFFFFFFFFFFF....FFFFFFFFFFFFFFF.....FFFFFFFFFFFFFFFFFFF", ".FFFFFFFFFFFFFFFF..1.FFFFFFFFFFFFFFF.212.FFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFF........FFFFFFFFFFFFFFF............FFFFFFFFFFFF", "FFFFFFFFFFFFF......B..........FF................FFFFFFFFFFFF", "FFFFFFFFFFFFF.................FF......FF....B.........FFFFFF", "FFFFFF......................44......B.FF..............FFFFFF", "FFFFFF..........B.....................FF..............FFFFFF", "FFFFFF.1.......BB.................................FFFFFFFFFF", "FFFFFF............................................FFFFFFFFFF", "FFFFFFFFFF..........MMMMMMMM..D.MMMMM...................FFFF", "FFFFFFFFFF..........MMMMMMMM....M.4MM.................1.FFFF", "FFFF.............D..M..MM44M....M..MM...MMMM............FFFF", "FFFF.......MMMM..B..M..MM..M.....................B......FFFF", "FFFF..................D.......FFF...D...D........B......FFFF", "FFFF.4...D.......D..........D.FFF.D....MMMMM..............FF", "FFFF.4.....MMMM....MMMMMMM..........B..MMMMM........B.....FF", "FFFF.......MMMM....MM.4.MM....MMMM......4MMM..............FF", "FFFF...B...MM4................MMMM..FF...MMM..MMMM........FF", "FFFF.....D.MM..FFF...D....D....4MM..FFB.......MMMM........FF", "..FF.......MM..FFF..........FF.........D.......4MM...B....FF", "..FF...............MMMMMM...FF...........MM.....MM......FFFF", "..FF...B..FF.......MMMMMM.D.MM..FF..4M...MM...D.........FFFF", "..........FF.MMM.D.MMM4.....MM..FF.MMM...............4..FFFF", "212..........MM4...MMM..........FF......D............4..FFFF", "FF...........MM.........FF..........D.......MMMM.D....FFFFFF", "FF.......M.D.MMM...D..D.FF..MMMM......MMM.FF..MM......FFFFFF", "FF.....D.M..................MMMM.4M...MMM.FF.4MM............", "FF.......M.....FF.MMMMM.....MMMMMMM....MM.FF..MM.......B....", "FF.......M.....FF.MMMMM.............D..4M...MMMM............", "FFFFB.......MM....MM4...........D......4M...................", "FFFFF.......MM4...MM4....MM..FFF.MMM..MMM.D......D......212.", "FFFFF....D..MMMM..MMMMM..FF..FFF.MMM..MMM..BFFF.............", "FFFFF.......MMMM..MMMMM..FF......MMM.......BFFF..........FFF", "FFF......FF.......MMMMM......MM..MMM..FFF................FFF", "FFF......FF.............D...4MM.......FFF.D...MM....B....FFF", "FFF...........MM..FF.......MMMM.FF............MM.........FFF", "FFF...........MM..FF..MMM..MMMM.FF..MM..MM...4MM.D.......FF.", "FFF........B..........MMM........B..MM44MM..MMMM.........FF.", "..................MM..MMM...........MMMMMM..MMMM.........FF.", ".1.....B.......D..MM.....................................FF.", "..................MM4....D..MM44MM.D.......D...D...BB.......", "FFF..........B....MMMMM..B..MMMMMM...MMMM..........B.....FFF", "FFF...............MMMMM.....MMMMMM.......................FFF", "FFF......................................................FFF", "FFF.......4..............B............................FFFFFF", "FFFFF.....4.......D............................BB.....FFFFFF", "FFFFF...FFF...........................................FFFFFF", "FFFFF...FFF...............................4.............FFFF", "FFFFF..........B..........................4....BB.....1.FFFF", "FFFFF..........B.................B.......FF.............FFFF", "FFFFF....................................FF..........FFFFFFF", "FFFFF....2.2..............FF.............FF..........FFFFFFF", "FFFFFFFFFFFFFFFF.1.FFF....FF.....FFF.....FF....2.2...FFFFFFF", "FFFFFFFFFFFFFFFF...FFFFFFFFFFF...FFF.....FFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFF...FFFFFFFFFFF.1.FFF.....FFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...FFF.....FFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF.", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF..", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...."], "Survival_14": ["RRR......RRRRR.....RRYR.............T.....RRRRRRRRRRRRRRRRRR", "RR........RRR.......RRR...R.................RRRRRRRRRRRRRRRR", "R4.....B..RR..............RR.................CMMMMMMMC.RRRRR", "R.........RRR...........B....B...T.....T................RRRR", "...........RR............................................RRR", ".....212...RR.......RY....1...................B......4T..RRR", "...........MR...4T..RM........RMM..........1..........4..RRR", "RRR........M.....4...M.......RRMM....T...........N.......RRR", "MMMMC......M.........M..TR...XXXX........B.......N........RR", "RR......B..MR........M.......MM4R................N........RR", "R..........MRR.......M.......YRRR................N........RR", "...........MMMM..CMMMMMMC........T.......NNNNNNNNN......CMMM", "...........T.....RRRRRRRR................RRRRR............RR", "....T.RRR.................................................RR", "......4RR..........4.....B.....B............T....B........RR", "R.....R4R....B....4.................4...............212...RR", "R.....RRR...........................T4...................TRR", "R....................................................B...RRR", "R....................XXXXR..MC.........B.......B...RRRRRRRRR", "RR....C..NNNNNNN......MMRR...............RRRRRRRRRRRRRRRRRRR", "RR..........RRRN.......MR..........RRRRRRRRRRRRRRRRRRRRRRRRR", "RR...........4RN...T...MR.....T...RRRRRRRRRRRRRRRRRRRRRRRRRR", "RR.......B.............M..4......RRRRRRRRRRRRRRRRRRRRRRRRRRR", "RRR....................M..T4..D..RRWWWWWWRRRRRRRRRRRRRRRRRRW", "RRR...1............B.............RRWWWWWWWRRRRRRRRRRRRRRRRWW", "RRRR..................D.....D.....RWWWWWWWWWWWWWWWWWWWWWWWWW", "RRRR........T..C.........D......D.R..WWWWWWWWWWWWWWWWWWWWWWW", "RRRRR..............Y..........D.......WWWWWWWWWWWWWWWWWWWWWW", "RRRRRRT...............D...............WWWWWWWWWWWWWWWWWWWWWW", "RRRRRRRRR2.2...............D.......D...WWWWWWWWWWWWWWWWWWWWW", "WWRRRRRRRRR..........WWWW.....444.............CRRRR....WWWWW", "WWWRRRRRRRRRR.WWWWWWWWWWW....444..............MRR........WWW", "WWWWWWWWWWWWWWWWWWWWWWWWW.............D..T....MRR........RWW", "WWWWWWWWWWWWWWWWWWWWWWWWW.D.......D...........MRR........RRR", "WWWWWWWWWWWWWWWWWWWWWWWW.....D..D.....4.......4RR.........RR", "WWWWWWWWWWWWWWRRRRRR................D.4........RR..B...B..RR", "WWRRRRRRRRRRRRRR...........................B..RRR.........RR", "WRRRRRRR..RRRRR.....NNN..RXXXXXXX.............RR...........R", "RRRR.......RRRR.....RRN..RRRR......T....................212R", "RRR.........RRRM.....RN....................................R", "RRT...Y4....RRRM...4..N..................T....C............R", "RR....4.....RRRM...4..N..B..................................", "RR.........TRRRM.............T......B.............T......B..", "R............RRM.....................................B......", "R............RRMMMR.Y..........RR.........R.................", "MMMMMMMC.....RRRRRR.M........RRRRR......RRRR...RRR..........", "T.............RRR...M....T...RRRRRRRRRRRRRRR..RRRMM.........", "......1...B...RR....Y........RRYMM4..4MMYRRRXXRRXXXXXC4R4CMM", "...B.............T............RRRRRRRRRRRRRR..RRRMM....RRRRT", "R............4...................RRRRRRRRRRR....RM......RRRR", "RR.........................B............RRR......M...B....RR", "MR.YMMMMMM......................B.........R..T...M.........R", "RR....RRRM...........XXXX.............T...R................R", "R.......RR....T......RR.....T.............Y....1.....T.....R", "....4..............RRR............1.........................", ".....4...M....212...RR...T...............4..................", "R........MR.........RR...44.....................B...........", "RR......RRR...B.....MRR......RR....B......C................T", "RR.....RRRR.........MRRR......R..........RM..............RRR", "RRRRTRRRRRRR.....T..MMMRRRR..YRR.......TRRMR....T......RRRRR"], "Survival_15": ["MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM", "MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM", "FF..................1.....FF.2.2FF.....1..................FF", "FF........................MF....FM........................FF", "FF..4.......B.............MF....FM...........B.........4..FF", "FF...............FFFFFF...MM....MM...FFFFFF...............FF", "FF....MMFF.4.....FMMMMM..............MMMMMF.....4.FFMM....FF", "FF....MMFF..T.........M..............MB........T..FFMM....FF", "MM....FF............................................FF....MM", "MM....FF...................TNNNNT...................FF....MM", "FF...........FFN.....FFFFWWWWWWWWWWFFFF.....NFF...........FF", "FF...........FFNNNNNFFFFWWWWWWWWWWWWFFFFNNNNNFF...........FF", "FF....C.4...WWWWWWWWFFFFWWWWWWWWWWWWFFFFWWWWWWWW....4.....FF", "FF....Y.....WWWWWWWWFFFFWWMFFFFFFMWWFFFFWWWWWWWW..........FF", "FF..MMM...FFWWWWWWWW....WWMF.44.FMWW....WWWWWWWWFF..TYM...FF", "FF..MMM...FFWWWMMMMT....TMMF.44.FMMT....TMMMMWWWFF..TYM...FF", "FF.........FWWWMFF........................FFMWWWF.........FF", "FF.........FWWWMF..........................FMWWWF.........FF", "FF.........FWWWM..............B.............MWWWF.........FF", "FF.........TWWWT............................TWWWT.........FF", "FF1...MM............MMFFFM........MFFFMM...........FFFFF.1FF", "FF....FM......2.2...MMFFFMYY....YYMFFFMM...........FNNNN..FF", "FF....FMT..........................................FN.....FF", "FF....FFF..............4............4..............FN.....FF", "FFMM.......NWWW..............B...............WWWN......B..YY", "FF.........NWWW..............................WWWN...........", "FF.........NWWWT....M........FF........M....TWWWN...........", "FF.........NNWWF....MMC....FFFFFFF...CMM....FWWNN...........", "FF....MF...FFWWF....FF....FFT...TFF...FF....FWWFF.....YFFFFF", "YY...4MF...FFWWF....FFFFFFFFF...FFFFFFFF.212FWWFF....4MMMMFF", "YY...4MF...FFWWF.1..FFFFFFFFF...FFFFFFFF....FWWFF....4MMMMFF", "FF....MF...FFWWF....FF....FFT...TFF...FF....FWWFF.....YFFFFF", "FF.........NNWWF....MMC....FFFFFFF...CMM....FWWMM...........", "FF.........NWWWT....M........FF........M....TWWWM...........", "FF.........NWWW..............................WWWM......B....", "FFMM.......NWWW.............2.2..............WWWM.........YY", "FF....FFF..............4...M....M...4..............FM.....FF", "FF....FMT..................M....M..................FM.....FF", "FF....FM............MMFFFMYM....MYMFFFMM...........FMMMM..FF", "FF1...MM............MMFFFMMM....MMMFFFMM...........FFFFF.1FF", "FF.....B....WWWT..........B.................TWWW..........FF", "FF..........WWWM............................MWWW.....B....FF", "FF.........TWWWM............................MWWWT.........FF", "FF........FFWWWM.............44.............MWWWFF........FF", "FF..MMM...FFWWWM...TNNNNNT...44...TNNNNNT...MWWWFF..TYM...FF", "FF..XXX...FFWWWW...WWWWWWWW......WWWWWWWW...WWWWFF..TYM...FF", "FF....Y....FWWWWFFFWWWWWWWW......WWWWWWWWFFFWWWWF.........FF", "FF....C.4..NWWWWFFFWWWWWWWNFFFFFFNWWWWWWWFFFWWWWM...4.....FF", "FF.........NNN.........TNNNFFFFFFNNNT.........MMM.........FF", "FF........................................................FF", "MM....FF..................................B.........FF....MM", "MM....FF....B..FF..........................FF...B...FF....MM", "FF....MMFF.....FF....MM...FT....TF...MM....FF.....FFMM....FF", "FF....MMFF..4..MM.....T...FNNNNNNF...T.....MN..4..FFMM....FF", "FF.............MM.........FFFFFFFF.........MN.............FF", "FF..4.....B....MMMT......................TNNN..........4..FF", "FF..............B............2.2...........B..............FF", "FF..................1........CC........1..................FF", "MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM", "MMFFFFFFMMFFFFFFFFFFFFFFFFFFFYYFFFFFFFFFFFFFFFFFFFMMFFFFFFMM"], "Survival_16": ["WWWWWWWMMMFF........D......MMMMMMMF...............MMMWWWWWWW", "WWWWWWMM4...................MMMMMFF....1...........4MMWWWWWW", "WWWWWMMM......212....FM......MMMFF..................MMMWWWWW", "WWWWFFMM............FFM......MMMFF..................MMFFWWWW", "WWWFFFFMM...........FMM..C4...MMFF....MMF..........MMFFFFWWW", "WWFFFFFM............FM.........MFF...MMMF...........MFFFFFWW", "WFFFFF......M..................MF....MMMFFF....YY.....FFFFFW", "FFFFFF......MMMFF....................FMMMMFFD.........FFFFFF", "FFFFF.......FMMMF....................FFMMMMM...........FFFFF", "4FFF........FMMM.....MFFMMMMMM..........................FFF4", "FFF.........FMMM....FMFFFFFF4M...................FF......FFF", "FFF.....FFF...MM....FMFFFFFFFM.........D....F...MMF.FFM..FFF", "......MMMMF..........MFFFFFFF....FFMM4.....FFFF.MM..FMM.....", "......MMMMM..........MMMMM.......MMMMM....MFFFFF............", "......FFMMM....FFF............FFMMMMMM...MMFFFFFF........212", "..1......M...4MMMM............MMMMMMMF......FFFFFF...FFF....", ".............MM....D.........MMMMMMMFF......FFFFFFF..MMMM...", "............................D..MMMM...........FFFFF..MMMMM..", "F.D......D.....FF.MM..FFFF.................MM4..FF...MFFFF..", "FF....MM.......FFFMM..FFFF............DM...MM.......MM......", "WW..FMMMM......FFFFM..FFMM....FFFFF....MFF..........MF......", "WW..FFM.........FFFM..FFMM4...FFFFFF...MMF.........MMF....FF", "WWW........N....FFFMM..FMMM...MMMMMFF..FMF................F4", "WWWW......4N.....FMMM....M...YMMMMMMF..FMM...MMM..........FF", "WWWW.......N...N..4MM........FFFF4MMF.......DFMMM....N......", "WWWWNNN........N....MMM......FFFFFFMM........FMMM...4NFF....", "WWWFFFF........N........FFWW.FFFFFF4M..D.....FMMM....NNF....", "WWWFFFF.............D...FFWWC.FFFFFF.....MM..FFFF...........", "WW4.....................FFYY4.FFFFFF....4MM..............1..", "WW.....MMMMMMFF...FFMM.........D.......MMMF.................", "FF....MMFF..MMF...MMM.................MMFFF....T..........WW", "F...........4M...MM4....FFFFFF.4YYFF......................WW", "212..........M...MM.....FFFFFF.CWWFF..............T..FFFFWWW", "......FFFFF.DM.........M4FFFFFF.WWFF.........T.......FFFFWWW", "...Y..FWWWF..M.........MMFFFFFF......MMM.............NNNWWWW", "......FWWWF.........D..FMM4FFFF........MM4......N.......WWWW", "......FFWWF............FMMMMMMY...M.....MMF.....N4......WWWW", "FF.....FFFF......FM....FFMMMMMD..MMMF....FFF....N......D.WWW", "FFFF........FMC..FMM....FFFFFF...4MMFF...FFF.............FWW", "FFFFF.......FM...FMMM....FFFFF....MMFF.M.FFFF....D.......FWW", "FFMMM.......FM...FMMM.............FFFF.MMMFFF.....M......FFF", "MMM.....D........MMMM.............FFFF..MMMFF....MMMM....FFF", "MFF....M........MMMFF........M...................MMMM.......", "M.....MMMMMM....MMFFF...FFFMMMM...................MMMM......", "..1..MMMMMMMM..........FFMMMMMMC...NNNN...........FFMM......", ".....MMMMMMMM..........FFMMMMMMFF..N.........T......FF..212.", "......MMMFFFF.....D....FF.4MMMMFF..D........................", "............................MM...........MM.................", "FFF..........FFFFMM..........M...........MM.....FFFD.....FFF", "FFF..........MMMMM.......................4......MMF......FFF", "4FFF.....MM..MMM4......FMM..D...MMMM............MMF.....FFF4", "FFFFF.....M..MMF.......FM4.....MM...........T..........FFFFF", "FFFFFF....M..MMF.......FM...FFFF.......MMF............FFFFFF", "WFFFFF.....................FFFFFFFF....MMF............FFFFFW", "WWFFFFFM...........MMM..FFFFFMMFFF4M...FFF...NNN....MFFFFFWW", "WWWFFFFMM.........MMMMMMFFFFFMMFFMMM...........N...MMFFFFWWW", "WWWWFFMM.....212....MM..FFFFFFFFF...................MMFFWWWW", "WWWWWMMM................FFMFFFFFF.4.........1.......MMMWWWWW", "WWWWWWMM4.......W......FFMMMFFFFMMM....D...........4MMWWWWWW", "WWWWWWWMMM....TWWWT....MMMMMMMFFMMMMMMM...........MMMWWWWWWW"], "Survival_17": ["MMMM.......MMMMMYYC........RRWW....RRMMM..WWM.....MMMMMMMMMM", "MMMM...4.....MMMC..........RRWW....RRMMM..WWM.....RRRMMMMMMM", "MMM............M...1..RRW..WWWW....RMMMR..WWW.212.....MMMRRR", "MM.....CC.............WWW..WWWT....MMMMR..TWW.........MMRR..", "MM....RMMM...........WWWT.........MMMRRR....................", "MR....RMM........RRWWW............MMRR..........T.......4...", "RR....RM.........RWWWM....................MWWR......C.......", "R......M.....4W..WWWMM.....MMM............MWWRR....CMMR....M", "............RWW..WWWMR....MMRR.......CC.....WWR....MMMR...MM", "............RWW....WWR....MRR.......MMMM....WWW4...MMMRR..MM", "...........RRWW....WWR..............RMMMM....WWW...RRMMR..RM", "..1.......4WWWM.....WW.........CMC..RRRMM....TWWW....MMR..RR", ".....WW..WWWWMM.....WW........4MMM.....4MM...........RMM...R", "....TWW..WW.................RMMMMR......M............RMMC...", "RRRWWW......................RMMMMR..............WW.....C....", "RRWWW.........MMM...WWR.....MMRRRR...T......T...WW4.........", "WWWW...........4M...WWR.........................WWW.........", "WWWM............M...RWW4.................T.....TWWWWW....1..", "MMMM.....MMC....C...RMWW....T..................WWWWWW.......", "........MMMM........RMWWT.......MMMC...........WWWRRWW.....C", ".......MMMRR....................M4....T..RRWW..WWRR.WWW....Y", ".212...MMRR..............................RWWW..MM...TWW...CY", ".......CMR.............WWRR..............WWWW..............C", ".......................WWWRR.....RRMMWW..WW4................", "MR..................C...WWMM....RRMMWWW..W............WWM...", "MRR..........MMRR...M...WWWW....WWWWWW................WWMM..", "MMRR.........MMMRR..M4..RWWW....WWWWRR.................WWMRR", "MMMR...RRR....4MMR..MM..RWWT....TWWRR...T.......RMM....WWMRR", "MMMR...MMR.....MMR..........................T...RMMM.2.2WWRR", "WWWT...MMRR..................44......T..........RRMM....WWWW", "WWWW....MMRR..........T......44..................RRMM...TWWW", "RRWW....MMMR...T..........................RMM.....RMM...RMMM", "RRMWW....MMR.......T...RRWWT....TWWR..MM..RMM4....RRR...RMMM", "RRMWW.................RRWWWW....WWWR..4M..RRMMM.........RRMM", "..MMWW................WWWWWW....WWWW...M...RRMM..........RRM", "...MWW......T.....W..WWWMMRR....MMWW...C..................RM", "................4WW..WWMMRR.....RRWWW.....R.................", "C..............WWWW..............RRWW.............RMC.......", "YC...WWT...MM..WWW...............................RRMM....1..", "Y....WWWRRRWW..WW....T....4M....................RRMMM.......", "C.....WWRRWWW...........CMMM.......TWWMR........MMMM........", ".......WWWWWW..................T....WWMR...C....CMM.....MMMM", "..1....WWWWWT.....T.................4WWR...M............MWWW", ".........WWW.........................RWW...M4...........WWWW", ".........4WW...T......T...RRRRMM.....RWW...MMM.........WWWRR", "....C.....WW..............RMMMMR......................WWWRRR", "...CMMR............M......RMMMMR.................WW..WWT....", "R...MMR...........MM4.....MMM4.......TWW.......WWWW..WW.....", "RR..RMM....WWWT....MMRRR..CMC.........WW......WWW4......212.", "MR..RMMRR...WWW....MMMMR..W...........RWW....WWRR...........", "MM..RRMMM...4WWW....MMMM.......RRM....RWW....WWR............", "MM...RMMM....RWW.....CC.......RRMM....RMWWW..WWR............", "M....RMMC....RRWWM............MMM.....MMWWW..W4.....M......R", ".......C......RWWM....................MWWWR.........MR....RR", "...4.......T..........RRMM............W.WRR........MMR....RM", "....................RRRMMM.........TWWW...........MMMR....MM", "..RRMM.........WWT..RMMMM....TWWW..WWW.............CC.....MM", "RRRMMM.....212.WWW..RMMMR....WWWW..WRR..1...M............MMM", "MMMMMMMRRR.....MWW..MMMRR....WWRR..........CMMM.....4...MMMM", "MMMMMMMMMM.....MWW..MMMRR....WWRR........CYYMMMMM.......MMMM"], "Survival_18": ["MMMMMMMMMMMMFFFMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM", "MMMMMMMMMMMMFFFMMMMMM...MMMMMMMMMMMMMMMMMMMMMMWWWWMMMMMMMMMM", "..MMMMMMMMMMFFFMM........MMMMMMMMMMMMMMMMMMWWWWWWWWWWMMMMMMM", "...D....MMMMFFFF...D.....MMMMMMMMMMMMMMM...WWWWWWWWWWWWMMMMM", "............FFFF.........MMMMMMMMMMMM............WWWWWWMMMMM", ".....D.......FFF..........MMMMMMM......D............WWWWMMMM", ".............FFF.....D.2.2MMMM...1...................WWWMMMM", "WWW.......D..FFF..........MMM...D....................WWWMMMM", "WWWWWW.......FFFF...1.....MM.......D.....MM..........WWWMMMM", ".WWWWWW.......FFFF....DD........TT.......MM....1.....WWWMMMM", "....WWW...WWW.FFFF..............TT......MMM..........WWMMMMM", ".D........WWWWWWFFF................D....MM........D..WWMMMMM", "...........WWWWWFFF...................MNMF...........WWMMMMM", ".....D.D.....NWWWFFCYC................MNMF.....D......MMMMMM", ".............NWWWFFYYY.FFFF...MM......MNFF............MMMMMM", "FFFF.....1...NNWWFFCYCFFFFF...MMMMM.44MNFFF...44MM.....MMMMM", "FFFFFFF........WWFFFFFFFF.......XXXXXXXNFFFFMMMMMM...F.MMMMM", "FFFFFFFFF......FFFFFFF..........FFFNNNNN..MMMMMM....FF..MMMM", "FFFFFFFFFF44FFFFFFFF4...........FF........MM.......FFF..MMMM", "MMMMFFFFFFFFFFF...WWW4...DD...DD....................FFF.MMMM", "MMMMMMMFFFFF......WWWWWW.............................FF..MMM", "MMMMMMMFFF.........WWWWWW.............D........D.....FF..MMM", "MMMMM.FFF.........D...WWWWFFFFFF........4MD.FFF.212..FF..MMM", "MMMM..FFF....MMM......NWWWFFFFFFTT....D.4MMMFFF....D.FFF.MMM", "MMM...FF.2.2.MMMMM....NWWFFF...FFF........XXXXX.......FF..MM", "MMM...FF.....FFFMM..D.NNN......FFFF.MM................FF..MM", "MM...FFF....DFFF.4.........D....FFFFFXXX..............FF..MM", "MM...FF.............D........444.FFFF.MMM.............FF..MM", "MM...FFXXXXX.............WWWW..4.......XXXXX..........FF..MM", "M4...FFMMMMXXXXX...FF....WWW.....WWW...FFMMMNNNN.....FFF..4M", "M4..FFF.....MMMXXXXFF....WWW.....WWW...FF...MMMMMMMMMFF...4M", "MM..FF..........MXXXX.......4...WWWW............NNNNNFF...MM", "MM..FF.............MMMMFFF..444........D............FFF...MM", "MM..FF...............MMFFFFFF...D.........4.FFFD....FFF...MM", "MM..FF................MMTFFFFF.....NNN.D..MMFFF.....FF...MMM", "MM..FF.......XXXXX........FFFF..FFFWWN....MMMMM.....FF...MMM", "MMM.FFF.D....FFFMMM4.D.....TFFFFFFWWWN......MMM....FFF..MMMM", "MMM..FF...1..FFF.DM4........FFFFFFWWWW...D.........FFF.MMMMM", "MMM..FF.....D........D.............WWWWWW.........FFFMMMMMMM", "MMM..FF..............................WWWW.......FFFFFMMMMMMM", "MMMM.FFF....................DD...DD...4WWW...FFFFFFFFFFFMMMM", "MMMM..FFF.......MM.....................4WWFFFFFF44FFFFFFFFFF", "MMMM..FF....XXXXXX..XXXXXFFF..........FFFFFFF......FFFFFFFFF", "MMMMM.F...MMMMMMFFFFMMMMMMMM.....FFFFFFFFFFWW........FFFFFFF", "MMMMM.....MM44...FFFMM44.XXXXX...FFFFFCYCFFWWNN..212....FFFF", "MMMMMM............FFMM......MM..FFF...YYY.FWWWN.............", "MMMMMM......D.....FMMM..........FFF...CYC.FWWWN.....D.D.....", "MMMMMWW...........FMMM................D...FFWWWW............", "MMMMMWW..D........FM....D..................FWWWWWW........D.", "MMMMMWW..........MMM......XT...............FFFWWWW...WWW....", "MMMMWWW....212...MM.......TX........DD.....FFF.......WWWWWW.", "MMMMWWW..........XX.....D.......MM.....1...FFFF.......WWWWWW", "MMMMWWW....................D...MMM..........FFF..D......WWWW", "MMMMMWW...................1...MMMM....D.....FFF.............", "MMMMMWWW...D........D......MMMMMMM..........FFF.............", "MMMMMWWWWWW............MMMMMMMMMMMM.........FFFF............", "MMMMMWWWWWWWWW......MMMMMMMMMMMMMMM.....D...FFFFMMMMMMMMD...", "MMMMMMMWWWWWWW...MMMMMMMMMMMMMMMMMM........MMFFFMMMMMMMMMM..", "MMMMMMMMMMMMMM..MMMMMMMMMMMMMMMMMMMM...MMMMMMFFFMMMMMMMMMMMM", "MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMFFFMMMMMMMMMMMM"], "Survival_19": ["WWWWWWWWWWWWWWWWWNNNNNRRRRRRRRRRRRRRRRNNNNNWWWWWWWWWWWWWWWWW", "W.........TWWWWWWYRRRRRRRRRRRRRRRRRRRRRRRRYWWWWWWT.........W", "W............................44............................W", "W.....RRR.................L....DL............D.....RRR.....W", "W...RRRRRR........................................RRRRRR...W", "W...RRRRTRR.........NT.......CC.......TN.........RRTRRRR...W", "W..RRRWWWWR.........NWWWWWWWWWWWWWWWWWWN.........RWWWWRRR..W", "W..RRRWWWWR.........NWWWWWWWWWWWWWWWWWWN.........RWWWWRRR..W", "W..RRTWWWWW..1......NWW..TNNNNNNNNT..WWN......1..WWWWWTRR.DW", "W...RRWWWWWNNN......NWW....RRRRRR....WWN......NNNWWWWWRR...W", "WT...RRRWWWWWT4.....NWW.4D.........4.WWN.....4TWWWWWRRR...TW", "WW..2.2.WWWWW.......NWW......1.......WWN.......WWWWW.2.2..WW", "WW.D.......WW.......NT................TN.......WW.......D.WW", "WW.........WWRRRR..................D.......RRRRWW.........WW", "WW.........WWYYRR..D....................D..RRYYWW.........WW", "WT........4WW...........MMRRRYYRRRMM...........WW4........TW", "W.....1...NWW...........RRRRRMMRRRRR...........WWN...1.....W", "W.........NWW..................................WWN.........W", "W.........NWW..................................WWN.........W", "W.......P.NWWRRRRM........C......C........MRRRRWWNO........W", "W..D......NWWRRRRTP..4.NNNY......YNNN.4.O.TRRRRWWN......D..W", "W.........NNNN........WWWWWW....WWWWWW........NNNN.........W", "W.....RRRRMMD......4..WWWWWW....WWWWWW..4......DMMRRRR.....W", "W.....RRYYM..........WWWRR........RRWWW..........MYYRR.....W", "WNNT...............WWWWWRR........RRWWWWW...D...........TNNW", "WWW................WWWTD.............TWWW................WWW", "WWW................WWWY.....TMMT....DYWWW................WWW", "WRR................NNNN.....RRRR.....NNNN................RRW", "WRR.........RRRR.............44..................RRRR....RRW", "WRR..4.MMRR.RR.M............................MMRR.RRMM.4..RRW", "WRR..4.MMRR.RRMM............................M.RR.RRMM.4..RRW", "WRR....RRRR.D................44.............RRRR.........RRW", "WRR................NNNN..D..RRRR.....NNNN................RRW", "WWW.2.2............WWWY.....TMMT.....YWWW............2.2.WWW", "WWW............D...WWWT........D.....TWWW................WWW", "WNNT...............WWWWWRR........RRWWWWW...............TNNW", "W.....RRYYM..........WWWRR........RRWWW.......D..MYYRR.....W", "W.....RRRRMMD......4..WWWWWW....WWWWWW..4......DMMRRRR.....W", "W.D.......NNNN....U...WWWWWW....WWWWWW..Z.....NNNN.........W", "W.......U.NWWRRRRT...4.NNNY......YNNN.4...TRRRRWWNZ.....D..W", "W.........NWWRRRRM........C......C........MRRRRWWN.........W", "W.........NWW..................................WWN.........W", "W.........NWW..................................WWN.........W", "WD....1...NWW...........RRRRRMMRRRRR...........WWN...1.....W", "WT........4WW...........MMRRRYYRRRMM...........WW4........TW", "WW.........WWYYRR..D....................D..RRYYWW.........WW", "WW.........WWRRRR..........................RRRRWW.........WW", "WW.D.......WW.......NT............D...TN.......WW.......D.WW", "WW......WWWWW.......NWW.......1......WWN.......WWWWW.....DWW", "WT...RRRWWWWWT4.....NWW.4D...2.2...4.WWN.....4TWWWWWRRR...TW", "W...RRWWWWWNNN......NWW....RRRRRR....WWN......NNNWWWWWRR...W", "W..RRTWWWWW..1......NWW..TNNNNNNNNT..WWN......1..WWWWWTRR..W", "W..RRRWWWWR.........NWWWWWWWWWWWWWWWWWWN.........RWWWWRRR..W", "W..RRRWWWWR.........NWWWWWWWWWWWWWWWWWWN.........RWWWWRRR..W", "W...RRRRTRR.........NT.......CC.......TN.........RRTRRRR...W", "W...RRRRRR.....D..........K.....K.................RRRRRR...W", "W..D..RRR..........................................RRR.....W", "W............................44............................W", "W.........TWWWWWWYRRRRRRRRRRRRRRRRRRRRRRRRYWWWWWWT.........W", "WWWWWWWWWWWWWWWWWNNNNNRRRRRRRRRRRRRRRRNNNNNWWWWWWWWWWWWWWWWW"], "Survival_2": ["FFFFFWWWFFFFFFFMWWWWWWWWWFFFFFFFFFFWWWWWWWWWMFFFFFFFFFTWWWWW", "FFFF..WWF.....FMWWWFFF................FFFWWWMF...D......WWWW", "FF4....T...C..FMWWFF.......M.D..M.......FFWWMF.....DD.D..4WW", "FF..D.....YY..FMWWF..1.D...M4..4M..D.212.FWWMFD.CYYYC.....WW", "F......D..CC..............FM....MF................CC...D...W", "W.D................D....D.FM.D..MF.D.......................T", "WW...D.........D..T........C..D.C........T....D...D........F", "WWT.....WW..D........MM.......D......MM................T..FF", "MM.....WWW..D........MM..D........D..MM.....MMMMMM..D....FFF", "FF.....WW......WWD.......D...........FF..D..M4FFFM........FF", "F..D..........4WW..........MMMMMM..D............FM..T.D....F", "F.............FWW..FFMM....MFFFFM........D....D.FM.........F", "F.1...D.....4FFWW..FFMM..............T..........4M.......1.F", "F.....D....WWWWWW............D.......WWWWT..D...MM...D.....F", "F..........WWWWWW........D...44......WWWW.............T....F", "WW..........................FMMF.....WWFF.....D...........WW", "WWW....MM....DD....MMM....FFFMMFFF.........M....D........WWW", "WWWW...MF.................MMMMMMMM.........MFF.....FM...WWWW", "WWWW...MF.........FFF..................D...MMMM....FM...WWWW", "MMMM...M.....MMM..FWWWW............................MM...MMMM", "FFFF.........FFM..FWWWW..............MMM................FFFF", "F..2.2...D.....M...WW4.....T....T.....4M..D.FFFF...........F", "F.YC...........M...WW......WWFFWW......M....WWWW..D..D..CY.F", "F.YC.......T...............WWWWWW...........WWWW........YC.F", "F............D..D.......T..WWWWWW..T...........T..D........F", "F.....MM..D...........D.......D........D............MM..D..F", "M.....4M.......MMM........FFFFFFFF.D......MMM.......MF.....M", "M..DD..N.......FFM...TWWW.FFFFFFFF.WWWT.D.MFF...D...N......M", "M......N....C...4M....WWW.FF.44.FF.WWW....M4...C....N....2.M", "M..........CY....M.DD.FWW.FF4MM4FF.WWF....M....YC........1.M", "M.1........CY....M....FWW.FF4MM4FF.WWF..D.M....YC........2.M", "M......N....C...4M....WWW.FF.44.FF.WWW....M4...C....N......M", "M......N.......FFM.D.TWWW.FFFFFFFF.WWWT...MFF.......N...D..M", "M.....FM.......MMM........FFFFFFFF........MMM.......M4.....M", "F..D..MM.....................D...................D..MM.....F", "F........D..T...........T..WWWWWW..T.......................F", "F.CY........WWWW...........WWWWWW....D..........T.......CY.F", "F.YC..D.....WWWW....M......WWFFWW......WW...M...........CY.F", "F......D....FFFF.DD.M4..D..T....T...D.4WW...M.....D........F", "FFFF................MMM..............WWWWF..MFF.........FFFF", "MMMM...MM............................WWWWF..MMM.....M...MMMM", "WWWW...MF....MMMM....D.................FFF.........FM...WWWW", "WWWW...MF.....FFM.........MMMMMMMM.................FM...WWWW", "WWW.2.2.........M.........FFFMMFFF....MMM..........MM....WWW", "WW...........D.....FFWW.....FMMF..........................WW", "F....T.D...........WWWW......44...D........WWWWWW..........F", "F.....D...MM...D..TWWWW..D....D............WWWWWW....D.....F", "F.1.......M4..........T..............MMFF..WWFF4.........1.F", "F....D....MF.D.............MFFFFM....MMFF..WWF.............F", "F....D.T..MF............DD.MMMMMM..........WW4..........D..F", "FF........MFFF4M..DD.FF...........D.......DWW......WW.....FF", "FFF.......MMMMMM.....MM..D...........MM...........WWW.....MM", "FF..T...D............MM......D.......MM........D..WW.....TWW", "F........D...D....T........C...DC........T...D........D...WW", "T.......................D.FM..D.MF......D..............D.D.W", "W...D...CC................FM....MF..............CC..D......F", "WW.....CYYYC.DFMWWF..1..D..M4..4M...D212.FWWMF..YY.....D..FF", "WW4..D.DD.....FMWWFF.......M..D.M.......FFWWMF..C...T....4FF", "WWWW......D...FMWWWFFF................FFFWWWMF.....FWW..FFFF", "WWWWWTFFFFFFFFFMWWWWWWWWWFFFFFFFFFFWWWWWWWWWMFFFFFFFWWWFFFFF"], "Survival_20": ["MMMMMFFF..WWF....MMMMMMF.............MMMMM......FFMMMWWWWWWW", "MMMMFF....WWF.1...MMMMFF..............MMFF..1....FFMMWWWWWWW", "MM4......WWWF.....4MMMF...............MFF.........FF...WWWWW", "MM......MWWFF......MMFF..NWW....WWN.....................4WWW", "MF......MMMF.......FFF...NWW4..4WWN......................WWW", "FF.2.2...................NWWWWWWWWN..........4WWMM........WW", "F........................FFFWWWWFFF......MMWWWWWMMC.......WW", "F.......................................MMMWWWWFFF.....2.2MM", "...MM............T......................FF....FF.........FMM", "..WWM.....CMMM.......................................C...FFM", "WWWWM....CMMMF...........4MM........................FMM...FF", "WWWFF....MMFFF......FFFFWWMM....C.....C.........T...FMM....F", "FFFF.....MMFF.....FFFWWWWWMM....MF...MMFFF.........FFWW.....", ".........MFF......MMWWWWW.......MF...MMMWWWT.......FWWW.....", ".1................MMWW.........MMF....MMWWWW........WW4.....", "..................C............MMF.......4WWW.......WW....1.", "..............................MM...........WWWT.....WW......", "M.......T.............T.....................WWW.....MM......", "MM4.........FMMC.....................T......4WWF...FMM...FFF", "MMMMF.......FMM..............................WWF...FM...FFMM", "MMMMF......FFWW..............................MMF........FMMM", "MMMFF......FWWW.........FMM......MMF.........MMMC.......MM..", "MFFF.......FWW...T.....FFMMMMMMMMMMFF....T....MM............", "FF.........FWW........FFFFF.4MM4.FFFFF......................", "F..........WWW.......FFFFF...MM...FFFFF............T......FF", ".....T....4WW........MMFF....MM....FFMM..................FFM", "..........MMM........MMF.....MM.....FMM......MMC........FFMM", "M.........MMM.......WW4..............4WW....MMM.........FFMM", "M4..............C...WW................WW...MMFF......1..MMMM", "MMM.............M...WW................WW...MFF....T.....MMMM", "MMMM.....T....FFM...WW................WW...M.............MMM", "MMMM.212.....FFMM...WW................WW...C..............4M", "MMFF.........MMM....WW4..............4WW.......MMM.........M", "MMFF........CMM......MMF.....MM.....FMM........MMM.......2.2", "MFF..................MMFF....MM....FFMM........WW4....T.....", "FF......T............FFFFF...MM...FFFFF.......WWW..........F", "......................FFFFF.4MM4.FFFFF........WWF.........FF", "............MM....T....FFMMMMMMMMMMFF.....T...WWF.......FFFM", "..MM.......CMMM.........FMM......MMF.........WWWF......FFMMM", "MMMF........FMM..............................WWFF......FMMMM", "MMFF...MF...FWW..............................MMF.......FMMMM", "FFF...MMF...FWW4......T.....................CMMF.........4MM", "......MM.....WWW.....................T.............T.......M", "......WW.....TWWW...........MM..............................", ".1....WW.......WWW4.......FMM............C..................", ".....4WW........WWWWMM....FMM.........WWMM................1.", ".....WWWF.......TWWWMMM...FM.......WWWWWMM......FFM.........", ".....WWFF.........FFFMM...FM....MMWWWWWFFF.....FFMM.....FFFF", "F....MMF...T.........C.....C....MMWWFFFF......FFFMM....FFWWW", "FF...MMF........................MM4...........FMMMC....MWWWW", "MFF...C.......................................MMMC.....MWW..", "MMF.........FF....FF......................T............MM...", "MM........FFFWWWWMMM.......................................F", "WW.......CMMWWWWWMM......FFFWWWWFFF........................F", "WW........MMWW4..........NWWWWWWWWN.......................FF", "WWW......................NWW4..4WWN...FFF.......FMMM......FM", "WWW4.....................NWW....WWN..FFMM......FFWWM......MM", "WWWWW...FF.........FFM...............FMMM4.....FWWW......4MM", "WWWWWWWMMFF....1..FFMM......2.2.....FFMMMM...1.FWW....FFMMMM", "WWWWWWWMMMFF......MMMMM.............FMMMMMM....FWW..FFFMMMMM"], "Survival_21": ["..........................MMMMMMMM..........................", ".FF.FF.FF.FF.FFDFF.FF.....MMFFFFMM.....FF.FF.FF.FF.FF.FFDFF.", ".FF.FF.FF.FF.FF.FF.FF.....MM.4..MM....DFFDFF.FF.FF.FF.FF.FF.", "...MMM4..TMMD..4MMT......................4MM...DMM4...MMM...", ".FFMM.....FF.FF.................D............FF.FF.....TMFF.", ".FF.......FF.FF..............................FF.FF.......FF.", ".......B..................YYFFFFYY.............T....B.......", ".FF...............MMM.....YCFFFFCY.....MMM...............FF.", ".FF....FFFFFFFFFMMMM..........1.........MMMMFFFFFFFFF....FF.", ".....MMYNNNNFFFFMMY..........2.2.........YMMFFFFNNNNMMM.....", ".....MMMY......D............................D.....DYMMM.....", "MM.........................D....D..................FFFF.....", "MM......D................YY......YY................FFFF.....", "FF..............1........MMFF..FFMM........1................", "FF.........CFFFF.......MMMMFF..FFMMMM..........MMM........MM", "FF.....4...YYYTF....FMMMM4........4MMMMF......CMM.....4...MM", "FF..................FMMMF..........FMMMF..................YM", "MM.................FFFFFF..........FFFFFF.................MM", "MM..D..............FFFFF............FFFFFYY...............MM", "YM...............TMMMFF..............FFMMMT.......MC..FFFMMM", "MMMM...FTYYY........MF.......44.......FMD........MM...FFMMMY", "..MMM..FFFFC...............C....C...............YMM...FYMMD.", ".............2.2........NNNN....NNNN........2.2.............", "..........1............DWWWN....NWWW.............1..........", "................M.......WWWFFFFFFWWW.......M................", "...............4M.......TWWFFFFFFWWT.......M4.......CC......", "D............MMMM..........................MMMY.....NNNN....", "FF..TMMMT......MMYFFFFF.................CMYMM...FF..N.....FF", "FF...FFF.......MMYYYYFF...................MMC...FF........FF", "FF4..FFF...........YC.....M..4...........................4FF", "FF4..FFF.................CM...4..MY......................4FF", "FF...FFF.................YM......MC.............FF........FF", "FF..TMMMT........................M..............FF..N.....FF", "..............CMM...................FFFFFFMMMC......NNNN....", "...............MMMM.................FFYYYMMMM.......YC...D..", "...............4MYMMYY.....FFFFFF.......CMM4........C.......", "..........1.....MYC........FFMMFF.........Y......1..........", "....MMM.........MM.........WWMMWW........................MYM", "....MM..........MM.........WWWWWW........................MMM", "FFFFFF........YYMM....C......44......CC............NNN...MMM", "FFFFFF.........YMM....YC............CYY..........FFWWW.....M", "YM......YY............NNNN........NNNNY.......FFFFFWWW.....M", "MM......YYC...................................FFFFFFFF.....M", "MM........CC..................................WWWFFFFF.....M", "MY....4....YY................................NWWWFF....4.FFM", "MY.........YY.......MMMMM....FF....MMMMM.....NNNN........FFM", "MM..............1.....YMM4FF.FF.FF4MMM.....1.............FFM", "MMFFFF..................MMMF.FF.FMMM........................", "FFFFFFF........2.2......MYMF.FF.FYYM......2.2...............", ".....MMMM..........................................CMMM.....", ".....MMMNNNNFFFFMMM......................MMMFFFFNNNNYMM.....", ".FF...FFFFFFFFFFMMMM.........1..........MMMMFFFFFFFFFF...FF.", ".FF...............MMM..................MMMD..............FF.", "........................NNNN....NNNN.......................T", ".FF.......FF.FF.........YY........YY.........FF.FF.......FF.", ".FFMT.....FF.FF.........C..........C.........FF.FF.....MMFF.", "...MMM...4MMT...MM4...........4...........MM4..TMM.D.4MMM...", ".FF.FF.FF.FF.FF.FF.FF.....FFFFFFFF.....FF.FF.FF.FF.FF.FF.FF.", ".FF.FF.FF.FF.FF.FF.FF....DMMFFFFMM.....FF.FF.FF.FF.FF.FF.FF.", "...............T..........MMMMMMMM.........................."], "Survival_22": ["CC..........FFT......FFFFFFFFFFFFFFMMMMFFFFFFFFFFFFWWWWWWWWW", "C.......................FFFFFFFFFFFMMMFFFFFFFFFFFFFFWWWWWWWW", "..4........................FFFFFMMMMMFFFF...FFFFFFFFFFFFWWWW", "......WW..........1...........FFFMMMFFF.........FFFFFFFFFWWW", ".....WWWWM.....................FFFFFFF............FFFFFFFWWW", "F....WWMMM.....................FFFF.........Y......FFFFFFWWW", "FF.....T...............4FFY...FFF.......1...Y4.....FFFFFMMWW", "FF..............YY.....FFYY...FFMM..........YYYC....FFFFMMMW", "F................YY.....YY....MMMM........2.........FFMMMMMM", "..........MMFF....YYY........MMM........2..........MMMMMMMMM", "..........MMMFF..............MMM......T...........MMMMMMM...", "....1......MMMM..............MMM4...............FFFMMMM.....", ".......2.....4...........CCWWWWWWYY...........MFFFFFM.......", "...................C....YYWWWWWWWWY......MM..MMMFFFF........", ".........2.......MMM....YWWWW4.WWWW....MMMM4.MMMMF......1...", "..............FFMM.....................FFMMMMMM.............", "...YFFF......FFMM......................FFFMMMM4.............", "...YYYFF.....FMM4............CC.........FFFMMM......T......F", "....4YYY.....FM.........................4FFMMM............FF", ".......YYT...CM....YYY...................FFFMM............FF", "...................YFF....................FFM............FFF", "F........................WWW....WWW........F............FFFF", "F......................WWWWWFF..WWWWW...............MFFFFFFF", "FF....................WWWWFFFF...WWWWW..............MMFFFFFF", "FFT...................WWNNFFFF....CMWW...............MMMF4FF", "FF...................WWNNFFFF....FFMMWW..............FMMFFFF", "FFF.........YWWY.....WWCFFFF.....FFFMWW......WW......FFMMMFF", "FFF..1......YWW4......WFFFF......FFFCWW......WW.......FFMMMM", "FFFF......YYYWWF......FFFF...44..............WW4...2..FFFFMM", "FFFF........WWWF......FF....4MM4...........YYWWW.......FFFFF", "FFFFF.......WWWYY...........4MM4....FF......FWWW....2...FFFF", "MMFFFF......4WW..............44...FFFF......FWWYYY......FFFF", "MMMMFF.......WW......WWCFFF......FFFFW......4WWY......1.TFFF", "FFMMMFF......WW......WWMFFF.....FFFFCWW.....YWWY.........FFF", "FFFFMMF..............WWMMFF....FFFFNNWW..................FFF", "FF4FMMM...............WWMC....FFFFNNWW....................FF", "FFFFFFMM..............WWWWW...FFFFWWWW....................FF", "FFFFFFFM...............WWWWW..FFWWWWW......................F", "FFFF............F........WWW....WWW........................F", "FFF............MFF.....................YY...................", "FFT...........MMFFF...................YYF....MC....YY.......", "FF.....2......MMMFF4...................FF....MF.....YYY4....", "F.............MMMFFF.........CC............4MMF.....FFYYY...", ".....2.......4MMMMFFF......................MMFF......FFFY...", ".............MMMMMMFF.....................MMFF..............", "...1......FMMMM.4MMMM....WWWW.4WWWWY....MMM.................", "........FFFFMMM..MM......YWWWWWWWWYY....C...................", ".......MFFFFFM...........YYWWWWWWCC...........4.............", ".....MMMMFFF...............4MMM..............MMMM......1...F", "...MMMMMMM..................MMM..............FFMMM.........F", "MMMMMMMMM...................MMM........YYY....FFMM........FF", "MMMMMMFF..................MMMM....YY.....YY...............FF", "WMMMFFFF....CYYY..........MMFF...YYFF.....YY...............F", "WWMMFFFFF.....4Y...1.......FFF...YFF4...............T.......", "WWWFFFFFF......Y.........FFFF............2........MMMWW.....", "WWWFFFFFFF............FFFFFFF..............2......MWWWW.....", "WWWFFFFFFFFF.........FFFMMMFFF...........1.........WWW......", "WWWWFFFFFFFFFFFF...FFFFMMMMMFFFFF........................4..", "WWWWWWWWFFFFFFFFFFFFFFMMMFFFFFFFFFFF.......................C", "WWWWWWWWWFFFFFFFFFFFFMMMMFFFFFFFFFFFFFF.......FF..........CC"], "Survival_23": ["WWWWWWWWWWFF...........FXMM.......FFMMFF...............FCWWW", "WWWWWWWWWWFF.....FFF...FMM...1.....FMMFF...............FF4WW", "WWWWWWWWFFFF...CFFMM...FM4..2.2....F4MMF.....1..........FFFW", "WWWWWWWWFFFF.1.MMMM4....T...WWWW...FFMMFF................FFC", "WWWWWW4FFFF.................WWWW....FFM4F.................FF", "WWWWWWFFFF...........................FMMT....CNNNNC.......FF", "WWWWFFFFF.................................................FF", "WWWWFFFF.............T....................................FF", "WW4FFFF......CM.....FM......NNNN.........................FFM", "WWFFFF......MMM....FFM......................MM4.........FFMM", "FFFFF.............FFFMM...............FF....MWWFF......FFMMX", "FFFF..............MFF4M..............FFFF...TWWWFF.....FMMXX", "..................MFFFM....FFFFFF....FFFF....WWWWF.....TM4..", "..................M.FFF..WWWFFFFWWW...FFC.....WWWW..........", ".1.....FFFMM......MMFFF..WWW4FF4WWW............WWW.......2.2", "2.2...FFFFFM.......MFF....WWWWWWWW..............WWM.......1.", ".....FFFFFFF..............WWWWWWWW..............TMM.........", ".....MMMM4FFF.............TMFFFFMT.....FFF..................", "........MMMFF..........................MFFF.................", "..........MMT...FFF....4...............MMFF.................", "................FWW...MMM...............MMF...XXX...........", "................CWW...MFF.........MM.....T....XX............", "...FFNNNN.......WWW....FF....NNN..MF.........XX....NNNNFF...", "...FFWWWT.......WWW............4..FFF..............TWWWFF...", "...FFWWW........WW4................FFF4.............WWWFF...", "...FFWWF........WW......FFMM........FFFX............FWWFF...", "...XCWWF...YY...WWW....FFMMMCF.......FXX.......YY...FWWCX...", "...XXWWF...FF...WWW...TXXXM4FF.................FF...FWWXX...", "...4MWWF...FF...CWW......FFFFFF................FF...FWWM....", "....MWW4...FF...FWW......FFFFFFF..........FF...FF...4WWM....", "....MWW4...FF...FFF.........FFFFFFF......WWF...FF...4WWM....", "....MWWF...FF................FFFFFF......WWC...FF...FWWM4...", "...XXWWF...FF.................FF4MXXXT...WWW...FF...FWWXX...", "...XCWWF...YY.......XXF.......FCMMMFF....WWW...YY...FWWCX...", "...FFWWF............XFFF........MMFF......WW........FWWFF...", "...FFWWW.............4FFF................4WW........WWWFF...", "...FFWWWT..............FFF..4............WWW.......TWWWFF...", "...FFNNNN....XX.........FM..NNN....FF....WWW.......NNNNFF...", "............XX....T.....MM.........FFM...WWC................", "...........XXX...FMM...............MMM...WWF................", ".................FFMM...............4....FFF...TMM..........", ".................FFFM..........................FFMMM........", "..................FFF.....TMFFFFMT.............FFF4MMMM.....", ".........MMT..............WWWWWWWW..............FFFFFFF.....", ".1.......MWW..............WWWWWWWW....FFM.......MFFFFF......", ".....2.2..WWW............WWW4FF4WWW..FFFMM.2.2..MMFFF.....1.", "..........WWWW.....CFF...WWWFFFFWWW..FFF.M..................", "..4MT.....FWWWW....FFFF....FFFFFF....MFFFM..................", "XXMMF.....FFWWWT...FFFF..............M4FFM..............FFFF", "XMMFF......FFWWM....FF...............MMFFF.............FFFFF", "MMFF.........4MM......................MFF....MMM......FFFFWW", "MFF.........................NNNN......MF.....MC......FFFF4WW", "FF....................................T.............FFFFWWWW", "FF.................................................FFFFFWWWW", "FF.......CNNNNC....TMMF...........................FFFFWWWWWW", "FF.................F4MFF....WWWW.................FFFF4WWWWWW", "CFF................FFMMFF...WWWW...T....4MMMM.1.FFFFWWWWWWWW", "WFFF..........1.....FMM4F.........4MF...MMFFC...FFFFWWWWWWWW", "WW4FF...............FFMMF.....1...MMF...FFF.....FFWWWWWWWWWW", "WWWCF...............FFMMFF.......MMXF...........FFWWWWWWWWWW"], "Survival_24": ["MMMMMC.............MMMMMMMMFFMMMMMFFF..FFFF..FFMMMMMM..FFFFF", "MMM..................MMMMFFFF.YMMFFF....FFF..FFMMMMC.....4FF", "MY4...................MMMFFF....................MM.........F", "Y........NNN..1........MMFF.................................", ".......................FFFF.......................2.2..1....", "......................FFFF.......4FF....XC..................", "....F..C.........C....FFF...YY..FFFF..XXXWWWWWFF............", "...FFFXXXX......YY...XXX.........FF...WWWWWWWWFFF.........CC", "....FFFXWWW4..........4M..............WWWWW..YNNN.......MMMM", "........WWWW.........................WWW4...............XM..", "........WWWW.........................WWW....................", "........4WWWMM..............XXNNN......T....................", "............MFF.....T.......MX..........................FF..", "............MFF...................................CC...FFF..", "...1.2.2....FF...................1.............FMMMMM..FF...", ".............F................................FFM4..........", "...................FFMM..............M......TFFFM...........", ".....YC............FFFM...........FFMMM....FFFF.............", "....XXXXXX..........FFMMM.....CMFFFFFMM.....FF.........X....", ".........X..........FFF......YMMM..FFFMM..............XXX...", "................CY...FF.....MMMM......................XX4...", "..............XXXM.............................C......XX....", "...............XM.............................YYYC....XX4...", "......FF..44....................................C......XX...", "...XXFFFF............Y.......CX4.........XX............XF...", "...XXFF........FF...XX4.......XXXX......XX.............FFF..", "...XFF........FFF...XXXXX.....X.......XXX.....1..2.2....FFF.", "..........XX...FFF...................FFF.................FFF", ".........CXX....F...................FFF..........NNN.....XFF", "........MMM.............................................XXXX", ".......................XXXX.......XNNN......F.............XX", "..................CY....4XX.......Y4.......FFF..............", "................XXXMFF......................FFFFM...........", "......XXX....1.....FFF........................FMMMY.........", "...FFFFFC.....................X.................MMWW........", "...FFFFF...............YYC....XXXXXFF..XXXX.......WW........", "...FF.................WWC.....XX..FFFFFFFMXY......WWWWWM....", "..XFF.................WW...............FFFXX..44..WWWWWM....", "..XFF.....T........WWWWW..................C...........CM4...", "..XC..............XWWWWW...............................MM...", ".......2.2.......TXWWW........CXX...........................", ".................NNNN........XXXXX..........................", "......44....M............T....X........T.....YNNNX..........", "...........MM..............................FFFFFFX....T.....", "...T.....MMMMM.................................FFXC.........", "F.........MM.......FF.....1.....................FF......1...", "FF................FFFF..............C4.....................F", "MFF..............FFF................MMM...................FF", "MFFFF..............................CMWW.....T............FFX", "MMFFFF...............4MMMM....F...WWWWW..........4XX....FFXX", "MMMMFFF...T........NNNMM.....FF...WWWWW..........XXX....FFXX", "..MMMF.............C.........FFF..WW..............XXX....FXX", "..............M...............FFFFWW......FF.......X......XX", ".............MMM...........T...FFFWW.....CFF..............XX", "............MMMM4................XNN....CXXX..2.2.........XX", "....1.......FFMMM....T...........X4.....YX.................X", "............FFFFF........................X...1...FF......4.X", "F......T.......FF...............................FFFF....4...", "FF4................XMFFFFXMFF..................FFFXXXXX.....", "FFFF...............MMFFFFMMFFFMMC..............FFXXXXXXXX..."], "Survival_25": ["MMMMMMMMMFFFFT......FFTMMMMMMMMMMMMMMTFF.....FFFFMMMMMMMMMMM", "MMMMMMMMMFFFF.......FFFFMMMFFFFFFMMMFFFF.......FFFFMMTFFFMMM", "MMMMMFFFFFF.......1..FFFFMFFF..FFFMFFFF..1.............FFMMM", "MMMMMFFFFF.............FFFFF.2.2.FFFFF..................FFFM", "MMMMT........4.....T.....................................FFM", "MMFF........MM.....MMY........................4...........FM", "MMFF........MM....MMMMM......44.......YMM....MMMFFFFMMM...TM", "MMFF...MM...........CC...............MMMM....MMMFFFFMMM...MM", "MMFF...MM..........................MMMM..............4....MM", "FFFF...4..................................................FM", "FFF.....................NNNNN.............................FM", "FF1.................FFFFFFFYYYY..........................1FF", "FF........MMM.......FFFFFFF..CC......FFFFYY.....MMMMT.....FF", "T.........MM......4.MMM..............FFFFMM4......MMMM.....F", "..........T......TMMMMM..............YMMMMM........CMM......", "................MMMMM................CYMMM..................", "...............YMMMFF......................................T", "F.....MM.......YYYYFF.........MMT.......................FFMM", "FF....MM......................MMMT..........NNNNT.......FFMM", "FF....YMMM....................FFMM..........NWWWW.....MMMMMM", "MF......MMM.......FF....C.....FFMMMM........NWWWW......MMMMM", "MMT...............FF....Y.................FFFWWWW.......MMMM", "MMT...............MM....MY44..............FFFFFFF.......FFMM", "MM.............TWWMM....MMMM............C..FFFFFFF......FFMM", "MF............WWWWFFFFFFFFF....C........YY44.FFFMMMM.......T", "FF.....4.....NWWWWFFFFFFFFF....YYY......MMMM...FMMMMM.......", "FF....TMMT...NNNN.....WWWWW...............MM......TMMM......", "F2.2..MMMMMFF...4.....WWWWWW...............MMM......4YM.2.2.", "......MMMMFF.........NWWWT...........................M......", "......TMMT...........NNNNN.........4CY....................1.", ".1.....FF.............YC4.........NNNNN....................F", ".......FF.........................TWWWN.......C............F", ".................................WWWWW......4YY...MM.......F", "F..........MMFFFFMM..............WWWWW.....NNNN...MMM.....FF", "F..........MMFFFFMM.......YYY....FFFFFFFFFWWWWN....YMM....FF", "T............FF..FF.........C....FFFFFFFFFWWWW......MM....FM", "MFF..........FF44FF.............NNNNN...MMWWT............TMM", "MFF...MMM....FF..FF..............44YN...MM...............TMM", "MMM...TMM....MMFFFFMM..............C....FF................FM", "MMM.....M....MMFFFFMM....MMMFF..........FF......CC........FF", "MMM.......................MMFF..................NNNNN.....FF", "MFF.......................CMMF.....................YY......F", "MFF........................YMMM........FFYY.........YY.....F", "T......................................FFMM................F", "F................4MMMYC................MMMM4...............F", "F......MMMWWWFFFFMMMMMT..............MMMMMT...............MM", "F......MMMWWWFFFFMMFFFF..............MMM.......TM.........MM", "F.......TMFFFFFFFYYFFFF.........CFFFFFFF.......MM.........FF", "F.1......C................T....YYFFFFFFF.....MMMM........1FF", "M........................MM....NNNNN................4......F", "MMT......................YMM........................MMMC...F", "MMT.2.2...................MMM........................MMM...F", "M.........T....MMMMT..................CC..............MM...F", "F.......MMM......MMM.................MMMMM........2.2.....FF", "F.....4MMM........MMMM.......44.......YMM.....MMM.........FF", "F....TMMY4..............................T......4MM........MM", "FF.....................FFFFF....FFFFF.....................MM", "FFF.........FF....1..FFFFMFFF..FFFMFFFF..1...............TMM", "MMFF.......FFFF.....FFFFMMMFFFFFFMMMFFFF......FFFF...FFMMMMM", "MMFFFF...FFFFFFFF...FFTMMMMMMMMMMMMMMTFF....FFFFFFFFFFFMMMMM"], "Survival_26": ["...FFFFFFFXXXXXXXX...FF...MMMMMMMF...................CCXXX..", "...FFFFFFFXXXX.......FF.....4MMMFF...................CCXFF.4", "...FF.........................MMFFFF........44M.........FF..", "...FF.............................FMMMFFFFFMMMMM.......FFFFF", "...FF.............................MMMFFFFFMMMMMM...1...FFFFF", "FFFFFFF...........................MMM...FFMM..............FF", "FFFFFFF......WWWWC.....M..........MM....FFM..........NNNX.FF", "MMM.FFM......WWWWC...4.M..................M...........CXX...", "....FFM......WWWW......MM.......................XX.....XX...", "..4.FFM...4..WWWW...FFFMM....FF........T.......XXX..........", ".....MM......YYY....FFMXMMM..FFXX..............FFY..........", ".....MMFFF..........FFMM.4...FFFF..2.2.........FF...........", "....XXMXFF..........FF.......FF..........1.....FFFFF.......M", "....XMMXXF..........FF.......FF......T.........FFFFF.......M", "....XWWWMM....CC...XFF.....................C...FF.XX......MM", "F....WWWWWW.......XXXX.....................XXX....XX.....MMM", "F....WWWWWW.......XX...............MM......YYX..........MMMM", "F........................XXXX.1....MMF..................WWMM", "F....1........T..........MM........MMF...............4..WWWW", "FFFF.....2.2.....1.......MM.........MFFFFF..............WWWW", "FFFF.....................XX..........FFFFF...4...FF.........", "YNNNY..................................FXX.......FFFF.......", "....WWW....T..................FFMMMMM..FXX.......FMFF.....MM", "....WWW.......................FFMMMMM.........FFFFMMM.....FF", ".4..WWWYFF........MMMM.FF..MM.FFF...M.........MMMMMMMMM..FFF", ".....MMCFF........MMMMMFF..YM.FFF...M..........MMMMM.....FWW", ".....MMFFFFF......MMFFFFF...4.......M....MMM.......M.....FWW", "........FFFFFFF........FF......M.........MM..............WWW", "WW........XFFFF........MM......M.........MM..........4...WWW", "WWW.......XXNNN........MM...MMMM..4MMM..MMM..............MMM", "WWW...............MMM..MM4..MMMM...MM........NNNXX.......MMM", "MFFF..4............MM.......M......MM........FFXXX..2.2..FFM", "MFFF...............MM.......M......FFFFF.....FFFFF.......FFM", "MMFF........F......MM...M......4...FFFFFMM...FFFFFFFFMM...FM", "MMFF......FFFX..........M......MY....FMMMM...FF...FFCMM...FM", "MFF.......MMMM..........M..FFFFMM....FMMMM........FFYYM...FM", "MF...MMMMMMMM...........MMMMFFFFF.......MM................FF", "MF......MM........XXFF..MMYMFF..........M.................FF", "MFF......M........XXFF......FF..........C........T.....FFFFF", "MMF...........4...FFFFF.....FF.........................FFFFF", "MMM..................FF..........MM.......1...............FF", "MMM...4..............FFM.........MM...........T....Y..1...FF", "MM...................FFM.....1...MMM..............MY......FF", "M.............XYY......MM.......XMMM.............MMM......FF", "MF.......XXF..XXX......MM........Y........................MM", "FF......MXMFFFFFC.....MMM........Y.......MMMMM.........MMMMM", "FF.......FFFFFFF......MM4..............MMMM.FF.......MMMMMMM", "FFMMT......FF.....1...M...............MMM4............MMXFFF", "FFFF.......FF.........M...............................MMXFFF", "..........YFF.....T........WWW.....................4......FF", "..........XXX..............WWWMMFF.........WWWWC..........FF", "...XX.....XX...............WWWMMFF.........WWWWC..........FF", "...XXC...............T.....WWWWMMFFFF.2.2.YWWWWC.....FFFFFFF", "...XNNN....2.2...M.........WWWWMMMMXX.....YWWWW......MMXXM..", "................MMM..............MM..................MMM4...", "FFFF....1.....FFMMM..................................FMM4...", "FFFF..........FFMMMMM..4...............4.............FMM....", "..FF..........FFFFFMM......MFFFF............M........FFF....", "4.FFXCC...................MMFFFF...........MMMM......FFF....", "..XXXCC...................MMMMFFFFFF.......MMMMMM..........."], "Survival_27": ["XXXXFFF.......XXXXFFFFFFFMMMMMMMMC.................YXXXFFFXX", "XYTFFF.........XT..FFFFFFFFYYYXM....................XXFFFFFX", "XYFFF...............4FFFFF..TMM.....................FFFFFFFX", "XMFFF...............MMMF.............M4...FMMYY......FFFFF.T", "XMFF........MMY......YMM...1.........MMMFFFFMMM......FFF....", "MY4....1...FFMM......YYM............MMMMFFFFFM....1..FFX....", "MYY.......FFFFF.......CM.....CMM.....M...............TMM....", "MXC......FFFFF.........M.....MMM.....................MMMM...", "MX......MMFF....XXX...........MMM................M....4M....", "M......MMM.....XXX........2.2.MM......M.......CMMM.....M....", "T.............XXC.............4......MMYY.....YYMM..........", ".........................M............MMYC......M...........", ".....MMM................TMMM...........XMM.................M", "....MMYC.........M4.....XMY.......M......................YMM", "...MMYY........TXMMYC...MM......CYM..............MTFF...CYMM", ".............MMMMFFFF...X......MMMMMFFFF........MMMMFF....MM", "...............MFFFF.............MMFFFFF4MMM.....MMMFF.....M", "...1...........FFFF.................FFFMMMYC.......MMF.....M", ".....FMM...............................TMMY........T........", "....FFMM...................MMY.........................1....", "..MMFFMMC............NNN....MMMY............................", "..MYFFFMMC....FTYY...NWWW...4MM4...TWWW...FFFY4...........TX", "...FFFFFM4...FFMMY....WWW....FFF...WWWW...FFMMMT..........FX", ".............FFFMX....WWW...FFFF...WWWW...FFMMMM..........FF", "............FFFFFX....WWW...FFF....WWWY...FFFCYMX....YYM.FFF", "M..........FFFF........NN...XMY.....NNN.........X...CYMMFFFF", "MY...XX....FFM..............FMYC....................MMMFFFFF", "MM...XXC...FMM.............FFMMM.........................FFF", "M....TXY....MT.....M4......FFFF4.......4..MMM.....2.2.....FF", "......XXX.........TMMYY....FFFFF.....MMMMMMY................", "................YMMMMMM.....FFFFF....YYMMT.........XXX......", "FF.....2.2.....MMM..4.......4FFFF......4M.....TM....YXT....M", "FFF.........................MMMFF.............MMF...CXX...MM", "FFFFFMMM....................CYMF..............MFF....XX...YM", "FFFFMMYC...X.........NNN.....YMX...NN........FFFF..........M", "FFF.MYY....XMYCFFF...YWWW....FFF...WWW....XFFFFF............", "FF..........MMMMFF...WWWW...FFFF...WWW....XMFFF.............", "XF..........TMMMFF...WWWW...FFF....WWW....YMMFF...4MFFFFF...", "XT...........4YFFF...WWWT...4MM4...WWWN...YYTF....CMMFFFYM..", "............................YMMM....NNN............CMMFFMM..", "....1.........................YMM...................MMFF....", "........T........YMMT...............................MMF.....", "M.....FMM.......CYMMMFFF.................FFFF...........1...", "M.....FFMMM.....MMM4FFFFFMM.............FFFFM...............", "MM....FFMMMM........FFFFMMMMM......X...FFFFMMMM.............", "MMYC...FFTM..............MYC......MM...CYMMXT........YYMM...", "MMY......................M.......YMX.....4M.........CYMM....", "M.................MMX...........MMMT................MMM.....", "...........M......CYMM............M.........................", "..........MMYY.....YYMM......4.............CXX.............T", "....M.....MMMC.2.2...M......MM.......2.2..XXX.....MMM......M", "....M4....M................MMM...........XXX....FFMM......XM", "...MMMM.....................MMM.....M.........FFFFF......CXM", "....MMT...............M.....MMC.....MC.......FFFFF.......YYM", "....XFF..1....MFFFFFMMMM............MYY......MMFF...1....4YM", "....FFF......MMMFFFFMMM.........1...MMY......YMM........FFMX", "T.FFFFF......YYMMF...4M.............FMMM...............FFFMX", "XFFFFFFF.....................MMT..FFFFF4...............FFFYX", "XFFFFFXX....................MXYYYFFFFFFFF..TX.........FFFTYX", "XXFFFXXXY.................CMMMMMMMMFFFFFFFXXXX.......FFFXXXX"], "Survival_28": ["FFMMMMFFFFFFFFFC.........CC......CC.........CFFFFFFFFFMMMMFF", "FFFMMFFFFFFFF..................................FFFFFFFFMMFFF", "FFF................FFFF..............FFFF................FFF", "FF.................FFFF..............FFFF.................FF", "FF..............1..FFMMM.....MM.....MMMFF..1..............FF", "FF.................FFMM.....FFFF.....MMFF.................FF", "FF.......FFF................FFFF................FFF.......FF", "FFF....4MMMF..............FFFFFFFF..............FMMM4....FFF", "FFF...MMMMM...............FFFFFFFF...............MMMMM...FFF", "MM....MMMF.........MM...MMM..44..MMM...MM.........FMMM....MM", "FF.....FFF...4.....MFFFFM..........MFFFFM.....4...FFF.....FF", "F...........MMM...FFFFF..............FFFFF...MMM...........F", "F...........M..................................M...........F", "FF........................................................FF", "FF.........2.2.......MMMFFFFFMMFFFFFMMM.......2.2.........FF", "MM.............M.....M....FFMMMMFF....M.....M.............MM", "MM..1.........MM............................MM.........1..MM", "FF........................................................FF", "FF........................................................FF", "FFFFFFMMM............4....MM....MM....4............MMMFFFFFF", "FFFFFFMMM.....MM....MM....MM....MM....MM....MM.....MMMFFFFFF", "MMCFFFFF......MFFFFFMM................MMFFFFFM......FFFFFCMM", "MMCFFFFF.......FFFFFM..................MFFFFF.......FFFFFCMM", "......MM.......FF..........FFFFFF..........FF.......MM......", ".......M.......FF.......MFFFFFFFFFFM.......FF.......M.......", "...............MM..MM...MM...MM...MM...MM..MM...............", "M..................MFF................FFM..................M", "M..................MFF................FFM..................M", "MM.......M.........MFFFF............FFFFM.........M.......MM", "MM...MFFFMMM4...1..MMFFFM....MM....MFFFMM..1...4MMMFFFM...MM", "MM...MFFFMMMM4.....MMFFFM....MM....MFFFMM.....4MMMMFFFM...MM", "MM.......M.........MFFFF............FFFFM.........M.......MM", "MM..............FF.MFFF..............FFFM.FF..............MM", "M..............MFFFMM..................MMFFFM..............M", "M......2.2.....MFFF........FFMMFF........FFFM.....2.2......M", "...............MM.......MMFFFFFFFFMM.......MM...............", "...............MM.......M..........M.......MM...............", "..FFFFMM....M........M................M........M....MMFFFF..", "..FFFFFM...MM.......MM................MM.......MM...MFFFFF..", "FFFF.......FFFF.....MM....MM....MM....MM.....FFFF.......FFFF", "FFFF.........FFFM....4................4....MFFF.........FFFF", "MMM............MM..........................MM............MMM", "MMM......................................................MMM", "FF........................FFFMMFFF........................FF", "FF..1...MM............MMFFFFFMMFFFFFMM............MM....1.FF", "F........M...MMM..FFFMMMFFF......FFFMMMFFF..MMM...M........F", "F............MMFFFFFFF................FFFFFFFMM............F", "F............................2.2...........................F", "FF........................................................FF", "FF.....FFF....M....MM...M..........M...MM....M....FFF.....FF", "MM....MMMF...4MM...MM...MMM..44..MMM...MM...MM4...FMMM....MM", "FFF...MMMMM...............FFFFFFFF...............MMMMM...FFF", "FFF....4MMMF..............FFFFFFFF..............FMMM4....FFF", "FF.......FFF................FFFF................FFF.......FF", "FF..................MMMM....FFFF....MMMM..................FF", "FF..............1...FFCM............MCFF...1..............FF", "FF..................FFFF............FFFF..................FF", "FFF.................FFFF............FFFF.................FFF", "FFFMMFFFFFFFF.....MMMFFFFFFM....MFFFFFFMMM.....FFFFFFFFMMFFF", "FFMMMMFFFFFFFFFC..MMMFFFFFFM....MFFFFFFMMM..CFFFFFFFFFMMMMFF"], "Survival_29": ["MMMMMMMMMMCFFFFF..MY...............FFYMMMMMMC.........CMMMMM", "MMMC...YM..FF.....MM...............FFMMMMY................MM", "MM.........FF.....MMM..............FFFFFF.........MF......YM", "MY......FFFFF...YMMFF....C..212.FFFFF...........MMMF......CM", "M......MMMMMF....FFFF....M.....YMMMM.....MMMM....MMFFF.....M", "M.........MM.......FFFFFFMMY...MMC.......MM......YMMFF.....Y", "4.........MMM......FFF..MMMM..............M.........FFFF....", "...NNNN..........CMMM......M..............C...........MMY...", "...MMWWW......1....MM4.........WWWW4FFFFF....1.........MM4..", "...MMWWWWWW........MMMY....FFFFWWWWNNNNFF..............MMM..", "....TWWWWWW........M.......FFTYWWWWWWYYFFFFFF...YMMM........", "...........................FFMMWWWWWWMMMMF..MMMMMM4.........", "........................FFFFFNNNWWWWWC......................", "............MMY.......MMMM..........................CMMMM...", "..CMMM......4MMFFFF...MM4..............................MM...", "MMMMFFFF.....MMMMFF...MM......C...............C........YMFFF", "MM....FF.....C...FF.NNNN.....MM.............MMMMY.....NNNNFF", "MY....FFFFFF.....FFFFF.......MM.FFFF...........MMMM.......FF", "......MMMYFF.....F...........MMMMMFF..4MY.......MFF.......FF", "........MMFF...............MMMY...FF.MMMM.......MFF.......FF", "...212..MMMM......................FFFFFMMC....FFFFF...212...", "........M..........MMMM........FFFFF...MMMMMM.FF............", ".................CMMM..........YY.........FFFFFF............", "C................FFMY.....MC...MM.............FF..MMMM....FF", "YYT..............FF.......MMMMMMM.............FFMMMM......FF", "NNNN........YMMM.FF.......MMY.FFFFF.....NNNN..FFFF.M......FF", "FFMM........MMFFFFF..............FFFFF....TY.......M......FF", "FFMM....MMMMMM...FFFFF...........MMMFF.....MMM............FF", "FFFFFFF.............MM............MMFFFF...MMM.........FFFFF", ".....FF.............MMMM.....44...MMMM.................FFMMM", ".....FFFF.....4...MMM........44....M.............MMMM4...MMM", "4....MMFFFF.........M..............M....NNN........MMM.....M", "M....MMFFMM.............MMMY...........MMWW4FFFF...........M", "M....MMMMMMMM.............MM...........MWWWWWWFF...........M", "M..........MM.FFFFF.......MMMMM........YWWWWWWFFM..........M", "MY.........MM.FFWWNNNNN.................WWFFFFFFMMMM......MM", "MM.........FFFFFWWWWWMYFFFF.....FFFFM.....FFFFFFMM........MM", "MMMM.......FF...WWWWWMMMMFF.....FFMMM.......NNNNNT..........", "YY.........FF...WWWWW....FF.....FF.MM.......................", "C...1..MMFFFF............FF...C.FF.YMMM................1....", ".......MMMMM.............FF...MFFF.......4..................", ".......MM4..........FFFFFFF...MY............CM.....CY.......", "....MMMMY......MM...FFMMMMM...MM............MM.FFFFMM.......", "...............MMFFFFF..4MM....MMM..........YMMMMFFMM...YY..", ".......FFFFFFF.MMMMMFF...MM....M4.....MMM......MMFFMMMMMMM..", ".....FFFFFF.NNNN....FF..MMY..........FFMM......YMFFFFFF.CM..", "...MMMYFF......T....FFFFF..........FFFFMM.......FFF.........", "F...4MMFF........................WWWWFFMMMMM.......2.2......", "F....MMMM..2.2................WWWWWWWFFFFF.........MM.......", "FF...C.............NNNN.......WWWWWWWFF.........MMMMM...4...", "FF.................YY4............TNNNN.........MMM.........", "FFFF..........1....MM........................1....M.........", "MMFF..............MMM......MM.......4.......................", "MMMC......MY........M....MMMMM...........M.....FFF.....MMM..", "M.......MMMM.............MMM.......FF..MMM....MMMF...MMMM...", "M.......FFMMMM...........FFM......MMF...MM.....MMFFFFFF.M...", "T.......FFFFF............FFC..1....MFFF.NNNN...MMFFFF.......", ".....MFFFF........C......FF........MMFF........NNNNFF.......", ".....MMMFF......MMMFFFFFFFF........MMFF............FF.....CM", "...CYMMMMM.....TMMMMMMFF.......CYMMMMFFFFF.........FFFFMMMMM"], "Survival_3": ["FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFF...M..1..M..4.4..M.212.M.......FFFFFFFFFFFF", "FFFFFFFFFFFFFFFFF..MM.....M.......M.....MM...D..FFFFFFFFFFFF", "FFFFFFFFFFFFF.....MMM.....M.......M.....MMM.....FFFFFFFFFFFF", "FFFFFFFFFFFFF....MMMM.....MMMBBBMMM.....MMMM....FFFFFFFFFFFF", "FFFFFFFFFFFFF.....MMM.....FFFBBBFFF.....MMM.....FFFFFFFFFFFF", "FFFFFFF............MM..D..FFF...FFF..D..MM......FFFFFFFFFFFF", "FFFFFFF.......MM....M...................M....MM.........FFFF", "FFFFFFF.......M..D..M......M..4..M......M..D..M....FFF..FFFF", "FFFFFFF....4..............MM.....MM................FFF..FFFF", "FFFFFFF.............FFF..MMM..4..MMM..FFF........4.FFF..FFFF", "FFFFFFF......D...M..FFF...MM.....MM...FFF..M...D........FFFF", "FF......MM......MM.........M..4..M.........MM......M..D.FFFF", "FF.......M.....MMM....MM.D...........MM....MMM.....M....FFFF", "FF...........FFMMM..D..M.............M..D..MMMM.........FFFF", "FF...M.......FFMMM.....MM..MM.F.MM..MM.....MMM........M...FF", "FF..MMM......FF.MM...MMMM...M.F.M...MMMM...MM.FFF....MMM..FF", "FF.MMMMM..............MMM...M.F.M.D.MMM.......FFF...MMMMM.FF", "FFMMMMMMMM..........FFFMM...M.F.M...MMFFF.....FFF.MMMMMMMMFF", "FF............MMMMM.FFFM...MM.F.MM...MFFF.MMMM............FF", "FF.............MMM....MM.............MM....MMM............FF", "FF12.2...MM....MM.......................D...MM...MM..D...1FF", "FF.............M..D....D..MM..4..MM..F.......M............FF", "FF..................MM...............F.MM.......D......2.2FF", "FFMMMM...M..FFF....BM.........D......FFFMB..D.....M...MMMMFF", "FF...M...MM.FFF.....M....MM.......MM.FFFM.....D..MM...M...FF", "FF...M...........4..M....MM...4...MM.FFFM..4..........M...FF", "FF4..BB.............MM...M...FFF...M...MM............BB..4FF", "FF...BB..4...4.D...BMM.1.M..4FFF4..M.1.MMB....4...4..BB...FF", "FF4..BB.............MM...M...FFF...M...MM............BB..4FF", "FF...M...........4..MFFF.MM...4...MM....M..4..........M...FF", "FF...M...MM.FFF.....MFFF.MM.......MM....M.....FF.MM...M...FF", "FFMMMM...M..FFF....BMFFF.....FFF........MB....FF..M...MMMMFF", "FF..................MM.F.....FFF.....D.MM.....FF..........FF", "FF...........D..M......F..M.......M.........M.............FF", "FF1......MM....MM..D......MM..4..MM........MM....MM..D...1FF", "FF............MMMM....MM.............MM....MMM............FF", "FF...........MMMMMM..FFM...........D.MFF..MMMMM...........FF", "FFMMMMMMMM...........FFM...MM.F.MM...MFF..........MMMMMMMMFF", "FF.MMMMM....FFF......FFMM...M.F.M...MMFF......D.....MMMMM.FF", "FF..MMM.....FFF..M....MMM...M.F.M...MMM....M.........MMM..FF", "FF...M....M.....MM...MMMM...M.F.M...MMMM...MM....M....M...FF", "FF.......MM....MMM.....M...MM.F.MM...M.....MMM...MM.......FF", "FFFFFFFF.....FFMMM..D..M.D.........D.M...D.MMMM.....FFFFFFFF", "FFFFFFFF.....FFMMM....MM.............MM....MMM......FFFFFFFF", "FFFFFFFF.....FF.MM.........M..4..M.........MM..D....FFFFFFFF", "FFFFFFFF..D.4....M..FFF...MM.....MM...FFF..M.....4..FFFFFFFF", "FFFFFFFF............FFF..MMM..4..MMM..FFF...........FFFFFFFF", "FFFFFFFF2.2...............MM.....MM.................FFFFFFFF", "FFFFFFFFFFFFF..MM.D.M......M..4..M..D...M....MM...D.FFFFFFFF", "FFFFFFFFFFFFF..M....M...................M.....M..2.2FFFFFFFF", "FFFFFFFFFFFFF......MM...D.FFF...FFF.....MM......FFFFFFFFFFFF", "FFFFFFFFFFFFF.....MMM.....FFFBBBFFF.....MMM.....FFFFFFFFFFFF", "FFFFFFFFFFFFF....MMMM.....MMMBBBMMM..D..MMMM....FFFFFFFFFFFF", "FFFFFFFFFFFFF.....MMM.....M.......M.....MMM.....FFFFFFFFFFFF", "FFFFFFFFFFFFFFFFF..MM.....M.......M.....MM..FFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFF...M..1..M..4.4..M..1..M...FFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"], "Survival_30": ["FFFFFF..XXX...FFFFFF........XXXXX.........FFFFXXXX....FFFFFF", "FFFF.....XX.....FFF.........YY4............FFFFYX.......FFFF", "FFXX......Y.....FF..........C...................X.......4XFF", "FFXXXX..............1..................1................XXFF", "F.X4...................CYX..................4..........CYX.F", "F............X........XXXX....X....XFF..................Y..F", ".............XX.........X....XX...TXFFFXXX.....X............", "...........FFFXXX..4..............XXFFFFFXX...XXXXF.........", "M.....X.....FFFFX..................XXFF.........XXFFFFT.....", "MM...CXX..............Y............................FFFXX....", ".....XXF.....2.2......YFFFFFFFX...........2.2........FFX....", ".....XFF...........NNNNWWFFFFXXXC................1..........", ".....FF...1.....WWWWWWWWWWFF.XWWWWWWW...............4.......", ".....FF.........WWWWWWWWWWF...WWWWWWW.....................XX", ".....F.............WW............WW......XF.....YC....X....X", "............X......WW...................MMFF....XXX...X.....", "...4........XXXFF......................MMFFF..........XY....", "C......TY....YXFFF.....TX................FFFF.........MX....", "Y....XXXY.......FF....XXX....XXNNNN.......FFFX.........X....", "Y....FFXX...................CYX4...........FXXT.............", "XX...FFFX........4...........Y.......CF.....................", ".....FFF.............F...............XFF.........MFFF.......", "....WWFF......CY....FFX.............XXFFF........MMFFF.....X", "....WWFFF....NNN...FFXX......FF......WWFF.......MMMMFF....TX", "F..WWWWFFFWWWWWW...FFXY.....FFFF.....WWWWWWW...WWWWWWWW...XX", "FFFWWWWFFFWWWWWW...FXX....XFFFFFF....WWWWWWW...WWWWWWWW.....", "FFFF........WW...........MXMMFFFMXX...............WWW.......", ".F.......................XM44...4XF...............WWW.......", "........................FFF......MFF..............NNN...XF..", ".........YYC......XX...FFFF......FFFF.....4X..2.2.......XFF.", ".......YXXX......XXX...FFFF......FFFF....CXX...........XXFFF", "......CYX...2.2....X....FFM......FFF.......X...........XXFFF", ".........................FM4...44MX.............XXXT...X....", "...X..1...................XMFFFMMXM...............X..1......", ".FXX..........MM..........XFFFFFFX.....XX................4..", "FFX.....X....MM.....XF......FFFF.......FF...................", "FF...4..XT..........XFF......FF.....C.FFF...4XWWFFFFFFXX....", "FF......XX.........4XFFF............YXFF...YXXWWFFFFWWWXX...", "FF...WWWWWWW...WWWWWWWW............4YXF....WWWWWWFFFWWWWW...", "MF...WWWWWWW...WWWWWWWW....................WWWWWW...WWWWWFF.", "MM.....WWFFF...NNN..WW.......NNNN.......................FFFF", ".......FFFFF...Y...............YY.......................FFFM", ".......FFFF....Y.........X......C.....TXX................FMM", "...................T....XX...................XXYY....X.....X", "...YM......XX.....XXX.........................MXY....XX.....", "...YMM......XX....XY.........WW................XXX...XX.....", "...MX....................WWWWWW...WWWWWWWWW..........FX.....", "...M......1..............WWWWWW...WWWWWWWWW..4...1...FF.....", "................X........CXWW.....FFFFXXWW...........FF.....", ".......X.......XXFFFFX....XXY.2.2..FFFFXWW.....M.....XX.....", "......XXX..4...YXXFFFX.................X.......MM....CXX....", "......FTX......C.....XX.............4.........TMF...........", "......FFX............X4........XXFF..........NNNFF..........", ".......FF..MM............TX....XFFFFFC..........FFF.........", "F...........MM...X.......XXX...XFFFFXX....X.....FFFF.......F", "F.4M........FF...XX......FFX......FXX.....XX.....FMMM......F", "FFMMM.......FF....X..1...FFF...........1.........MMYY...M4FF", "FFMM........FFF...........FF............................MMFF", "FFFF........FFX.........................XFFF............FFFF", "FFFFFF......FYMX......................YXXXFFF.........FFFFFF"], "Survival_31": [".......FFFMMMMMMMMM......WWWWW...FFFFFFFF...WWWWW....WWWWWWW", "..........FFFMMMMMM.....4WWWWW...FF....FF...WWWWW4...WWWWWWW", ".............FFMMY......NNNC......T....T......CNNN.....WWWWM", ".FMMMMM.......FMMM............212........................WWM", ".FFFF......T...CMM4......FFFF................FFFF.........YM", "...FF...........MMMM.....FFF..................FFF.........MM", "...FFN4.................TFF.......MM.FFM.......FFT.......MMM", ".....NNNNN........................MM.FFM.............MMMMMMM", ".............T.....................FFFFM...............MMMMM", "...........1..........................MM...C............MC..", "C..T...........................C...........M..1.........M...", "M................T...MMMM......M...........M............M...", "M......FCMMMMCF........MMMMM..YM..........YM....MMM.........", "MM.....FFFMMFFF..........MMMMMMM...4.T.4..MMMMMMM..........F", "MM........MM................MMMMM.........MMMMM......T.FFFFF", "MMMM......MM...................YYY...4..YYMMM..........FMFFF", "MMYYYY....YY....YYYMMMM........FFF........FFF..........FM...", "FFFF...............MMMMMM........................MMM...FM...", "FFFF..................MFF......................MMMM....F4...", "F.....2.2.....4.......M....1...................MMM..........", "F...............T..4..........NNNNC....MMMM....MM...........", "F..MMMMMMM.............................MMM.....M........M...", "F..MM...MMFF.M..4........................M.........T...MM...", "FF.MM.4.FFFF.M.....YYMM.....FFFF.........M............MMM...", "FF.MM.....FF.MM......MMMM...FTMMMM.......MMM..........FFF...", "FF.MMM....FF.MM......M..........MM...F.........FM...........", "F..MYY..MFFFFMMYY....M.........4MMFFFF.........FM.....212...", "F.......MF..MMM................MMMMMFF.........FM...........", "F.......MF.........................FFFFF...C...FCC...MMMMM..", "F....1..MM...............MMM...............M...........CCMFF", "FF......MM...........FFMMMM4...............M.............MFF", "FF..................FFFFFMM................MM..............F", "MMYY...........YYMM..FF..MM.......NY....MMMMM.......C......F", "MM...............MMMMFF..MMMMTF...N.......YMMM......MMMM...F", "MM.....MMF.........FFFF....FFFF...N.1.....FF...............F", "M.......MF........................N..............4.4.4.....F", "M.......MF..YY........................T..................MFF", "........MF..MM....T.......T.........................MMM..MFF", "............MM........T.......FFF.........C..........CMF..FF", "..MM........MMMM..............MMMMMC......MMMMMM......MF..FF", ".4M.........MMMMMM.........MMMMMM............MMMMM.....F....", "..M......T......MMMM.....MMMMMMM...........4..MMMMMM.FFF....", ".FM..M..................CC....MM..............MM..MMMFFF....", ".FC..MC.....................4.M....T..........M.....CC......", ".FFFFMM...C.....212...........C.......FFFT....C.............", "...FFMM...MMMM.....................FFFFFF...................", "MM.FFMMMMMMM..............T.........WWWFFFF................C", "MM.FFFFFF.4......CMMM...............WWWWWW.....T.212.......M", ".....FF.........MMM.......FFFFF.....WWWWWW.................M", ".....FMMC......MMMM.....FFFFF......TWW4.....FFFF..........MM", ".....F......CMMMM......FFFFMM......YWW........FFFF.T......MM", "...............MM....T.FFWWWWWW....YMMM.......WWFFF......MMM", "...............MM.....FFFWWWWWW..............4WWFFFF.....MMM", "F..T...........M......FFMWWW4................YWWWWFF...CMMMM", "F..............M.......FMWWW.................YWWWWMF......CM", "FFF...T...M............FMYYYT......FFFF.....TYMMMMMFF.....WW", "FFF.......M......FFT...F.........FFFFFFFF.................WW", "MMMFF....CM......FWWW........1...FFMMMMFF...............WWWW", "MMMFF....MM.....FFWWW...........FFF....FFF...........WWWWWWW", "MMMFFFF.MMMM....FFWWW..........FFFF....FFFF..........WWWWWWW"], "Survival_32": ["...FF...................FFFFMMMMMMFFFF.....MMMMM.......MMMMM", "...FF.....................FFMMMMMMFF........MMM.........MMMM", "..FFFF........FFF.4MMM.....FMM.1.MF.......................MM", "...FFF........MFFFFFMMM.....................2.2...1........4", "....FFF.2.21..MMFF...................................MM.....", "....MFF.......MMM...................WW.........MFF..MMMM....", "....MMF....................FF.......WW........MMFFFFFMM.....", "....MMF...CC.............MFFF.......MMM......MMMMFFFFF......", ".....MM...CC.............MMFF..MM...MM..........FFFFFF......", "........................MMMM..MMF...............FFFMFFF.....", ".................M.............FFFF..............FMMMFF.....", "F...........FF..MMMM............FFFF...............MMM......", "F4........MFFFFMMMM..............FMMY4..FMMT................", "FF.......MMMFF.........MFFF.......MMMMFFFMMMT...............", "FFF.....FMM.F..........MMFFF......CM.FFFF.MMM..........FF..M", "MMM....FFF............FMMNNN...............MM........MFFFFMM", "MMM.1.FFF.............FFF...................NN......MMMFFMMM", "MM....CC.............FFF....................FFF....MMMMF..MM", "MM..........MFFF.....MM4..............FF....FFFFF..MM.......", "MMM.........MFFFF....MM4..............4FF...FNNNN...........", "MMM.......MMMNNN....MMC...............4M.....WWWW...........", "FFF................MMY....F......F.....MM...WWWWW.........1.", "FF........................FF....FF.....MC...WWWTF...........", "F........................FFFFMMFFFFF........WWNFFFF........M", "F........................MMFFMMFFFMM........WWN.FFFF.....MMM", "..........MMFF...........MMF.....FMMY........F...FMMM....MMM", "..........MFFFF........MMMC.......CMM.......FF.....MMM....MM", "....CC....YFFF........FMM..........MMMF.....FFF.....M.....MM", "....CC......FMM......FFFF....44....FFFF.....MMM...........MM", ".....4........M......FFF....4MM4....FFF.....MM............MM", "MM............MM.....FFF....4MM4....FFF......M........4.....", "MM...........MMM.....FFFF....44....FFFF......MMF......CC....", "MM.....M.....FFF.....FMMM..........MMF........FFFY....CC....", "MM....MMM.....FF.......MMC.......CMMM........FFFFM..........", "MMM....MMMF...F........YMMF.....FMM...........FFMM..........", "MMM.....FFFF.NWW........MMFFFMMFFMM........................F", "M........FFFFNWW........FFFFFMMFFFF........................F", "...........FTWWW...CM.....FF....FF........................FF", "212........WWWWW...MM.....F......F....YMM................FFF", "...........WWWW.....M4...............CMM....NNNMMM.......MMM", "...........NNNNF...FF4..............4MM....FFFFM.........MMM", ".......MM..FFFFF....FF..............4MM.....FFFM..........MM", "MM..FMMMM....FFF....................FFF.............CC....MM", "MMMFFMMM......NN...................FFF.............FFF.1.MMM", "MMFFFFM........MM............MMMNNNMMF............FFF....MMM", "M..FF..........MMM.FFFF.MC......FFFMM..........F.MMF.....FFF", "...............TMMMFFFMMMM.......FFFM.........FFMMM.......FF", "................TMMF..4YMMF..............MMMMFFFFM........4F", "......MMM...............FFFF............MMMM..FF...........F", ".....FFMMMF..............FFFF.............M.................", ".....FFFMFFF...............FMM..MMMM........................", "......FFFFFF..........MM...MM..FFMM.............CC...MM.....", "......FFFFFMMMM......MMM.......FFFM.............CC...FMM....", ".....MMFFFFFMM........WW.......FF....................FMM....", "....MMMM..FFM.........WW...................MMM.......FFM....", ".....MM...................................FFMM..12.2.FFF....", "4........1...2.2.....................MMMFFFFFM........FFF...", "MM.......................FM.1.MMF.....MMM4.FFF........FFFF..", "MMMM.........MMM........FFMMMMMMFF.....................FF...", "MMMMM.......MMMMM.....FFFFMMMMMMFFFF...................FF..."], "Survival_33": ["T.....YNY...TMMMMT......YMMMMMMMMMMY...FFFFF...MMMMMM......T", "......CN......MM.........MMMMMMMMMM.....FFF....YMMMMC.......", "..4.FFFN...................MMMMMM................MM....FF4..", "...FFFFN.....................MM.......................FFFF..", "..FFFF..............YY.......TT.......YY.............FFFFF..", "..FFF.........1....MMM4..............4MMM....1.......FFFF...", "YCFF.........FFFF....MMC............CMM..............TFF....", "NNNN........FFFFF....MMMMM..212...MMMMM.........MM........CM", "Y..........FFTWWF....CMM.............MM......FF.MM........MM", "...........FFWWWW..........FFL.FF.....Y.....FFF..MM......MMM", ".......C.....WWWWW........FFF..FFF.........FFF...MMMM....MMM", ".......YY....4WWWW.......FFFTWWTFFF........FFT4....MM.....MM", "T.....NNNN.....NNNNN.....FFFWWWWFFF.......................YM", "M......WWWW4.....CY........WWWWWW...............4.FF........", "MM...1.WWWWW...............WWWWWW........Y......TFFF..1.....", "MMM.....WWWWFF...........NNNWWWWNNN......MMFF...FFF.........", "........CWWTFF.............YWWWWY.......CMMFF...FF...2.2....", "..2.2...FFFFF.......C........44.......FFMMMC...........FFFFF", "........FFFF........YY................FFMM.............FFFFF", "Y................NNNNNN...............NNNN.............MM.FF", "YC...............FFFFFF................................MM.FF", "MMMFFFMMM.....................FFFF.C...............YYMMMM...", "MMMFFFMMM.....................FFTWWWW.......NNN......MMMM...", "YC....4......TWWWW............FFWWWWW.....WWWWT......MM.....", "C............WWWWW.....WWWWT....WWWFF.....WWWWW......Y4....Y", "............WWWWYY.....WWWWW....YYYFF.......WWWW..........CY", "............WWWF.........WWW....CC..........FWWW............", "...........WWWFF...FF....NNN................FFWWW...........", "FF...M....NWWWFF...FFFF.....................FFWWWN.G.MMT..FF", "FF...M....NWWWYC.4.TMMY.......4......YC...4.CYWWWN...MMT..FF", "FF..TMMH..NWWWYC.4...CY......4.......YMMT.4.CYWWWN....M...FF", "FF..TMM...NWWWFF.....................FFFF...FFWWWN....M...FF", "...........WWWFF................NNN....FF...FFWWW...........", "............WWWF..........CC....WWW.........FWWW............", "............WWWW.......FFYYY....WWWWW.....YYWWWW..........CY", "C............WWWWW.....FFWWW.....WWWW.....WWWWW......Y4....Y", "YC....4......TWWWW.....WWWWWFF...YY.......WWWWT......MM.....", "MMMFFFMMM....NNN.......WWWWTFF...C...................MMMM...", "MMMFFFMMM..............Y..FFFF.....................YYMMMM...", "YC.....TM............................FFFFFF............MM.FF", "Y.......M............................NNNNNN............MM.FF", "...............MMMM..........44........YYY......FFFF...FFFFF", "...............YY........NNN....NNN.....CC.....FFFFF...FFFFF", "..........FF...C...........YWWWWY.............FFTWWC.......T", ".........FFF.........C......WWWW..............FFWWWW.......M", ".....1..FFFT........YY...FFFWWWWFFF..T..........WWWWW.1...MM", "........FF.4......MMMM...FFFTWWTFFF.............4WWWW.....MM", ".......Y...........C......FFFK.FFF........NNN.....NNN....MMM", ".......MM....4TFF..........FF..FF.........WWWW4.........MMMM", "..M....MMMM...FFF.........................WWWWW............C", "..MM.....MM..FFF...........................WWWWFF...........", "..MMT.....MM.FF.......MM............MMC....CWWTFF...........", "..FF......MMY........MMMMM....1...MMMMM....FFFFF....NNN.....", "..FF.....2.2.........MMC............CMM....FFFF.2.2.NWWW..NN", "..FF..........1....MMM4..............4MMM....1......NWWW..FF", "........T...........YY.......TT.......YY.............WW...FF", ".....FFFMM...................MM.................M.........FF", "..4..FFFMMM................MMMMMM..............MM........4..", ".................FFF.....MMMMMMMMMM..........MMMM....NFFF...", "T...............FFFFF...YMMMMMMMMMMY.......TMMMMMC...NFFF..T"], "Survival_4": ["FFFFFFFFF..WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW.F", "FFFFFFFFFF.WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWFF", "FFFFFFFFFFBWWWW.FFFFFBWWWWWBFFFFFBF.WWWW..FFWWWWWFFWWWWWWWFF", "FFFFFFFFFF.WWWW.DFFFFFWWWWW.FFFFFFF.WWWW.FFFFWWWFF.WWWW.FFFF", "FFFFFFFF...............WWW......D.D..WW......WWW....WWW.FFFF", "FFFFFFFF....D...D......DD..D..D...D....D...D...D..D.WW..D.FF", "FFFFFFFF...DD.....D...DD............D.....D..D....DDD...D.FF", "FFFFFFFF.......D................M.....M.............D.D...FF", ".......BB..................MMMMMM..D..MMMMMM..D...........FF", "FFFF.........D...FFFFF.......MMM........MMM......D..........", "FFF........B.....FFFFF..D..........4.........D........MMM...", "FFF......D.......FF...............F..F.............B....M.D.", "FFF..........D.......F...BB...BB...4.FFF..MM......FFFFF.M...", "FFF..B...........D..4F...BBB..BBB.....FF..M...D......FF.M...", "FFF.....FFF......D..F4.....B..BBB....BFF..M.......F..FF.....", "FFF.....FFF..D....................D..FFF..M..B..4....F......", "FF...D...FF....BB....................FFF.MM.....F4......D.FF", "FFD.........BWWWWWWWB....D....FF......B..M...D..........D.FF", "FF...D..D...BWWWWWWWBD.....212.MFF..................D.....FF", "FF......FFF..DWWWWWD..FMFF.....MFF..1...........D.........FF", "FF......FFF...........FMMF..D.........FMMM...MMFFFFFFFF.D.FF", "FF.....D.FF.D...........MF.........D..FM.....MM..FFFFFF...FF", "F..DD....F...........1........MM...........D.FF..FFFF.....FF", ".....MMM.F.4...MMF......D...FFMMFF...........FF...........FF", "....DMMM....F..MMF........MMFFFFFFMMB...212..FB......MM...FF", ".....MMM...4...FFF.MFF....MMFFFFFFMM.........FF..MM..MM.....", "...................MMF...FFFFFFFFFFFF.......FFF..MM.......D.", ".........................FFFFFFFFFFFF...FFM.................", ".D..B..MMM..MMM.........FFFFFM44MFFFFF...FM............D....", ".......MMM..MMM..212....MMFFF4..4FFFMM......D..MM........FFF", ".......MMM..MMM.........MMFFF4..4FFFMM.........MM....4...FFF", "..MMM.................D.FFFFFM44MFFFFF.....1........F.F..FFF", "..MMM...........FFFMM....FFFFFFFFFFFF.........D...D..4...FFF", "..MMM..B..MMM....FFMMF...FFFFFFFFFFFF...FFM..............FFF", "F.........MMM......FF.....MMFFFFFFMM...FFMM....BB........FFF", "F.........MMM.............MMFFFFFFMM..........BBBB.......FFF", "FFF..................1......FFMMFF....B.....DWWWWWWW.....FFF", "FFF....................F......MM............DWWWWWWWD..D....", "FFF.B..T....F..T.......MM...........D..212....BB.DDDD.......", "FFF.............D......MFF..DD......DMM.....................", "FFFFFF......4F......T................MMMF................FFF", "FFFFFF..T....4...........212MFF...1...FFF......T.D....D..FFF", "FFFFFF.....F.....T..........MFF.....D......T........T.....FF", "FFFFFF..................B...MFF.D............D............FF", "FFFFFF..D..T........T............................T......T..F", "FFFFFD...........T......FFFFF..MMM..MMM..M.FF.........D....F", "FFFFFFD.......T..........FFFF....M..M....M..F4..............", "FFFFFFF..T...........T.....FF....BBBB..D.M..4F...D..T.......", "FFFFFFFDD.........T...........D..BBBB....M..............B...", "FFFFFFFF....T............FFF.....M..M....M.......T..........", "FFFFFFFF.......T........4.4....MMM..MMM..M..T........T.....F", "FFFFFFFF..D..D..............D..............................F", "FFFFFFFD..........T..D....................................FF", "FFFFFFFD.....T...........MMMM..MMM..MMM..M....M...........FF", "FFFFFFFFFB..................M....M..M....M....M..T.......FFF", "FFFFFFFFF.......B...MM......M....M..M....M..MMM..........FFF", "FFFFFFFFFFFDFFDD...................................FFFFFFFFF", "FFFFFFFFFFFFFFDFFFDFD..FFFFFFF.............FFFFF...FFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFF..FFFFFFFFFFFF...FFFFFFFFFF...FFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFF..FFFFFFFFFFFF...FFFFFFFFFF...FFFFFFFFF"], "Survival_5": ["FFFFWWWWWFFFFFFFFFFFFFFFFFMMMMMMMMFFFFFFFFFFFFFFFMMMMMMMMFFF", "FFFFFWWWWFF........FFFF..FFMMMMMMFF..FFFFD......FFMMMMB.FFFF", "FFF4..WWNF..........FF.B..FFMMMMFF....FF.......D.....T..4FFF", "FF4...WWNF.................FMMMMF........T....B..........4FM", "WF.....WN......1.T..D......FFMMFF....D......1.............FM", "WW.........D.D.........NNN..FFFF..NNN....D........NNN......M", "WWWW..D.....D...D...........2.2.............T.FM..C.....D.MM", "WWWWW.DTWWT...T....FFFFF............FFFFF.....FM.......N..MM", "WWNNND.WWW.........FMMMF...C....C...FMMMF........DDD...N.DMM", "FFFF...WWW...........4MFD.....D...D.FM4..........D.D..CN.DMM", "FF.....T....NNN..D....MF..FF....FF..FM.......NNN..D.......FM", "F...........TWW.....BMMF..XX....XX..FMM...FFFWWT..........FF", "F......DD...WWWW......D...M......M.......FFFWWWW....MMT....F", "F.....D....WWWWWW.........M...4..M.......FFWWWWWW...FF.....F", "FF.........WWWWWW...D.....M..4...M......BFFWWWWWW.........FF", "FFF.1...D..TWWWW4........TM......MT......FF4WWWWT...D..1TFFF", "FFFF.........WW4......FF..XX....XX...T....FF4WWNN.......FFFF", "FFFF.........NN.....TFFF..FF..D.FF.........FFFFFF.......FFFF", "FFF..DNNNN..........FFFF................T...FFFF...XXXX..FFF", "FF......4N......D..FFFFF...NNNNNN...T..............X4.....FF", "F..................FFFFT...FFFFFF..........T.....D.........F", "F...N......D...........................D..............DX...F", "F...NNNNC....T................................T....CXXXXD..F", "FF........D.....WWW...D..TWWW..WWWT......WWW........B.....FF", "FF..............WWWC....WWWWW..WWWWW....TWWW....D.........FF", "FFF.............WWWN...TWWWWW..WWWWWT...FWWW.........D...FFF", "MFFF.....WWWW...NNNN...WWWWW....WWWWW...FFFC...WWWW.....FFFM", "MMFFF....4WWWT..FFFF.D.WWWW......WWWW.........TWWW4....FFFMM", "MMMMFF.....WW..D.......WWWNF.44.FNWWW..........WW.....FFMMMM", "MMMMMF.T...............WWWNF.44.FNWWW......1..2.2.D.T.FMMMMM", "MMMMMF.T.2.2....1..D..DWWWNF.44.FNWWWD.............DT.FMMMMM", "MMMMFF.....WW..........WWWNF.44.FNWWW..........WW.....FFMMMM", "MMFFF....4WWWT.........WWWW......WWWW...FFFF..TWWW4....FFFMM", "MFFF.....WWWW...CFFF...WWWWW....WWWWW...NNNN...WWWW.....FFFM", "FFF.............WWWF...TWWWWW..WWWWWT...NWWW.............FFF", "FF....D......D..WWWT..D.WWWWW..WWWWW....CWWW..............FF", "FF.......D......WWW......TWWW..WWWT......WWW........B.....FF", "F...NNNNC.D..T................................T....CXXXX...F", "F...N................T....................D...........DX...F", "F..........D.....T.........FFFFFF...TFFFF..................F", "FF.....4N..................NNNNNN...FFFFF.........X4......FF", "FFF..NNNN...FFFF......T.............FFFF..........XXXX...FFF", "FFFF....B..FFFFFF..T.............D..FFFT.D...NN.........FFFF", "FFFF.......NNWW4FF......D.XXFFFFXXD.FF......4WW......D..FFFF", "FFF.1......TWWWW4FF...T..DXXFFFFXX.........4WWWWT......1.FFF", "FF......D..WWWWWWFFD......FFF4.FFF...D.....WWWWWW.........FF", "F..........WWWWWWFFD....D.FFF.4FFF.........WWWWWW..........F", "F....FFF....WWWWFFF.......FFFFFFFF.......D..WWWWB...FFF....F", "F....NNN....TWWFFF...NNF..MMFFFFMM..FNN......WWT....XXX....F", "M...........NNN.......NF..MMFFFFMM..FN.......NNN....X.....BM", "MM..DDD..D...........4NF...C....C...FN4...D...............MM", "MMM................FNNNF............FNNNF...............D.MM", "MMMM.......NF.T....FFFFF............FFFFF...T..FMM........MM", "MMMM.......NF..................................FM....NNN...M", "FFFF.......NF..........NNN..FFFF..NNN..........FM.D..NC....F", "FF..........2.21.T.........FFMMFF.B..D....T.12.2.....N.....F", "FF4...MMD......D.......D...FMMMMF................D.......4FF", "FFF4..MMM......D....FF....FFMMMMFF....FF................4FFF", "FFFFFFMMMM.........FFFF..FFMMMMMMFF..FFFF.........MMM...FFFF", "FFFFFFMMMMMFFFFFFFFFFFFFFFMMMMMMMMFFFFFFFFFFFFFFFMMMMMFFFFFF"], "Survival_6": ["MMMMMMM..MMMMMMMMMMMMMMMMMM..MMMMMMM..MMMMMMMMMMMMMMMMMMMMMM", "MMMMMMM.2MMMMMMMMMMMMMMMMMM..MMMMMMM..MMMMMMMMMMMMMMMMMMMMMM", "MMMMMMM.1MMMMMMMM.......MMM.1MMMMMMM.1MMMMMMMMMMMMM.......MM", "MMMMMMM.2MMM............MMM..MMMMMMM..MMMMMMMMMMMMM.......MM", "MMMMMMM..MMM.......444..MMM..MMMMMMM..MMMMMMMMMMMMM.....D.MM", "MMMMMMM..MMMFFMMM............MM...MM.................44...MM", "MMMMMMMFFMMMFFMMM.D...D......MM...MM.................44...MM", "MMMMMMMFFMMM..MMM.......MMM...........MMMMMM..MMMMM.......MM", "MMMMMMM.............D...MMM...........MMMMMM..MMM...D.....MM", "MMMMM...................MMM...4FF.4...MMMMMMFFMMM.........MM", "MMMMM.........MMMMMMMM........FFF.....MMMMMMFFMMM...MM..MMMM", "MMMMMMM...4...MMMMMMMM..........................M...MM..MMMM", "MMMMMMM.......MMMMMMMM..MMM.....................M...MM..MMMM", "MMMM..........FFF.......MMM..MMFFMMMM..MMMMM........MMFFMMMM", "MMMM..........FFF..D....MMMFFMMFFMMMMFFMMMMM...D...MMMFFMMMM", "MMMM..MMMM..MMMMM.....MMMMMFFMM..MMMMFFMMMMM.......FF...MMMM", "MMMM........MMMMM..4...................MMMMM..4....FF...MMMM", "MMMM........MMMMM....................D.MMMMM......MMMM..MMMM", "MMMM..MMMM.............MMMFFMMMMM...............D.MMMM..MMMM", "MMMMFFMMMM..............MMFFMMMMM..4..............MMMM..MMMM", "MMMMFFMMMM..MMMMM..MM...MM..MMMMMD.....MMMM..MMM..FF....MMMM", "MMMM..MMMMFFMMMMM..MM..MMM.............MMMM..MMM..FF....MMMM", "MMMM..MMMMFFMMMMM..MM..MMM.......FF..FFMMMMFFMMM..MMMM..MMMM", "MMMM..MMMM..MMMMM..MMFFM44FFMMMMMFFMMFFMMMMFFMMM..MMMM..MMMM", "212................MMFFMFFFFFCCFFFFFMFFMMMM..MMM..MMMM..MMMM", ".............D.....MMFFMFFFFFFFFFFFFMFFM....................", "MMMMMMMM........MMMMMFFMFFFFFFFFFFFFMFFM.................212", "MMMMMMMM......D...FFFFFFFFFFFFFFFFFFFFFF..MMMMMM..MMM..MMMMM", "MMMMMMMM...4......FFFFFFFFFFFFFFFFFFFFFF..MMMMMM..MMM..MMMMM", "MMMMMMMM........MMMFFMMMCFFFFWWWFFFFMMM...........MMMFFMMMMM", "MMMMMMMM........MMMFFMMMCFFFFWWWFFFF4MM...........MMMFFMMMMM", "MMMMM......D....MMMFFFFFFFFFFWWWFFFF4MM...4MMMMM..MMM..MMMMM", "MMMMM...........MMMFFFFFFFFFFFFFFFFCMMM....MMMMM.......FFFMM", "MMMMM.....MM..MMMMMFFMMMFFFFFFFFFFFCMMM....MMMMM.D...D.FFFMM", "MMMMMMMM..MM..MMMMM..MMMFFFFFFFFFFFFFFFFF.MMMMMM.......FFFMM", "MMMMMMMM..MM..MMMMM..MM4FFFFFFCCFFFFFFFFF....FFF...4...MMMMM", "MMMMMMMMFFMM.........MM4FFFFFFMM44MMMMMM.....FFF.......MMMMM", "MMMMMMMMFFMM.........MMMMMMMFFMMMMMMMMMM..MMMMMM.......MMMMM", "MMMMMMMMFFMMMM..MMM..MMMMMMMFFMMMMMMMMMM..MMMMMM...D...MMMMM", ".1........D.....MMM...........MMM...........................", "................MMM...........MMM.D......................212", "MMMMM..MM...4...MMMMM..MMMMM.........4....MMM..MMMM..MMMMMMM", "MMMMM..MM.......MMMMM..MMMMM..............MMM..MMMMFFMMMMMMM", "MMMMM..MM...D...MMMM4..MMMMMFFMMM.......D.MMMFFMMMMFFMMMMMMM", "MM..M..MM.......MMMMFFFMMMMMFFMMMMM..MMMMMMMMFFMMMM..MMMMMMM", "MM..M..MMMMMMM..MMMMFFFMMMMM..MMMMM..MMMMMMMM..MMMM......MMM", "M......MMMMMMM..MMMMM...........MMMFFMM..................MMM", "M......MMMMMMM..MMMMM..D........MMMFFMM..............MM..MMM", "M..MMFFMMMMMMM............4..............D.4...MMMMMMMM..MMM", "M..MMFFMMMMMMM...............D.................MMMMMMMM..MMM", "M..MM..MMMMMMMFFM..MM...D.......M..MMMM......D............MM", "M.............FFM..MM...........M..MMMM..................4MM", "M.............FFM..MM..MMM..MMMMM........MMMM..MMM..MMM.44MM", "M444MMMM..MMMMMMM......MMM..MMMMM........MMMM..MMM..MMM..MMM", "MMMMMMMM..MMMMMMM......MMM...FFF...MMMM...FF...MMM..MMM..MMM", "MMMMMMMM.....FF....MM..FFF...FFF...MMMM...FF...MMM..FF...MMM", "MMMMMMMM.....FF....MM..FFF..MMMMMMMMMMM..MMMM..MMM..FF...MMM", "MMMMMMMM2.MMMMMMMMMMMMMMMM..MMMMMMMMMMM..MMMM.......MMMMMMMM", "MMMMMMMM1.MMMMMMMMMMMMMMMM1.MMMMMMMMMMM1.MMMM.......MMMMMMMM", "MMMMMMMM2.MMMMMMMMMMMMMMMM..MMMMMMMMMMM..MMMMMMMMMMMMMMMMMMM"], "Survival_7": ["....................................MM......................", "....................................MM......................", "...........MMFF.....................MM......................", ".....1.....MMFF.............2.2.....FF.............1........", "....................................FF......................", "............................................................", "....................................................MMMMMMMM", "........................MM........MMM..............MMMMMMMMM", "MMMMMM..T......FFMMFF...MM........MMM.....MM.......MM.......", "MMMMMMMMMM.....FFMMFF..............FF.....MMFF....TMM.......", ".....MMMMMM.......T................FF......FFF.....MM.......", ".....T...MM................................FFF.....MMT......", "..............................T....................MM.......", ".............4...............MM..............DMM..MMM.......", "..........MMMMMM..T.........FMMF............DMMM..MM........", "..........MMMMMMMMMMM.......FFFF........4MMMMMM....4........", "...MM......D.D.MMMMMMM......FFFF......4MMMMMMM..........1...", "...MMFF.........4...MM...............WWMMT.4.T..............", "...MMFF............4MM4............FFWWMM...................", ".........FF.......FFWWWF...........FFWWFF..............MMM..", "...1.....FFMM.....FFWWWF...........FFWWFF....FFMM......MMM..", ".........FFMM.....FFWWFF.4......4....WWFF....FFMMT.....FF...", ".........FF.........WWFF.MMM...MMM...MM......FF........FF...", "....................MM...MMM...MMM...MM.....................", "....................MM...DFF...FF...........................", "...2.2....................FF...FF............MM.......2.2...", "...................4...................4.....MM.............", ".............MM.......4MM...4.44.DMMFF......................", ".............MM......FFMM.........MMFF......................", ".....................FFMMD..4.4...MM4..................MM...", ".......FF...................4.........FFF.....FF.......MM...", ".....MMFFF...............FF.....FF....FFF.....FFMM.....MM...", ".....MMFFF.......FF..MM..FF.....FF....WWW.....FFMM..........", ".................FF..MM..MMM..DMMM....WWWW....FF............", "................WWW......MMM...MMM..FFFFWW4.................", "...............TWWW......4......4...FFFFMMMM4..T............", "............4MMMMWWFF...................MMMMMMMMM...........", "...1.......MMMMMMWWFF.4...FFFMM....4......4MMMMMMMMM....1...", "...........MMT..4.FFF.....FFFMM................TMMMM........", "...........MM.....FFF.....FFWWW..................4..........", "......4T...MM.............FFWWWWFF..........................", ".....MMMM..MM4..............WWWWFF........FFFF.....MM.......", "....MMMMM....................MM4..........FFFF.....MM..D.D..", "....MM............MMFF.......MM.............MM.....MMMMMMMMM", "....MMD..FFF......MMFF.......MM4....FFF.....MM......MMMMMMMM", "....MM...FFF................4MM.....FFF.....T........T......", "...TMMD..FFMM................MM....MMFF.....................", "MMMMM....FFMMT........FFF....MMT...MMFF.................1...", "MMMMM.................FFF...................................", "......................MM......................MMM...........", "........FF...........TMM.....MM...............MMM...........", "...1....FF..................4MM.............................", ".......MMM...................MM.......FFMM..................", ".......MMM.......MM.........TMM.......FFMM...........MM.....", ".................MM..........MMD........MM...........MM.....", ".............................MM......................MM.....", "...........2.2..............TMMD.....1........2.2...........", ".......................1.....MM.............................", ".............................MM.............................", ".............................MM............................."], "Survival_8": ["WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWFFFMMWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWMMFFFWWWWW", "WWWWFFF.4MMWWWWWWWWWWWWWWWWFFFFFFWWWWWWWWWWWWWWWWMM4.FFFWWWW", "WWWFFF....MMWWWWWWWWWWWFFFFFFFFFFFFFFWWWWWWWWWWWMM....FFFWWW", "WWWFF.2.2..MWWWWWWWWMMFFFFFFFFFFFFFFFFMMWWWWWWWWM..2.2.FFWWW", "WWWF..1....MMWWWWWMMMMFFFFFFCFFCFFFFFFMMMMWWWWWMM....1..FWWW", "WWWM4....D..MWWWMMMMMMFFFFFFN..NFFFFFFMMMMMMWWWM.......4MWWW", "WWWMM.......MMMMMFFFMMFFFFFFN44NFFFFFFMMFFFMMMMMD......MMWWW", "WWWWMM......FFFFFFFF4MFFFFFFCFFCFFFFFFM4FFFFFFFF......MMWWWW", "WWWWWMMM...FFFFFFFFFFMFFFFFFFFFFFFFFFFMFFFFFFFFFF...MMMWWWWW", "WWWWWWWMMMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMMMWWWWWWW", "WWWWWWWWWMFFFFFFFFFFFFFFF..........FFFFFFFFFFFFFFFMWWWWWWWWW", "WWWWWWWWWMFFFFFFFFFFFF................FFFFFFFFFFFFMWWWWWWWWW", "WWWWWWWWWMFFFFFFFFFFF.........1........FFFFFFFFFFFMWWWWWWWWW", "WWWWWWWWMMFFFFFFFFYY....D...............YYFFFFFFFFMMWWWWWWWW", "WWWWWWWWMFFFFFFFFYY......FMM4..4MMF......YYFFFFFFFFMWWWWWWWW", "WWWWWWWMMFFFFFFFYYY......FMMMMMMMMF.D....YYYFFFFFFFMMWWWWWWW", "WWWWWWWMMFFFFFFFY...4Y...FFFMMMMFFF...Y4...YFFFFFFFMMWWWWWWW", "WWWWWWMMMM4FFFFF....4Y................Y4....FFFFF4MMMMWWWWWW", "WWWWWWMMMMMMFFF....YYY...D....1.......YYY....FFFMMMMMMWWWWWW", "WWWWWWFFFFFFFF.....................D..........FFFFFFFFWWWWWW", "WWWWWFFFFFFFFF...............MM4..............FFFFFFFFFWWWWW", "WWWWWFFFFFFFFF.D....D.......MMMMMF............FFFFFFFFFWWWWW", "WWWWWFFFFFFFF....FFF........BFFFFF......FFF....FFFFFFFFWWWWW", "WWWWWFFFFFFFF....MMF....FF..............FMM....FFFFFFFFWWWWW", "WWWWFFFFFFFFF....MMF....MF..............FMM.D..FFFFFFFFFWWWW", "WWWWFFFCNNCFF....4MM...4MF....D...BM....MM4....FFCNNCFFFWWWW", "WWWWFFFF.4FFF.....MM...MMF........FMM...MM.....FFF4.FFFFWWWW", "WWWWFFFF.4FFF.....MM.1.MMF..2.2...FMM.1.MM.....FFF4.FFFFWWWW", "WWWWFFFCNNCFF..D.4MM....MB........FM4...MM4....FFCNNCFFFWWWW", "WWWWFFFFFFFFF....MMF.D............FM....FMM....FFFFFFFFFWWWW", "WWWWWFFFFFFFF....MMF..............FF..D.FMM....FFFFFFFFWWWWW", "WWWWWFFFFFFFF....FFF......FFFFFB........FFF....FFFFFFFFWWWWW", "WWWWWFFFFFFFFF............FMMMMM..............FFFFFFFFFWWWWW", "WWWWWFFFFFFFFF..D...........4MM...............FFFFFFFFFWWWWW", "WWWWWWFFFFFFFF.............D.......D..........FFFFFFFFWWWWWW", "WWWWWWMMMMMMFFF....YYY........1.......YYY....FFFMMMMMMWWWWWW", "WWWWWWMMMM4FFFFF....4Y................Y4....FFFFF4MMMMWWWWWW", "WWWWWWWMMFFFFFFFY...4Y...FFFMMMMFFF...Y4...YFFFFFFFMMWWWWWWW", "WWWWWWWMMFFFFFFFYYY......FMMMMMMMMF......YYYFFFFFFFMMWWWWWWW", "WWWWWWWWMFFFFFFFFYY......FMM4..4MMF......YYFFFFFFFFMWWWWWWWW", "WWWWWWWWMMFFFFFFFFYY...D............D...YYFFFFFFFFMMWWWWWWWW", "WWWWWWWWWMFFFFFFFFFFF.........1........FFFFFFFFFFFMWWWWWWWWW", "WWWWWWWWWMFFFFFFFFFFFF................FFFFFFFFFFFFMWWWWWWWWW", "WWWWWWWWWMFFFFFFFFFFFFFFF..........FFFFFFFFFFFFFFFMWWWWWWWWW", "WWWWWWWMMMFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFMMMWWWWWWW", "WWWWWMMM...FFFFFFFFFFMFFFFFFFFFFFFFFFFMFFFFFFFFFF...MMMWWWWW", "WWWWMM......FFFFFFFF4MFFFFFFCFFCFFFFFFM4FFFFFFFF......MMWWWW", "WWWMM.......MMMMMFFFMMFFFFFFN44NFFFFFFMMFFFMMMMM.......MMWWW", "WWWM4.......MWWWMMMMMMFFFFFFN..NFFFFFFMMMMMMWWWM.......4MWWW", "WWWF..1....MMWWWWWMMMMFFFFFFCFFCFFFFFFMMMMWWWWWMM...1...FWWW", "WWWFF.2.2..MWWWWWWWWMMFFFFFFFFFFFFFFFFMMWWWWWWWWM..2.2.FFWWW", "WWWFFF....MMWWWWWWWWWWWFFFFFFFFFFFFFFWWWWWWWWWWWMM....FFFWWW", "WWWWFFF.4MMWWWWWWWWWWWWWWWWFFFFFFWWWWWWWWWWWWWWWWMM4.FFFWWWW", "WWWWWFFFMMWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWMMFFFWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW", "WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW"], "Training": [".................", "....2.2.2.2.2....", ".................", "....2.2.2.2.2....", ".................", "....2.2.2.2.2....", ".................", "....2.2.2.2.2....", ".................", ".................", "MMMMMMM...MMMMMMM", "............M....", "............M..4.", "..3.........M....", "............M....", ".................", ".................", ".................", "............M....", "RRR.........M....", "RRR.........M....", "RRR.........M....", "MMMMMMM...MMMMMMM", ".................", ".................", "..0...........0..", ".................", ".................", "........1........", ".................", "..0...........0..", ".................", "................."], "Tutorial": ["..............B..", ".................", ".................", "B................", "......44444.....B", ".................", ".....44...44.....", "MMMMMMMMMMMMMMMMM", "RD......D.....D.R", "R...............R", "R...............R", "R...............R", "R.........0.....R", "R....0..........R", "R.......0.......R", "R..........0....R", "R......0........R", "R...............R", "MMMMMMM...MMMMMMM", "MMMMMM.....MMMMMX", "T..RRM.0...MRRRRR", ".D.RRM.....MRRD..", "...RRM..YYYMRR..D", "D...RM.....M.....", "...DRM.0...M....T", ".....M.....M.D...", ".....M.....M.....", ".....MYYY.0M...RR", ".....M.....M...RR", ".....M.....M...RR", "RR...M.....M.....", "RR...M.....M.....", ".....MC.1.CM....."], "Wanted_1": ["...RR...2.2.2........", "...RR...........RR...", "................RR...", ".....................", ".....................", "......RR.....RR......", "RR....MM.....MM......", "RR..MMMM.....MMMM....", "RR....RR.....RR......", "RRR...............RXX", "RRR...............RXX", "RRR....XRRXXXXD...RRR", "RRRR...XRRR.B....RRRR", "RRRR...X.....D...RRRR", "RRRM.....D.......RRRR", "RRRM.............MRRR", "RRRM...D...D.....MRRR", "RRRM.............MRRR", "RRRR....D......D.MRRR", "RRRR.........X...RRRR", "RRRR..D.B.RRRX...RRRR", "RRR....XXXXRRX....RRR", "XXR...............RRR", "XXR...............RRR", "......RR.....RR....RR", "....MMMM.....MMMM..RR", "......MM.....MM....RR", "......RR.....RR......", ".....................", ".....................", "...RR................", "...RR...........RR...", "........1.1.1...RR..."], "Wanted_10": ["........2.2.2........", ".....................", "...T.............T...", "WWWW...WWWWWWW...WWWW", "WWWW...WWWWWWW...WWWW", "WWWT...TTWWWTT...TWWW", ".........WWW.........", ".........WWW.........", ".....MM..WWW...RRR...", ".....MM..WWW..MRRR...", ".........WWW..MM.....", ".........WWW.........", ".........WWW.........", "CC..TT...WWW.......TT", "..RRRRR.......RRRRR..", "..RRRRR.......RRRRR..", "..RRYYY.......YYYRR..", "..RRRRR.......RRRRR..", "..RRRRR.......RRRRR..", "TT.......WWW..TT...CC", ".........WWW.........", ".........WWW.........", ".....MM..WWW.........", "...RRRM..WWW..MM.....", "...RRR...WWW..MM.....", ".........WWW.........", ".........WWW.........", "WWWT...TTWWWTT...TWWW", "WWWW...WWWWWWW...WWWW", "WWWW...WWWWWWW...WWWW", "...T.............T...", ".....................", "........1.1.1........"], "Wanted_11": ["...MMM.........MMM...", "...MM...........MM...", "..MMM...2.2.2...MMM..", "..MM.............MM..", ".......T.....T.......", ".....................", ".....................", "......TTT...TTT......", "....TTTRRRRRRRTTT....", "...TTRRRRRRRRRRRTT...", "..TTRRRRR...RRRRRTT..", "..TRRR.........RRRT..", "..TRRR.T.....T.RRRT..", "..TRR.WWW...WWW.RRT..", "..T...WWW...WWW...T..", ".....................", ".....................", ".....................", "..T...WWW...WWW...T..", "..TRR.WWW...WWW.RRT..", "..TRRR.T.....T.RRRT..", "..TRRR.........RRRT..", "..TTRRRRR...RRRRRTT..", "...TTRRRRRRRRRRRTT...", "....TTTRRRRRRRTTT....", "......TTT...TTT......", ".....................", ".....................", ".......T.....T.......", "..MM.............MM..", "..MMM...1.1.1...MMM..", "...MM...........MM...", "...MMM.........MMM..."], "Wanted_12": ["........2.2.2........", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", "..TT...TT...TT...TT..", ".....................", ".....................", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", "..TT...TT...TT...TT..", ".....................", ".....................", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", "..TT...TT...TT...TT..", ".....................", ".....................", "..TT...TT...TT...TT..", ".....................", ".....................", "..TT...TT...TT...TT..", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", ".....................", ".....................", "..TT...TT...TT...TT..", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", ".....................", ".....................", "..TT...TT...TT...TT..", "..RR...RR...RR...RR..", "..RR...RR...RR...RR..", "........1.1.1........"], "Wanted_13": ["MR......2.2.2....RRWW", "MR...............RRWW", "MR...............RWWW", "MMM.............MMWWW", "MMMRRR...MRRRR.MMMWWW", "MMMMMRRRRMMMRRRMM...T", "RR..MRRRMMM..RRRM....", "RR.....RMM...........", "WW.................RR", "WWRR........T......RM", "WWRR...........MMMRRM", "WWRRMMRRR......MMMRRM", "WWRRMMMMRRRRRMMMRRR.M", "T..RRMMMMRRRRRM......", ".......MRR...........", ".....................", "...T.............T...", ".....................", "...........RRM.......", "......MRRRRRMMMMRR..T", "M.RRRMMMRRRRRMMMMRRWW", "MRRMMM......RRRMMRRWW", "MRRMMM...........RRWW", "MR......T........RRWW", "RR.................WW", "...........MMR.....RR", "....MRRR..MMMRRRM..RR", "T...MMRRRMMMRRRRMMMMM", "WWWMMM.RRRRM...RRRMMM", "WWWMM.............MMM", "WWWR...............RM", "WWRR...............RM", "WWRR....1.1.1......RM"], "Wanted_14": ["........2.2.2........", ".RRR.............RRR.", ".RRR.............RRR.", ".RRR.............RRR.", ".......YY...CC.......", ".....................", ".....................", "MM.................MM", "...RRRRR.....RRRRR...", "...RRRRRNNNNNRRRRR...", "...MMM.........MMM...", ".....................", ".RR.......Y.......RR.", ".RR...............RR.", ".RR...............RR.", ".....................", "MMM...C.......C...MMM", ".....................", ".RR...............RR.", ".RR...............RR.", ".RR.......Y.......RR.", ".....................", "...MMM.........MMM...", "...RRRRRNNNNNRRRRR...", "...RRRRR.....RRRRR...", "MM.................MM", ".....................", ".....................", ".......CC...YY.......", ".RRR.............RRR.", ".RRR.............RRR.", ".RRR.............RRR.", "........1.1.1........"], "Wanted_15": ["RRRRRX..2.2.2..XRRRRR", "RRRRRX.........XRRRRR", "RRRR.............RRRR", "RRB.......TTT.....BRR", "RR.................RR", "RR...RRM...........RR", "RR...RRM.....MRR...RR", "....RRRM.....MRRR....", "....MMMM.....MRRRR...", "......B......MRRRR...", ".............MMMMM...", ".....................", ".RRM.................", "RRRM....C...C....TT..", "RRRM..CNN...NNC..TT..", "MMMM.................", ".....................", ".................MMMM", "..TT..CNN...NNC..MRRR", "..TT....C...C....MRRR", ".................MRR.", ".....................", "...MMMMM.............", "...RRRRM......B......", "...RRRRM.....MMMM....", "....RRRM.....MRRR....", "RR...RRM.....MRR...RR", "RR...........MRR...RR", "RR.................RR", "RRB.....TTT.......BRR", "RRRR.............RRRR", "RRRRRX.........XRRRRR", "RRRRRX..1.1.1..XRRRRR"], "Wanted_16": ["RRRR....2.2.2......RR", "RR...............RRRR", "................RRR..", ".....MM.........RR...", "..MMMMR.........MM...", "...MMRRR........MM...", "......RRRR....MMM....", "........RRR....MR....", "...............RRR...", "................RR...", "......MMM.......RRRR.", ".......MMM......TRRRR", "RR.......MM........RR", "RRRR................R", "MMRRRR...............", "MMMMRRR........RMM...", "..MMMRR.......RRMMM..", "...MMR........RRRMMMM", "...............RRRRMM", "R................RRRR", "RR........MM.......RR", "RRRRT......MMM.......", ".RRRR.......MMM......", "...RR................", "...RRR...............", "....RM....RRR........", "....MMM....RRRR......", "...MM........RRRMM...", "...MM.........RMMMM..", "...RR.........MM.....", "..RRR................", "RRRR...............RR", "RR......1.1.1....RRRR"], "Wanted_17": ["RRRR....2.2.2..RRRMMM", "RRR.............RRRMM", "R...............RRRRR", "...BNN............RRR", "..WWWW...NNN.........", "..WWWW..........XXB..", "..TWWWW..........XX..", "...WWWW......B....X..", "..........RRMMR......", ".........RRRTRRR.....", "T......RRRR..RRR...RR", ".....BMRRRR..RRWWNRRR", "......MRR.....RWWNRRR", "......MMM.....RWWNRRR", "......M..........RRRR", "..X...M..........RRRR", "RRX...............XRR", "RRRR..........M...X..", "RRRR..........M......", "RRRNWWR.....MMM......", "RRRNWWR.....RRM......", "RRRNWWRR..RRRRMB.....", "RR...RRR..RRRR......T", ".....RRRTRRR.........", "......RMMRR..........", "..X....B......WWWW...", "..XX..........WWWWT..", "..BXX..........WWWW..", ".........NNN...WWWW..", "RRR............NNB...", "RRRRR...............R", "MMRRR.............RRR", "MMMRRR..1.1.1....RRRR"], "Wanted_18": ["RRR.....2.2.2....RRRR", "RR................RRR", "R..................RR", "........RRR.........R", ".......RRRRR.........", ".RRR...NNNNN..RRR....", ".RRRR.........XRR....", "XRRRR.........XXX....", "XXXXX................", ".....................", "........RRRRRRRNNN...", "........RRRRRRRRRY...", ".....YYYRRNNNRRRRY...", "NNN..YRRRRRRRRRYYY..R", "RR...YRRRRRRRRR....RR", "RR....RRC...CRR....RR", "NN....RRC...CRR....NN", "RR....RRC...CRR....RR", "RR....RRRRRRRRRY...RR", "R..YYYRRRRRRRRRY..NNN", "...YRRRRNNNRRYYY.....", "...YRRRRRRRRR........", "...NNNRRRRRRR........", ".....................", "................XXXXX", "....XXX.........RRRRX", "....RRX.........RRRR.", "....RRR..NNNNN...RRR.", ".........RRRRR.......", "R.........RRR........", "RR..................R", "RRR................RR", "RRRR....1.1.1.....RRR"], "Wanted_19": ["........2.2.2........", "RRRR.................", "RRRR............CY...", "RRMM............WWWWW", "RRCMM...........WWWWW", "RRCYM...........RRRRR", "RR..MM.....YY...RRRRR", "........RRWWYNNNRRYYY", "YC......RRWWRRRRRRYCY", "WWWWWC..RRWWRRRRRR..C", "WWWWWY..RRWW.........", "RR..YY..RRRR.........", "RRRRR...RRRR...YC....", "RRRRR....YRR..CMMMRRR", "..............WWRRRRR", "..MMMWW.......WWRRRR.", "..RRMWW.......WWMRR..", ".RRRRWW.......WWMMM..", "RRRRRWW..............", "RRRMMMC..RRY....RRRRR", "....CY...RRRR...RRRRR", ".........RRRR..YY..RR", ".........WWRR..YWWWWW", "C..RRRRRRWWRR..CWWWWW", "YCYRRRRRRWWRR......CY", "YYYRRNNNYWWRR........", "RRRRR...YY.....MM..RR", "RRRRR...........MYCRR", "WWWWW...........MMCRR", "WWWWW............MMRR", "...YC............RRRR", ".................RRRR", "........1.1.1........"], "Wanted_2": ["...RR...2.2.2........", "...RR...........RR...", "............D...RR...", "..B....D.............", "......RRRR.RRRR..D...", "..RR..RRRR.RRRR..RR..", "..RR..MMRR.RRMM..RR..", "..MM..MMRR.RRMM..MM..", "RRRRRRRRRRRRRRRRRRRRR", "RRRRRRRRRRRRRRRRRRRRR", "RRR.....D......B.RRRR", "RRR.CMMM...DMMMMYRRRR", "RRR..MRRRRRRRRRM.RRRR", "RRR..MRRRRRRRRR..RRRR", "RRR.BMRRRRRXXRR.DRRRR", "....DMRRRRRRRRR......", ".....MRRRRRRRRRM.....", "......RRRRRRRRRMB....", "RRR...RRXXRRRRRM.RRRR", "RRR.D.RRRRRRRRRM.RRRR", "RRR..MRRRRRRRRRM.RRRR", "RRR.YMMMM.D..MMMCRRRR", "RRR....B.....D...RRRR", "RRRRRRRRRRRRRRRRRRRRR", "RRRRRRRRRRRRRRRRRRRRR", "..MM..MMRR.RRMM..MM..", "..RR..MMRR.RRMM..RR..", "..RR..RRRR.RRRR..RR..", "...D..RRRR.RRRR......", "............D.....B..", "...RR...D............", "...RR...........RR...", "........1.1.1...RR..."], "Wanted_3": ["..RR....2.2.2........", "..RR.............RR..", ".................RR..", ".....................", "..............RR.....", "...RR.........RR.....", "...YC.........CY.....", "RRRMMMM.......MMMMRRR", "RRRRRRR.......RRRRRRR", "RRR...............RRR", "RR.................RR", "RR...MMMM...MMMM...RR", "RR...MRRR...RRRM...RR", "RR...MR.......RM...RR", "RR...MR.......RM...RR", "RR...RR.......RR...RR", "RR...RR.......RR...RR", "RR...RR.......RR...RR", "RR...MR.......RM...RR", "RR...MR.......RM...RR", "RR...MRRR...RRRM...RR", "RR...MMMM...MMMM...RR", "RR.................RR", "RRR...............RRR", "RRRRRRR.......RRRRRRR", "RRRMMMM.......MMMMRRR", ".....YC.........CY...", ".....RR.........RR...", ".....RR..............", ".....................", "..RR.................", "..RR.............RR..", "........1.1.1....RR.."], "Wanted_6": ["FFFFFFF.2.2.2.FFFFFFF", "FFFFFFF.......FFFFFFF", "FFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFMMMFFFF", "FFFFFYMMFFFFFFMMMFFFF", "FFFFFMMMFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFMMCFFFFFMMMM", "FFFFFFFFFMMMFFFFFMMMM", "FFFFYMFFFFFFFFFFFFFFF", "FFFFMMFFFFFFFFFFFFFFF", "FFFFMMF.......FFFFFFF", "FFFFFFF.D.....FFFFFFF", "FFFFFFF....D..FFFFFFF", "FFFFFFF.......MMMFFFF", "FFMMMFF......DYMMFFFF", "FFMMCFF..D....FFFFFFF", "FFFFFFF.......FFFFFFF", "FFFFFFFFFFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFMMFF", "FFFFFFMMMFFFFMMFFMMFF", "FFFFFFMMMFFFFMMFFFFFF", "FFFFFFFFFFFFFMYFFFFFF", "MMMMFFFFFFFFFFFFFFFFF", "MMMMFFFFFFFFFFFFFFFFF", "FFFFFFFMMFFFFFMMFFFFF", "FFFFFFFMMFFFFFMMFFFFF", "FFFFFFFMCFFFFFFFFFFFF", "FFFFFFFFFFFFFFFFFFFFF", "FFFFFFF.......FFFFFFF", "FFFFFFF.1.1.1.FFFFFFF"], "Wanted_7": ["........2.2.2........", ".....................", ".................RR..", "YYY..............RR..", "CC.............MMMM..", ".....B...............", "....MMRR.............", "....MMRR.............", ".............D.......", "..................B..", ".....D.........RRMMMM", "...RRWWWRR.....RRMMMM", "...RRWWWRR....D......", "...RRWWWRR...........", "......MMMM...........", "......D..............", ".............D.......", ".....................", ".....D.....MMMM......", "...........RRWWWRR...", "...........RRWWWRR...", "MMMMRR.....RRWWWRR...", "MMMMRR...............", "..B..........D.......", ".....................", ".............RRMM....", "......D......RRMM....", "...............B.....", "..MMMM.............CC", "..RR..............YYY", "..RR.................", ".....................", "........1.1.1........"], "Wanted_8": ["........2.2.2........", ".....................", "..YY.................", "..C...NNNNY..Y.......", "......RRRRR..N.RR....", "......RRRRR..N.RR....", ".............N.RR....", ".............N.......", "..YYYYYC.....NNNN.RR.", "..............CCC.RR.", "..................RR.", ".....MMMM.........RR.", ".....RRRM............", ".....RRRM....RRRRR...", "....BRRRX...MRRRRR...", "...........DMRRRRR...", "............MRRRRRD..", ".RR.T..T...DMRRRRR...", ".RR..RR.....MMMMX....", ".RR..RR.....BD.......", ".RR.T....D...........", ".............DRRMRR..", ".........B....RRMRR..", ".....B..XMMMR.RRMRR..", "........RRRRR.RXXRR..", "..T.....RRRRR........", "..TT..........D......", "......X..............", "......MRRR...RRR.....", "......MMMM...MMX.....", "...B.................", ".....................", "........1.1.1........"], "Wanted_9": ["........2.2.2........", ".....................", "...T.............T...", "WWWW...WWWWWWW...WWWW", "WWWW...WWWWWWW...WWWW", "WWWX...XTWWWTX...XWWW", ".........WWWRR.......", ".........WWWR........", "....RMM..WWWR..RRR...", "....RRR..WWW..MRRR...", ".........WWW..MM.....", ".........WWW..B......", "....DD...WWW.........", "CC..XX..RWWWR......XX", "RRRRRRR.RWWWR.RRRRRRR", "RRRRRRRRR...RRRRRRRRR", "RRRRYYYRR...RRYYYRRRR", "RRRRRRRRR...RRRRRRRRR", "RRRRRRR.RWWWR.RRRRRRR", "XX......RWWWR.XX...CC", "........RWWWR.DD.....", "......B..WWW.........", ".....MM..WWW.........", "...RRRM..WWW..RRR....", "...RRR..RWWW..MMR....", "........RWWW.........", ".......RRWWW.........", "WWWX...XTWWWTX...XWWW", "WWWW...WWWWWWW...WWWW", "WWWW...WWWWWWW...WWWW", "...T.............T...", ".....................", "........1.1.1........"], "end": [null]}, "map_blocks": [{"codeName": "r0", "group": "roboleft", "data": "........"}, {"codeName": "r1", "group": "****", "data": "........"}, {"codeName": "r2", "group": null, "data": "..D..D.."}, {"codeName": "r3", "group": null, "data": "......I."}, {"codeName": "r4", "group": null, "data": "......I."}, {"codeName": "r5", "group": null, "data": "..I...I."}, {"codeName": "r6", "group": null, "data": "..II..I."}, {"codeName": "r7", "group": null, "data": "..II...."}, {"codeName": "r8", "group": "roboleft", "data": "........"}, {"codeName": "r9", "group": "****", "data": "........"}, {"codeName": "r10", "group": null, "data": "........"}, {"codeName": "r11", "group": null, "data": "....D..."}, {"codeName": "r12", "group": null, "data": "........"}, {"codeName": "r13", "group": null, "data": "..I....."}, {"codeName": "r14", "group": null, "data": "..I..II."}, {"codeName": "r15", "group": null, "data": "..IIIII."}, {"codeName": "r16", "group": "roboleft", "data": "........"}, {"codeName": "r17", "group": "****", "data": "........"}, {"codeName": "r18", "group": null, "data": ".....II."}, {"codeName": "r19", "group": null, "data": ".....II."}, {"codeName": "r20", "group": null, "data": "........"}, {"codeName": "r21", "group": null, "data": "........"}, {"codeName": "r22", "group": null, "data": "..II...."}, {"codeName": "r23", "group": null, "data": "..IIII.."}, {"codeName": "r24", "group": "roboleft", "data": "........"}, {"codeName": "r25", "group": "****", "data": "........"}, {"codeName": "r26", "group": null, "data": "..II..I."}, {"codeName": "r27", "group": null, "data": "..I...I."}, {"codeName": "r28", "group": null, "data": "......I."}, {"codeName": "r29", "group": null, "data": "........"}, {"codeName": "r30", "group": null, "data": "..I....."}, {"codeName": "r31", "group": null, "data": "..II...."}, {"codeName": "r32", "group": "roboleft", "data": "........"}, {"codeName": "r33", "group": "****", "data": "....D..."}, {"codeName": "r34", "group": null, "data": "...III.."}, {"codeName": "r35", "group": null, "data": "........"}, {"codeName": "r36", "group": null, "data": "........"}, {"codeName": "r37", "group": null, "data": "..I...I."}, {"codeName": "r38", "group": null, "data": "..I..II."}, {"codeName": "r39", "group": null, "data": "..I..II."}, {"codeName": "r40", "group": "roboleft", "data": "........"}, {"codeName": "r41", "group": "****", "data": "........"}, {"codeName": "r42", "group": null, "data": "....II.."}, {"codeName": "r43", "group": null, "data": "....II.."}, {"codeName": "r44", "group": null, "data": "........"}, {"codeName": "r45", "group": null, "data": "........"}, {"codeName": "r46", "group": null, "data": ".....II."}, {"codeName": "r47", "group": null, "data": ".....II."}, {"codeName": "r48", "group": "roboleft", "data": "........"}, {"codeName": "r49", "group": "****", "data": "........"}, {"codeName": "r50", "group": null, "data": "....III."}, {"codeName": "r51", "group": null, "data": "........"}, {"codeName": "r52", "group": null, "data": "..D...D."}, {"codeName": "r53", "group": null, "data": "......I."}, {"codeName": "r54", "group": null, "data": "..I...I."}, {"codeName": "r55", "group": null, "data": "III...I."}, {"codeName": "r56", "group": "roboleft", "data": "........"}, {"codeName": "r57", "group": "****", "data": "........"}, {"codeName": "r58", "group": null, "data": "IIII...."}, {"codeName": "r59", "group": null, "data": "..II...."}, {"codeName": "r60", "group": null, "data": "........"}, {"codeName": "r61", "group": null, "data": "........"}, {"codeName": "r62", "group": null, "data": ".....II."}, {"codeName": "r63", "group": null, "data": "....III."}, {"codeName": "r64", "group": "roboleft", "data": "........"}, {"codeName": "r65", "group": "****", "data": "........"}, {"codeName": "r66", "group": null, "data": "..II...."}, {"codeName": "r67", "group": null, "data": "..I....."}, {"codeName": "r68", "group": null, "data": "..I....."}, {"codeName": "r69", "group": null, "data": "III....."}, {"codeName": "r70", "group": null, "data": ".....D.."}, {"codeName": "r71", "group": null, "data": "........"}, {"codeName": "r72", "group": "roboright", "data": "........"}, {"codeName": "r73", "group": "****", "data": "........"}, {"codeName": "r74", "group": null, "data": "III...D."}, {"codeName": "r75", "group": null, "data": ".....I.."}, {"codeName": "r76", "group": null, "data": ".....I.."}, {"codeName": "r77", "group": null, "data": ".I...I.."}, {"codeName": "r78", "group": null, "data": ".II..I.."}, {"codeName": "r79", "group": null, "data": "........"}, {"codeName": "r80", "group": "roboright", "data": "........"}, {"codeName": "r81", "group": "****", "data": "........"}, {"codeName": "r82", "group": null, "data": ".II....."}, {"codeName": "r83", "group": null, "data": ".II....."}, {"codeName": "r84", "group": null, "data": "II......"}, {"codeName": "r85", "group": null, "data": "........"}, {"codeName": "r86", "group": null, "data": "....II.."}, {"codeName": "r87", "group": null, "data": "....II.."}, {"codeName": "r88", "group": "roboright", "data": "........"}, {"codeName": "r89", "group": "****", "data": "........"}, {"codeName": "r90", "group": null, "data": "..IIII.."}, {"codeName": "r91", "group": null, "data": "....II.."}, {"codeName": "r92", "group": null, "data": "..D....."}, {"codeName": "r93", "group": null, "data": ".....D.."}, {"codeName": "r94", "group": null, "data": ".II....."}, {"codeName": "r95", "group": null, "data": "IIIIII.."}, {"codeName": "r96", "group": "roboright", "data": "........"}, {"codeName": "r97", "group": "****", "data": "........"}, {"codeName": "r98", "group": null, "data": ".....I.."}, {"codeName": "r99", "group": null, "data": ".I...I.."}, {"codeName": "r100", "group": null, "data": ".I...I.."}, {"codeName": "r101", "group": null, "data": ".I...I.."}, {"codeName": "r102", "group": null, "data": ".I......"}, {"codeName": "r103", "group": null, "data": "II......"}, {"codeName": "r104", "group": "roboright", "data": "........"}, {"codeName": "r105", "group": "****", "data": "......D."}, {"codeName": "r106", "group": null, "data": "..III..."}, {"codeName": "r107", "group": null, "data": "........"}, {"codeName": "r108", "group": null, "data": "........"}, {"codeName": "r109", "group": null, "data": "II...I.."}, {"codeName": "r110", "group": null, "data": ".I..II.."}, {"codeName": "r111", "group": null, "data": "....II.."}, {"codeName": "r112", "group": "roboright", "data": "........"}, {"codeName": "r113", "group": "****", "data": "........"}, {"codeName": "r114", "group": null, "data": ".II....."}, {"codeName": "r115", "group": null, "data": ".II....."}, {"codeName": "r116", "group": null, "data": "........"}, {"codeName": "r117", "group": null, "data": ".D......"}, {"codeName": "r118", "group": null, "data": "....II.."}, {"codeName": "r119", "group": null, "data": "....II.."}, {"codeName": "r120", "group": "roboright", "data": "........"}, {"codeName": "r121", "group": "****", "data": "........"}, {"codeName": "r122", "group": null, "data": "III....."}, {"codeName": "r123", "group": null, "data": "........"}, {"codeName": "r124", "group": null, "data": ".......D"}, {"codeName": "r125", "group": null, "data": ".D...I.."}, {"codeName": "r126", "group": null, "data": "....II.."}, {"codeName": "r127", "group": null, "data": "....IIII"}, {"codeName": "r128", "group": "roboright", "data": "........"}, {"codeName": "r129", "group": "****", "data": "........"}, {"codeName": "r130", "group": null, "data": ".II..III"}, {"codeName": "r131", "group": null, "data": ".I...I.."}, {"codeName": "r132", "group": null, "data": ".....I.."}, {"codeName": "r133", "group": null, "data": ".....I.D"}, {"codeName": "r134", "group": null, "data": ".I......"}, {"codeName": "r135", "group": null, "data": "III....."}, {"codeName": "r136", "group": "roboright", "data": "........"}, {"codeName": "r137", "group": "****", "data": ".....D.."}, {"codeName": "r138", "group": null, "data": "IIII...."}, {"codeName": "r139", "group": null, "data": "........"}, {"codeName": "r140", "group": null, "data": ".D...III"}, {"codeName": "r141", "group": null, "data": ".....I.."}, {"codeName": "r142", "group": null, "data": ".II..I.."}, {"codeName": "r143", "group": null, "data": ".II....."}, {"codeName": "r144", "group": "roboleft", "data": "........"}, {"codeName": "r145", "group": "****", "data": "........"}, {"codeName": "r146", "group": null, "data": "..IIIII."}, {"codeName": "r147", "group": null, "data": "..I...I."}, {"codeName": "r148", "group": null, "data": "..I..DI."}, {"codeName": "r149", "group": null, "data": "..I...I."}, {"codeName": "r150", "group": null, "data": "..I...I."}, {"codeName": "r151", "group": null, "data": "..II..I."}, {"codeName": "r152", "group": "roboleft", "data": "........"}, {"codeName": "r153", "group": "****", "data": "........"}, {"codeName": "r154", "group": null, "data": "........"}, {"codeName": "r155", "group": null, "data": "IIIIIII."}, {"codeName": "r156", "group": null, "data": "....D..."}, {"codeName": "r157", "group": null, "data": "........"}, {"codeName": "r158", "group": null, "data": "..I...I."}, {"codeName": "r159", "group": null, "data": "..IIIII."}, {"codeName": "r160", "group": "roboright", "data": "........"}, {"codeName": "r161", "group": "****", "data": "........"}, {"codeName": "r162", "group": null, "data": "....D..."}, {"codeName": "r163", "group": null, "data": "........"}, {"codeName": "r164", "group": null, "data": ".IIIIIII"}, {"codeName": "r165", "group": null, "data": ".I...I.."}, {"codeName": "r166", "group": null, "data": ".I...I.."}, {"codeName": "r167", "group": null, "data": ".I..II.."}, {"codeName": "r168", "group": "roboright", "data": "........"}, {"codeName": "r169", "group": "****", "data": "........"}, {"codeName": "r170", "group": null, "data": ".IIIII.."}, {"codeName": "r171", "group": null, "data": ".I......"}, {"codeName": "r172", "group": null, "data": ".I......"}, {"codeName": "r173", "group": null, "data": "II...I.."}, {"codeName": "r174", "group": null, "data": ".I...I.."}, {"codeName": "r175", "group": null, "data": "........"}, {"codeName": "r176", "group": "spawnroboleft", "data": "........"}, {"codeName": "r177", "group": "****", "data": "........"}, {"codeName": "r178", "group": null, "data": "..III..."}, {"codeName": "r179", "group": null, "data": "..I....."}, {"codeName": "r180", "group": null, "data": "..I....."}, {"codeName": "r181", "group": null, "data": "........"}, {"codeName": "r182", "group": null, "data": ".......5"}, {"codeName": "r183", "group": null, "data": ".....1.1"}, {"codeName": "r184", "group": "spawnroboright", "data": "........"}, {"codeName": "r185", "group": "****", "data": "........"}, {"codeName": "r186", "group": null, "data": ".III...."}, {"codeName": "r187", "group": null, "data": "...I..II"}, {"codeName": "r188", "group": null, "data": "...I...."}, {"codeName": "r189", "group": null, "data": "........"}, {"codeName": "r190", "group": null, "data": "........"}, {"codeName": "r191", "group": null, "data": "1......."}, {"codeName": "r192", "group": "spawnroboleft", "data": "........"}, {"codeName": "r193", "group": "****", "data": "........"}, {"codeName": "r194", "group": null, "data": "...III.."}, {"codeName": "r195", "group": null, "data": "........"}, {"codeName": "r196", "group": null, "data": "........"}, {"codeName": "r197", "group": null, "data": "........"}, {"codeName": "r198", "group": null, "data": ".......5"}, {"codeName": "r199", "group": null, "data": ".....1.1"}, {"codeName": "r200", "group": "spawnroboright", "data": "........"}, {"codeName": "r201", "group": "****", "data": "........"}, {"codeName": "r202", "group": null, "data": "...I...."}, {"codeName": "r203", "group": null, "data": "...I...."}, {"codeName": "r204", "group": null, "data": "...I...."}, {"codeName": "r205", "group": null, "data": "...I...."}, {"codeName": "r206", "group": null, "data": "........"}, {"codeName": "r207", "group": null, "data": "1......."}], "messages": [{"name": "msg1", "tID": "We need brawler...", "bubbleOverrideTID": null, "disabled": null, "messageType": 1, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": null, "rawTID": "QUICK_MESSAGE_CHOOSE_BRAWLER"}, {"name": "msg2", "tID": "Let's play...", "bubbleOverrideTID": null, "disabled": null, "messageType": 2, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": null, "rawTID": "QUICK_MESSAGE_CHOOSE_MODE"}, {"name": "msg3", "tID": "Let's change brawlers!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 0, "rawTID": "QUICK_MESSAGE_CHANGE_BRAWLERS"}, {"name": "msg4", "tID": "Good game!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 1, "rawTID": "QUICK_MESSAGE_GOOD_GAME"}, {"name": "msg5", "tID": "Play again?", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 2, "rawTID": "QUICK_MESSAGE_PLAY_AGAIN"}, {"name": "msg6", "tID": "Well played!", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 3, "rawTID": "QUICK_MESSAGE_WELL_PLAYED"}, {"name": "msg7", "tID": "Wow!", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 4, "rawTID": "QUICK_MESSAGE_WOW"}, {"name": "msg8", "tID": "Ok!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 5, "rawTID": "QUICK_MESSAGE_OK"}, {"name": "msg9", "tID": "Gotta go. Have fun!", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 6, "rawTID": "QUICK_MESSAGE_GOTTA_GO"}, {"name": "msg10", "tID": "Let's change game mode!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 7, "rawTID": "QUICK_MESSAGE_CHANGE_MODE"}, {"name": "msg11", "tID": "Bye!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 8, "rawTID": "QUICK_MESSAGE_BYE"}, {"name": "msg12", "tID": "That was close!", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 9, "rawTID": "QUICK_MESSAGE_CLOSE_MATCH"}, {"name": "msg13", "tID": "Ready?", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 10, "rawTID": "QUICK_MESSAGE_READY"}, {"name": "msg14", "tID": "Ready? Let's go!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 11, "rawTID": "QUICK_MESSAGE_READY_GO"}, {"name": "msg15", "tID": "Hi!", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 12, "rawTID": "QUICK_MESSAGE_HI"}, {"name": "msg16", "tID": "I need a break!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 13, "rawTID": "QUICK_MESSAGE_NEED_BREAK"}, {"name": "msg17", "tID": "I need to run. Have fun guys!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 14, "rawTID": "QUICK_MESSAGE_NEED_TO_GO"}, {"name": "msg18", "tID": "Thanks!", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 15, "rawTID": "QUICK_MESSAGE_THANKS"}, {"name": "msg19", "tID": "Sorry!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 16, "rawTID": "QUICK_MESSAGE_SORRY"}, {"name": "msg20", "tID": "Oops", "bubbleOverrideTID": null, "disabled": null, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 17, "rawTID": "QUICK_MESSAGE_OOPS"}, {"name": "msg21", "tID": "Can you play as >?", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 18, "rawTID": "QUICK_MESSAGE_SUGGEST_BRAWLER"}, {"name": "msg22", "tID": "Can you use >?", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 19, "rawTID": "QUICK_MESSAGE_SUGGEST_STARPOWER"}, {"name": "msg23", "tID": "Let's play >!", "bubbleOverrideTID": null, "disabled": true, "messageType": null, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 20, "rawTID": "QUICK_MESSAGE_SUGGEST_MODE"}, {"name": "msg24", "tID": "Which brawler should I pick?", "bubbleOverrideTID": "Which brawler should I pick?", "disabled": null, "messageType": 5, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 21, "rawTID": "QUICK_MESSAGE_ASK_BRAWLER", "rawBubbleOverrideTID": "QUICK_MESSAGE_ASK_BRAWLER_SPLIT"}, {"name": "msg25", "tID": "What event should we play?", "bubbleOverrideTID": "What event should we play?", "disabled": null, "messageType": 6, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": 22, "rawTID": "QUICK_MESSAGE_ASK_MODE", "rawBubbleOverrideTID": "QUICK_MESSAGE_ASK_MODE_SPLIT"}, {"name": "msg26", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_thumbsup", "quickEmojiType": 1, "sortPriority": 30}, {"name": "msg27", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_thumbsdown", "quickEmojiType": 2, "sortPriority": 30}, {"name": "msg28", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_smile", "quickEmojiType": 3, "sortPriority": 0}, {"name": "msg29", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_sad", "quickEmojiType": 4, "sortPriority": 11}, {"name": "msg30", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_laugh", "quickEmojiType": null, "sortPriority": 0}, {"name": "msg31", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_angry", "quickEmojiType": 5, "sortPriority": 22}, {"name": "msg32", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_annoyed", "quickEmojiType": null, "sortPriority": 21}, {"name": "msg33", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_blank", "quickEmojiType": null, "sortPriority": 10}, {"name": "msg34", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_grin", "quickEmojiType": null, "sortPriority": 1}, {"name": "msg35", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_rage", "quickEmojiType": null, "sortPriority": 22}, {"name": "msg36", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_shocked", "quickEmojiType": null, "sortPriority": 12}, {"name": "msg37", "tID": "Let's play...", "bubbleOverrideTID": null, "disabled": null, "messageType": 4, "fileName": "sc/ui.sc", "exportName": "button_chat_item", "quickEmojiType": null, "sortPriority": null, "rawTID": "QUICK_MESSAGE_CHOOSE_FRIENDLY_LOCATION"}, {"name": "msg38", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_happy", "quickEmojiType": null, "sortPriority": 0}, {"name": "msg39", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_stunned", "quickEmojiType": null, "sortPriority": 11}, {"name": "msg40", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_bothered", "quickEmojiType": null, "sortPriority": 20}, {"name": "msg41", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_ecstatic", "quickEmojiType": null, "sortPriority": 1}, {"name": "msg42", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_speechless", "quickEmojiType": null, "sortPriority": 10}, {"name": "msg43", "tID": null, "bubbleOverrideTID": null, "disabled": null, "messageType": 3, "fileName": "sc/ui.sc", "exportName": "emoji_frenzied", "quickEmojiType": null, "sortPriority": 22}], "milestones": [{"name": "goal_1_0", "type": 1, "index": 0, "progressStart": 0, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_1", "type": 1, "index": 1, "progressStart": 10, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_2", "type": 1, "index": 2, "progressStart": 20, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_3", "type": 1, "index": 3, "progressStart": 30, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_4", "type": 1, "index": 4, "progressStart": 40, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_5", "type": 1, "index": 5, "progressStart": 60, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_6", "type": 1, "index": 6, "progressStart": 80, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_7", "type": 1, "index": 7, "progressStart": 100, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_8", "type": 1, "index": 8, "progressStart": 120, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 17, "secondaryLvlUpRewardCount": 100, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_9", "type": 1, "index": 9, "progressStart": 140, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_10", "type": 1, "index": 10, "progressStart": 160, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_11", "type": 1, "index": 11, "progressStart": 180, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_12", "type": 1, "index": 12, "progressStart": 220, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_13", "type": 1, "index": 13, "progressStart": 260, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 17, "secondaryLvlUpRewardCount": 200, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_14", "type": 1, "index": 14, "progressStart": 300, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_15", "type": 1, "index": 15, "progressStart": 340, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_16", "type": 1, "index": 16, "progressStart": 380, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_17", "type": 1, "index": 17, "progressStart": 420, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_18", "type": 1, "index": 18, "progressStart": 460, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 17, "secondaryLvlUpRewardCount": 300, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_19", "type": 1, "index": 19, "progressStart": 500, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_20", "type": 1, "index": 20, "progressStart": 550, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_21", "type": 1, "index": 21, "progressStart": 600, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_22", "type": 1, "index": 22, "progressStart": 650, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_23", "type": 1, "index": 23, "progressStart": 700, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 17, "secondaryLvlUpRewardCount": 400, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_24", "type": 1, "index": 24, "progressStart": 750, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_25", "type": 1, "index": 25, "progressStart": 800, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_26", "type": 1, "index": 26, "progressStart": 850, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_27", "type": 1, "index": 27, "progressStart": 900, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_28", "type": 1, "index": 28, "progressStart": 950, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 17, "secondaryLvlUpRewardCount": 500, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_29", "type": 1, "index": 29, "progressStart": 1000, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_30", "type": 1, "index": 30, "progressStart": 1050, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_31", "type": 1, "index": 31, "progressStart": 1100, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_32", "type": 1, "index": 32, "progressStart": 1150, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_1_33", "type": 1, "index": 33, "progressStart": 1200, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 17, "secondaryLvlUpRewardCount": 600, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_0", "type": 5, "index": 0, "progressStart": 0, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_1", "type": 5, "index": 1, "progressStart": 40, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_2", "type": 5, "index": 2, "progressStart": 90, "progress": 60, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_3", "type": 5, "index": 3, "progressStart": 150, "progress": 70, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_4", "type": 5, "index": 4, "progressStart": 220, "progress": 80, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_5", "type": 5, "index": 5, "progressStart": 300, "progress": 90, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_6", "type": 5, "index": 6, "progressStart": 390, "progress": 100, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_7", "type": 5, "index": 7, "progressStart": 490, "progress": 110, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_8", "type": 5, "index": 8, "progressStart": 600, "progress": 120, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_9", "type": 5, "index": 9, "progressStart": 720, "progress": 130, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_10", "type": 5, "index": 10, "progressStart": 850, "progress": 140, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_11", "type": 5, "index": 11, "progressStart": 990, "progress": 150, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_12", "type": 5, "index": 12, "progressStart": 1140, "progress": 160, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_13", "type": 5, "index": 13, "progressStart": 1300, "progress": 170, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_14", "type": 5, "index": 14, "progressStart": 1470, "progress": 180, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_15", "type": 5, "index": 15, "progressStart": 1650, "progress": 190, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_16", "type": 5, "index": 16, "progressStart": 1840, "progress": 200, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_17", "type": 5, "index": 17, "progressStart": 2040, "progress": 210, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_18", "type": 5, "index": 18, "progressStart": 2250, "progress": 220, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_19", "type": 5, "index": 19, "progressStart": 2470, "progress": 230, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_20", "type": 5, "index": 20, "progressStart": 2700, "progress": 240, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_21", "type": 5, "index": 21, "progressStart": 2940, "progress": 250, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_22", "type": 5, "index": 22, "progressStart": 3190, "progress": 260, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_23", "type": 5, "index": 23, "progressStart": 3450, "progress": 270, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_24", "type": 5, "index": 24, "progressStart": 3720, "progress": 280, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_25", "type": 5, "index": 25, "progressStart": 4000, "progress": 290, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_26", "type": 5, "index": 26, "progressStart": 4290, "progress": 300, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_27", "type": 5, "index": 27, "progressStart": 4590, "progress": 310, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_28", "type": 5, "index": 28, "progressStart": 4900, "progress": 320, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_29", "type": 5, "index": 29, "progressStart": 5220, "progress": 330, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_30", "type": 5, "index": 30, "progressStart": 5550, "progress": 340, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_31", "type": 5, "index": 31, "progressStart": 5890, "progress": 350, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_32", "type": 5, "index": 32, "progressStart": 6240, "progress": 360, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_33", "type": 5, "index": 33, "progressStart": 6600, "progress": 370, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_34", "type": 5, "index": 34, "progressStart": 6970, "progress": 380, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_35", "type": 5, "index": 35, "progressStart": 7350, "progress": 390, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_36", "type": 5, "index": 36, "progressStart": 7740, "progress": 400, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_37", "type": 5, "index": 37, "progressStart": 8140, "progress": 410, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_38", "type": 5, "index": 38, "progressStart": 8550, "progress": 420, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_39", "type": 5, "index": 39, "progressStart": 8970, "progress": 430, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_40", "type": 5, "index": 40, "progressStart": 9400, "progress": 440, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_41", "type": 5, "index": 41, "progressStart": 9840, "progress": 450, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_42", "type": 5, "index": 42, "progressStart": 10290, "progress": 460, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_43", "type": 5, "index": 43, "progressStart": 10750, "progress": 470, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_44", "type": 5, "index": 44, "progressStart": 11220, "progress": 480, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_45", "type": 5, "index": 45, "progressStart": 11700, "progress": 490, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_46", "type": 5, "index": 46, "progressStart": 12190, "progress": 500, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_47", "type": 5, "index": 47, "progressStart": 12690, "progress": 510, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_48", "type": 5, "index": 48, "progressStart": 13200, "progress": 520, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_49", "type": 5, "index": 49, "progressStart": 13720, "progress": 530, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_50", "type": 5, "index": 50, "progressStart": 14250, "progress": 540, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_51", "type": 5, "index": 51, "progressStart": 14790, "progress": 550, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_52", "type": 5, "index": 52, "progressStart": 15340, "progress": 560, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_53", "type": 5, "index": 53, "progressStart": 15900, "progress": 570, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_54", "type": 5, "index": 54, "progressStart": 16470, "progress": 580, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_55", "type": 5, "index": 55, "progressStart": 17050, "progress": 590, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_56", "type": 5, "index": 56, "progressStart": 17640, "progress": 600, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_57", "type": 5, "index": 57, "progressStart": 18240, "progress": 610, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_58", "type": 5, "index": 58, "progressStart": 18850, "progress": 620, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_59", "type": 5, "index": 59, "progressStart": 19470, "progress": 630, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_60", "type": 5, "index": 60, "progressStart": 20100, "progress": 640, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_61", "type": 5, "index": 61, "progressStart": 20740, "progress": 650, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_62", "type": 5, "index": 62, "progressStart": 21390, "progress": 660, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_63", "type": 5, "index": 63, "progressStart": 22050, "progress": 670, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_64", "type": 5, "index": 64, "progressStart": 22720, "progress": 680, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_65", "type": 5, "index": 65, "progressStart": 23400, "progress": 690, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_66", "type": 5, "index": 66, "progressStart": 24090, "progress": 700, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_67", "type": 5, "index": 67, "progressStart": 24790, "progress": 710, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_68", "type": 5, "index": 68, "progressStart": 25500, "progress": 720, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_69", "type": 5, "index": 69, "progressStart": 26220, "progress": 730, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_70", "type": 5, "index": 70, "progressStart": 26950, "progress": 740, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_71", "type": 5, "index": 71, "progressStart": 27690, "progress": 750, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_72", "type": 5, "index": 72, "progressStart": 28440, "progress": 760, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_73", "type": 5, "index": 73, "progressStart": 29200, "progress": 770, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_74", "type": 5, "index": 74, "progressStart": 29970, "progress": 780, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_75", "type": 5, "index": 75, "progressStart": 30750, "progress": 790, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_76", "type": 5, "index": 76, "progressStart": 31540, "progress": 800, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_77", "type": 5, "index": 77, "progressStart": 32340, "progress": 810, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_78", "type": 5, "index": 78, "progressStart": 33150, "progress": 820, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_79", "type": 5, "index": 79, "progressStart": 33970, "progress": 830, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_80", "type": 5, "index": 80, "progressStart": 34800, "progress": 840, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_81", "type": 5, "index": 81, "progressStart": 35640, "progress": 850, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_82", "type": 5, "index": 82, "progressStart": 36490, "progress": 860, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_83", "type": 5, "index": 83, "progressStart": 37350, "progress": 870, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_84", "type": 5, "index": 84, "progressStart": 38220, "progress": 880, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_85", "type": 5, "index": 85, "progressStart": 39100, "progress": 890, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_86", "type": 5, "index": 86, "progressStart": 39990, "progress": 900, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_87", "type": 5, "index": 87, "progressStart": 40890, "progress": 910, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_88", "type": 5, "index": 88, "progressStart": 41800, "progress": 920, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_89", "type": 5, "index": 89, "progressStart": 42720, "progress": 930, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_90", "type": 5, "index": 90, "progressStart": 43650, "progress": 940, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_91", "type": 5, "index": 91, "progressStart": 44590, "progress": 950, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_92", "type": 5, "index": 92, "progressStart": 45540, "progress": 960, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_93", "type": 5, "index": 93, "progressStart": 46500, "progress": 970, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_94", "type": 5, "index": 94, "progressStart": 47470, "progress": 980, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_95", "type": 5, "index": 95, "progressStart": 48450, "progress": 990, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_96", "type": 5, "index": 96, "progressStart": 49440, "progress": 1000, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_97", "type": 5, "index": 97, "progressStart": 50440, "progress": 1010, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_98", "type": 5, "index": 98, "progressStart": 51450, "progress": 1020, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_99", "type": 5, "index": 99, "progressStart": 52470, "progress": 1030, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_100", "type": 5, "index": 100, "progressStart": 53500, "progress": 1040, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_101", "type": 5, "index": 101, "progressStart": 54540, "progress": 1050, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_102", "type": 5, "index": 102, "progressStart": 55590, "progress": 1060, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_103", "type": 5, "index": 103, "progressStart": 56650, "progress": 1070, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_104", "type": 5, "index": 104, "progressStart": 57720, "progress": 1080, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_105", "type": 5, "index": 105, "progressStart": 58800, "progress": 1090, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_106", "type": 5, "index": 106, "progressStart": 59890, "progress": 1100, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_107", "type": 5, "index": 107, "progressStart": 60990, "progress": 1110, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_108", "type": 5, "index": 108, "progressStart": 62100, "progress": 1120, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_109", "type": 5, "index": 109, "progressStart": 63220, "progress": 1130, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_110", "type": 5, "index": 110, "progressStart": 64350, "progress": 1140, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_111", "type": 5, "index": 111, "progressStart": 65490, "progress": 1150, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_112", "type": 5, "index": 112, "progressStart": 66640, "progress": 1160, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_113", "type": 5, "index": 113, "progressStart": 67800, "progress": 1170, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_114", "type": 5, "index": 114, "progressStart": 68970, "progress": 1180, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_115", "type": 5, "index": 115, "progressStart": 70150, "progress": 1190, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_116", "type": 5, "index": 116, "progressStart": 71340, "progress": 1200, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_117", "type": 5, "index": 117, "progressStart": 72540, "progress": 1210, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_118", "type": 5, "index": 118, "progressStart": 73750, "progress": 1220, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_119", "type": 5, "index": 119, "progressStart": 74970, "progress": 1230, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_120", "type": 5, "index": 120, "progressStart": 76200, "progress": 1240, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_121", "type": 5, "index": 121, "progressStart": 77440, "progress": 1250, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_122", "type": 5, "index": 122, "progressStart": 78690, "progress": 1260, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_123", "type": 5, "index": 123, "progressStart": 79950, "progress": 1270, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_124", "type": 5, "index": 124, "progressStart": 81220, "progress": 1280, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_125", "type": 5, "index": 125, "progressStart": 82500, "progress": 1290, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_126", "type": 5, "index": 126, "progressStart": 83790, "progress": 1300, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_127", "type": 5, "index": 127, "progressStart": 85090, "progress": 1310, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_128", "type": 5, "index": 128, "progressStart": 86400, "progress": 1320, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_129", "type": 5, "index": 129, "progressStart": 87720, "progress": 1330, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_130", "type": 5, "index": 130, "progressStart": 89050, "progress": 1340, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_131", "type": 5, "index": 131, "progressStart": 90390, "progress": 1350, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_132", "type": 5, "index": 132, "progressStart": 91740, "progress": 1360, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_133", "type": 5, "index": 133, "progressStart": 93100, "progress": 1370, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_134", "type": 5, "index": 134, "progressStart": 94470, "progress": 1380, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_135", "type": 5, "index": 135, "progressStart": 95850, "progress": 1390, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_136", "type": 5, "index": 136, "progressStart": 97240, "progress": 1400, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_137", "type": 5, "index": 137, "progressStart": 98640, "progress": 1410, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_138", "type": 5, "index": 138, "progressStart": 100050, "progress": 1420, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_139", "type": 5, "index": 139, "progressStart": 101470, "progress": 1430, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_140", "type": 5, "index": 140, "progressStart": 102900, "progress": 1440, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_141", "type": 5, "index": 141, "progressStart": 104340, "progress": 1450, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_142", "type": 5, "index": 142, "progressStart": 105790, "progress": 1460, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_143", "type": 5, "index": 143, "progressStart": 107250, "progress": 1470, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_144", "type": 5, "index": 144, "progressStart": 108720, "progress": 1480, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_145", "type": 5, "index": 145, "progressStart": 110200, "progress": 1490, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_146", "type": 5, "index": 146, "progressStart": 111690, "progress": 1500, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_147", "type": 5, "index": 147, "progressStart": 113190, "progress": 1510, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_148", "type": 5, "index": 148, "progressStart": 114700, "progress": 1520, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_149", "type": 5, "index": 149, "progressStart": 116220, "progress": 1530, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_150", "type": 5, "index": 150, "progressStart": 117750, "progress": 1540, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_151", "type": 5, "index": 151, "progressStart": 119290, "progress": 1550, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_152", "type": 5, "index": 152, "progressStart": 120840, "progress": 1560, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_153", "type": 5, "index": 153, "progressStart": 122400, "progress": 1570, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_154", "type": 5, "index": 154, "progressStart": 123970, "progress": 1580, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_155", "type": 5, "index": 155, "progressStart": 125550, "progress": 1590, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_156", "type": 5, "index": 156, "progressStart": 127140, "progress": 1600, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_157", "type": 5, "index": 157, "progressStart": 128740, "progress": 1610, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_158", "type": 5, "index": 158, "progressStart": 130350, "progress": 1620, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_159", "type": 5, "index": 159, "progressStart": 131970, "progress": 1630, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_160", "type": 5, "index": 160, "progressStart": 133600, "progress": 1640, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_161", "type": 5, "index": 161, "progressStart": 135240, "progress": 1650, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_162", "type": 5, "index": 162, "progressStart": 136890, "progress": 1660, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_163", "type": 5, "index": 163, "progressStart": 138550, "progress": 1670, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_164", "type": 5, "index": 164, "progressStart": 140220, "progress": 1680, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_165", "type": 5, "index": 165, "progressStart": 141900, "progress": 1690, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_166", "type": 5, "index": 166, "progressStart": 143590, "progress": 1700, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_167", "type": 5, "index": 167, "progressStart": 145290, "progress": 1710, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_168", "type": 5, "index": 168, "progressStart": 147000, "progress": 1720, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_169", "type": 5, "index": 169, "progressStart": 148720, "progress": 1730, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_170", "type": 5, "index": 170, "progressStart": 150450, "progress": 1740, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_171", "type": 5, "index": 171, "progressStart": 152190, "progress": 1750, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_172", "type": 5, "index": 172, "progressStart": 153940, "progress": 1760, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_173", "type": 5, "index": 173, "progressStart": 155700, "progress": 1770, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_174", "type": 5, "index": 174, "progressStart": 157470, "progress": 1780, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_175", "type": 5, "index": 175, "progressStart": 159250, "progress": 1790, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_176", "type": 5, "index": 176, "progressStart": 161040, "progress": 1800, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_177", "type": 5, "index": 177, "progressStart": 162840, "progress": 1810, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_178", "type": 5, "index": 178, "progressStart": 164650, "progress": 1820, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_179", "type": 5, "index": 179, "progressStart": 166470, "progress": 1830, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_180", "type": 5, "index": 180, "progressStart": 168300, "progress": 1840, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_181", "type": 5, "index": 181, "progressStart": 170140, "progress": 1850, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_182", "type": 5, "index": 182, "progressStart": 171990, "progress": 1860, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_183", "type": 5, "index": 183, "progressStart": 173850, "progress": 1870, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_184", "type": 5, "index": 184, "progressStart": 175720, "progress": 1880, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_185", "type": 5, "index": 185, "progressStart": 177600, "progress": 1890, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_186", "type": 5, "index": 186, "progressStart": 179490, "progress": 1900, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_187", "type": 5, "index": 187, "progressStart": 181390, "progress": 1910, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_188", "type": 5, "index": 188, "progressStart": 183300, "progress": 1920, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_189", "type": 5, "index": 189, "progressStart": 185220, "progress": 1930, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_190", "type": 5, "index": 190, "progressStart": 187150, "progress": 1940, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_191", "type": 5, "index": 191, "progressStart": 189090, "progress": 1950, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_192", "type": 5, "index": 192, "progressStart": 191040, "progress": 1960, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_193", "type": 5, "index": 193, "progressStart": 193000, "progress": 1970, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_194", "type": 5, "index": 194, "progressStart": 194970, "progress": 1980, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_195", "type": 5, "index": 195, "progressStart": 196950, "progress": 1990, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_196", "type": 5, "index": 196, "progressStart": 198940, "progress": 2000, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_197", "type": 5, "index": 197, "progressStart": 200940, "progress": 2010, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_198", "type": 5, "index": 198, "progressStart": 202950, "progress": 2020, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_199", "type": 5, "index": 199, "progressStart": 204970, "progress": 2030, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_200", "type": 5, "index": 200, "progressStart": 207000, "progress": 2040, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_201", "type": 5, "index": 201, "progressStart": 209040, "progress": 2050, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_202", "type": 5, "index": 202, "progressStart": 211090, "progress": 2060, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_203", "type": 5, "index": 203, "progressStart": 213150, "progress": 2070, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_204", "type": 5, "index": 204, "progressStart": 215220, "progress": 2080, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_205", "type": 5, "index": 205, "progressStart": 217300, "progress": 2090, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_206", "type": 5, "index": 206, "progressStart": 219390, "progress": 2100, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_207", "type": 5, "index": 207, "progressStart": 221490, "progress": 2110, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_208", "type": 5, "index": 208, "progressStart": 223600, "progress": 2120, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_209", "type": 5, "index": 209, "progressStart": 225720, "progress": 2130, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_210", "type": 5, "index": 210, "progressStart": 227850, "progress": 2140, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_211", "type": 5, "index": 211, "progressStart": 229990, "progress": 2150, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_212", "type": 5, "index": 212, "progressStart": 232140, "progress": 2160, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_213", "type": 5, "index": 213, "progressStart": 234300, "progress": 2170, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_214", "type": 5, "index": 214, "progressStart": 236470, "progress": 2180, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_215", "type": 5, "index": 215, "progressStart": 238650, "progress": 2190, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_216", "type": 5, "index": 216, "progressStart": 240840, "progress": 2200, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_217", "type": 5, "index": 217, "progressStart": 243040, "progress": 2210, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_218", "type": 5, "index": 218, "progressStart": 245250, "progress": 2220, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_219", "type": 5, "index": 219, "progressStart": 247470, "progress": 2230, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_220", "type": 5, "index": 220, "progressStart": 249700, "progress": 2240, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_221", "type": 5, "index": 221, "progressStart": 251940, "progress": 2250, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_222", "type": 5, "index": 222, "progressStart": 254190, "progress": 2260, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_223", "type": 5, "index": 223, "progressStart": 256450, "progress": 2270, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_224", "type": 5, "index": 224, "progressStart": 258720, "progress": 2280, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_225", "type": 5, "index": 225, "progressStart": 261000, "progress": 2290, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_226", "type": 5, "index": 226, "progressStart": 263290, "progress": 2300, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_227", "type": 5, "index": 227, "progressStart": 265590, "progress": 2310, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_228", "type": 5, "index": 228, "progressStart": 267900, "progress": 2320, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_229", "type": 5, "index": 229, "progressStart": 270220, "progress": 2330, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_230", "type": 5, "index": 230, "progressStart": 272550, "progress": 2340, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_231", "type": 5, "index": 231, "progressStart": 274890, "progress": 2350, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_232", "type": 5, "index": 232, "progressStart": 277240, "progress": 2360, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_233", "type": 5, "index": 233, "progressStart": 279600, "progress": 2370, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_234", "type": 5, "index": 234, "progressStart": 281970, "progress": 2380, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_235", "type": 5, "index": 235, "progressStart": 284350, "progress": 2390, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_236", "type": 5, "index": 236, "progressStart": 286740, "progress": 2400, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_237", "type": 5, "index": 237, "progressStart": 289140, "progress": 2410, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_238", "type": 5, "index": 238, "progressStart": 291550, "progress": 2420, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_239", "type": 5, "index": 239, "progressStart": 293970, "progress": 2430, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_240", "type": 5, "index": 240, "progressStart": 296400, "progress": 2440, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_241", "type": 5, "index": 241, "progressStart": 298840, "progress": 2450, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_242", "type": 5, "index": 242, "progressStart": 301290, "progress": 2460, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_243", "type": 5, "index": 243, "progressStart": 303750, "progress": 2470, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_244", "type": 5, "index": 244, "progressStart": 306220, "progress": 2480, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_245", "type": 5, "index": 245, "progressStart": 308700, "progress": 2490, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_246", "type": 5, "index": 246, "progressStart": 311190, "progress": 2500, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_247", "type": 5, "index": 247, "progressStart": 313690, "progress": 2510, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_248", "type": 5, "index": 248, "progressStart": 316200, "progress": 2520, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_249", "type": 5, "index": 249, "progressStart": 318720, "progress": 2530, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_250", "type": 5, "index": 250, "progressStart": 321250, "progress": 2540, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_251", "type": 5, "index": 251, "progressStart": 323790, "progress": 2550, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_252", "type": 5, "index": 252, "progressStart": 326340, "progress": 2560, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_253", "type": 5, "index": 253, "progressStart": 328900, "progress": 2570, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_254", "type": 5, "index": 254, "progressStart": 331470, "progress": 2580, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_255", "type": 5, "index": 255, "progressStart": 334050, "progress": 2590, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_256", "type": 5, "index": 256, "progressStart": 336640, "progress": 2600, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_257", "type": 5, "index": 257, "progressStart": 339240, "progress": 2610, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_258", "type": 5, "index": 258, "progressStart": 341850, "progress": 2620, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_259", "type": 5, "index": 259, "progressStart": 344470, "progress": 2630, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_260", "type": 5, "index": 260, "progressStart": 347100, "progress": 2640, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_261", "type": 5, "index": 261, "progressStart": 349740, "progress": 2650, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_262", "type": 5, "index": 262, "progressStart": 352390, "progress": 2660, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_263", "type": 5, "index": 263, "progressStart": 355050, "progress": 2670, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_264", "type": 5, "index": 264, "progressStart": 357720, "progress": 2680, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_265", "type": 5, "index": 265, "progressStart": 360400, "progress": 2690, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_266", "type": 5, "index": 266, "progressStart": 363090, "progress": 2700, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_267", "type": 5, "index": 267, "progressStart": 365790, "progress": 2710, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_268", "type": 5, "index": 268, "progressStart": 368500, "progress": 2720, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_269", "type": 5, "index": 269, "progressStart": 371220, "progress": 2730, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_270", "type": 5, "index": 270, "progressStart": 373950, "progress": 2740, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_271", "type": 5, "index": 271, "progressStart": 376690, "progress": 2750, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_272", "type": 5, "index": 272, "progressStart": 379440, "progress": 2760, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_273", "type": 5, "index": 273, "progressStart": 382200, "progress": 2770, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_274", "type": 5, "index": 274, "progressStart": 384970, "progress": 2780, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_275", "type": 5, "index": 275, "progressStart": 387750, "progress": 2790, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_276", "type": 5, "index": 276, "progressStart": 390540, "progress": 2800, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_277", "type": 5, "index": 277, "progressStart": 393340, "progress": 2810, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_278", "type": 5, "index": 278, "progressStart": 396150, "progress": 2820, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_279", "type": 5, "index": 279, "progressStart": 398970, "progress": 2830, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_280", "type": 5, "index": 280, "progressStart": 401800, "progress": 2840, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_281", "type": 5, "index": 281, "progressStart": 404640, "progress": 2850, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_282", "type": 5, "index": 282, "progressStart": 407490, "progress": 2860, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_283", "type": 5, "index": 283, "progressStart": 410350, "progress": 2870, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_284", "type": 5, "index": 284, "progressStart": 413220, "progress": 2880, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_285", "type": 5, "index": 285, "progressStart": 416100, "progress": 2890, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_286", "type": 5, "index": 286, "progressStart": 418990, "progress": 2900, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_287", "type": 5, "index": 287, "progressStart": 421890, "progress": 2910, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_288", "type": 5, "index": 288, "progressStart": 424800, "progress": 2920, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_289", "type": 5, "index": 289, "progressStart": 427720, "progress": 2930, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_290", "type": 5, "index": 290, "progressStart": 430650, "progress": 2940, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_291", "type": 5, "index": 291, "progressStart": 433590, "progress": 2950, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_292", "type": 5, "index": 292, "progressStart": 436540, "progress": 2960, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_293", "type": 5, "index": 293, "progressStart": 439500, "progress": 2970, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_294", "type": 5, "index": 294, "progressStart": 442470, "progress": 2980, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_295", "type": 5, "index": 295, "progressStart": 445450, "progress": 2990, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_296", "type": 5, "index": 296, "progressStart": 448440, "progress": 3000, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_297", "type": 5, "index": 297, "progressStart": 451440, "progress": 3010, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_298", "type": 5, "index": 298, "progressStart": 454450, "progress": 3020, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_299", "type": 5, "index": 299, "progressStart": 457470, "progress": 3030, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_300", "type": 5, "index": 300, "progressStart": 460500, "progress": 3040, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_301", "type": 5, "index": 301, "progressStart": 463540, "progress": 3050, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_302", "type": 5, "index": 302, "progressStart": 466590, "progress": 3060, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_303", "type": 5, "index": 303, "progressStart": 469650, "progress": 3070, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_304", "type": 5, "index": 304, "progressStart": 472720, "progress": 3080, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_305", "type": 5, "index": 305, "progressStart": 475800, "progress": 3090, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_306", "type": 5, "index": 306, "progressStart": 478890, "progress": 3100, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_307", "type": 5, "index": 307, "progressStart": 481990, "progress": 3110, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_308", "type": 5, "index": 308, "progressStart": 485100, "progress": 3120, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_309", "type": 5, "index": 309, "progressStart": 488220, "progress": 3130, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_310", "type": 5, "index": 310, "progressStart": 491350, "progress": 3140, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_311", "type": 5, "index": 311, "progressStart": 494490, "progress": 3150, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_312", "type": 5, "index": 312, "progressStart": 497640, "progress": 3160, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_313", "type": 5, "index": 313, "progressStart": 500800, "progress": 3170, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_314", "type": 5, "index": 314, "progressStart": 503970, "progress": 3180, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_315", "type": 5, "index": 315, "progressStart": 507150, "progress": 3190, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_316", "type": 5, "index": 316, "progressStart": 510340, "progress": 3200, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_317", "type": 5, "index": 317, "progressStart": 513540, "progress": 3210, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_318", "type": 5, "index": 318, "progressStart": 516750, "progress": 3220, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_319", "type": 5, "index": 319, "progressStart": 519970, "progress": 3230, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_320", "type": 5, "index": 320, "progressStart": 523200, "progress": 3240, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_321", "type": 5, "index": 321, "progressStart": 526440, "progress": 3250, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_322", "type": 5, "index": 322, "progressStart": 529690, "progress": 3260, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_323", "type": 5, "index": 323, "progressStart": 532950, "progress": 3270, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_324", "type": 5, "index": 324, "progressStart": 536220, "progress": 3280, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_325", "type": 5, "index": 325, "progressStart": 539500, "progress": 3290, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_326", "type": 5, "index": 326, "progressStart": 542790, "progress": 3300, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_327", "type": 5, "index": 327, "progressStart": 546090, "progress": 3310, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_328", "type": 5, "index": 328, "progressStart": 549400, "progress": 3320, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_329", "type": 5, "index": 329, "progressStart": 552720, "progress": 3330, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_330", "type": 5, "index": 330, "progressStart": 556050, "progress": 3340, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_331", "type": 5, "index": 331, "progressStart": 559390, "progress": 3350, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_332", "type": 5, "index": 332, "progressStart": 562740, "progress": 3360, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_333", "type": 5, "index": 333, "progressStart": 566100, "progress": 3370, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_334", "type": 5, "index": 334, "progressStart": 569470, "progress": 3380, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_335", "type": 5, "index": 335, "progressStart": 572850, "progress": 3390, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_336", "type": 5, "index": 336, "progressStart": 576240, "progress": 3400, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_337", "type": 5, "index": 337, "progressStart": 579640, "progress": 3410, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_338", "type": 5, "index": 338, "progressStart": 583050, "progress": 3420, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_339", "type": 5, "index": 339, "progressStart": 586470, "progress": 3430, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_340", "type": 5, "index": 340, "progressStart": 589900, "progress": 3440, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_341", "type": 5, "index": 341, "progressStart": 593340, "progress": 3450, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_342", "type": 5, "index": 342, "progressStart": 596790, "progress": 3460, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_343", "type": 5, "index": 343, "progressStart": 600250, "progress": 3470, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_344", "type": 5, "index": 344, "progressStart": 603720, "progress": 3480, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_345", "type": 5, "index": 345, "progressStart": 607200, "progress": 3490, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_346", "type": 5, "index": 346, "progressStart": 610690, "progress": 3500, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_347", "type": 5, "index": 347, "progressStart": 614190, "progress": 3510, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_348", "type": 5, "index": 348, "progressStart": 617700, "progress": 3520, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_349", "type": 5, "index": 349, "progressStart": 621220, "progress": 3530, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_350", "type": 5, "index": 350, "progressStart": 624750, "progress": 3540, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_351", "type": 5, "index": 351, "progressStart": 628290, "progress": 3550, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_352", "type": 5, "index": 352, "progressStart": 631840, "progress": 3560, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_353", "type": 5, "index": 353, "progressStart": 635400, "progress": 3570, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_354", "type": 5, "index": 354, "progressStart": 638970, "progress": 3580, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_355", "type": 5, "index": 355, "progressStart": 642550, "progress": 3590, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_356", "type": 5, "index": 356, "progressStart": 646140, "progress": 3600, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_357", "type": 5, "index": 357, "progressStart": 649740, "progress": 3610, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_358", "type": 5, "index": 358, "progressStart": 653350, "progress": 3620, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_359", "type": 5, "index": 359, "progressStart": 656970, "progress": 3630, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_360", "type": 5, "index": 360, "progressStart": 660600, "progress": 3640, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_361", "type": 5, "index": 361, "progressStart": 664240, "progress": 3650, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_362", "type": 5, "index": 362, "progressStart": 667890, "progress": 3660, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_363", "type": 5, "index": 363, "progressStart": 671550, "progress": 3670, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_364", "type": 5, "index": 364, "progressStart": 675220, "progress": 3680, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_365", "type": 5, "index": 365, "progressStart": 678900, "progress": 3690, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_366", "type": 5, "index": 366, "progressStart": 682590, "progress": 3700, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_367", "type": 5, "index": 367, "progressStart": 686290, "progress": 3710, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_368", "type": 5, "index": 368, "progressStart": 690000, "progress": 3720, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_369", "type": 5, "index": 369, "progressStart": 693720, "progress": 3730, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_370", "type": 5, "index": 370, "progressStart": 697450, "progress": 3740, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_371", "type": 5, "index": 371, "progressStart": 701190, "progress": 3750, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_372", "type": 5, "index": 372, "progressStart": 704940, "progress": 3760, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_373", "type": 5, "index": 373, "progressStart": 708700, "progress": 3770, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_374", "type": 5, "index": 374, "progressStart": 712470, "progress": 3780, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_375", "type": 5, "index": 375, "progressStart": 716250, "progress": 3790, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_376", "type": 5, "index": 376, "progressStart": 720040, "progress": 3800, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_377", "type": 5, "index": 377, "progressStart": 723840, "progress": 3810, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_378", "type": 5, "index": 378, "progressStart": 727650, "progress": 3820, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_379", "type": 5, "index": 379, "progressStart": 731470, "progress": 3830, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_380", "type": 5, "index": 380, "progressStart": 735300, "progress": 3840, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_381", "type": 5, "index": 381, "progressStart": 739140, "progress": 3850, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_382", "type": 5, "index": 382, "progressStart": 742990, "progress": 3860, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_383", "type": 5, "index": 383, "progressStart": 746850, "progress": 3870, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_384", "type": 5, "index": 384, "progressStart": 750720, "progress": 3880, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_385", "type": 5, "index": 385, "progressStart": 754600, "progress": 3890, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_386", "type": 5, "index": 386, "progressStart": 758490, "progress": 3900, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_387", "type": 5, "index": 387, "progressStart": 762390, "progress": 3910, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_388", "type": 5, "index": 388, "progressStart": 766300, "progress": 3920, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_389", "type": 5, "index": 389, "progressStart": 770220, "progress": 3930, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_390", "type": 5, "index": 390, "progressStart": 774150, "progress": 3940, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_391", "type": 5, "index": 391, "progressStart": 778090, "progress": 3950, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_392", "type": 5, "index": 392, "progressStart": 782040, "progress": 3960, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_393", "type": 5, "index": 393, "progressStart": 786000, "progress": 3970, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_394", "type": 5, "index": 394, "progressStart": 789970, "progress": 3980, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_395", "type": 5, "index": 395, "progressStart": 793950, "progress": 3990, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_396", "type": 5, "index": 396, "progressStart": 797940, "progress": 4000, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_397", "type": 5, "index": 397, "progressStart": 801940, "progress": 4010, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_398", "type": 5, "index": 398, "progressStart": 805950, "progress": 4020, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_399", "type": 5, "index": 399, "progressStart": 809970, "progress": 4030, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_400", "type": 5, "index": 400, "progressStart": 814000, "progress": 4040, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_401", "type": 5, "index": 401, "progressStart": 818040, "progress": 4050, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_402", "type": 5, "index": 402, "progressStart": 822090, "progress": 4060, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_403", "type": 5, "index": 403, "progressStart": 826150, "progress": 4070, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_404", "type": 5, "index": 404, "progressStart": 830220, "progress": 4080, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_405", "type": 5, "index": 405, "progressStart": 834300, "progress": 4090, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_406", "type": 5, "index": 406, "progressStart": 838390, "progress": 4100, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_407", "type": 5, "index": 407, "progressStart": 842490, "progress": 4110, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_408", "type": 5, "index": 408, "progressStart": 846600, "progress": 4120, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_409", "type": 5, "index": 409, "progressStart": 850720, "progress": 4130, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_410", "type": 5, "index": 410, "progressStart": 854850, "progress": 4140, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_411", "type": 5, "index": 411, "progressStart": 858990, "progress": 4150, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_412", "type": 5, "index": 412, "progressStart": 863140, "progress": 4160, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_413", "type": 5, "index": 413, "progressStart": 867300, "progress": 4170, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_414", "type": 5, "index": 414, "progressStart": 871470, "progress": 4180, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_415", "type": 5, "index": 415, "progressStart": 875650, "progress": 4190, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_416", "type": 5, "index": 416, "progressStart": 879840, "progress": 4200, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_417", "type": 5, "index": 417, "progressStart": 884040, "progress": 4210, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_418", "type": 5, "index": 418, "progressStart": 888250, "progress": 4220, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_419", "type": 5, "index": 419, "progressStart": 892470, "progress": 4230, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_420", "type": 5, "index": 420, "progressStart": 896700, "progress": 4240, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_421", "type": 5, "index": 421, "progressStart": 900940, "progress": 4250, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_422", "type": 5, "index": 422, "progressStart": 905190, "progress": 4260, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_423", "type": 5, "index": 423, "progressStart": 909450, "progress": 4270, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_424", "type": 5, "index": 424, "progressStart": 913720, "progress": 4280, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_425", "type": 5, "index": 425, "progressStart": 918000, "progress": 4290, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_426", "type": 5, "index": 426, "progressStart": 922290, "progress": 4300, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_427", "type": 5, "index": 427, "progressStart": 926590, "progress": 4310, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_428", "type": 5, "index": 428, "progressStart": 930900, "progress": 4320, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_429", "type": 5, "index": 429, "progressStart": 935220, "progress": 4330, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_430", "type": 5, "index": 430, "progressStart": 939550, "progress": 4340, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_431", "type": 5, "index": 431, "progressStart": 943890, "progress": 4350, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_432", "type": 5, "index": 432, "progressStart": 948240, "progress": 4360, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_433", "type": 5, "index": 433, "progressStart": 952600, "progress": 4370, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_434", "type": 5, "index": 434, "progressStart": 956970, "progress": 4380, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_435", "type": 5, "index": 435, "progressStart": 961350, "progress": 4390, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_436", "type": 5, "index": 436, "progressStart": 965740, "progress": 4400, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_437", "type": 5, "index": 437, "progressStart": 970140, "progress": 4410, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_438", "type": 5, "index": 438, "progressStart": 974550, "progress": 4420, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_439", "type": 5, "index": 439, "progressStart": 978970, "progress": 4430, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_440", "type": 5, "index": 440, "progressStart": 983400, "progress": 4440, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_441", "type": 5, "index": 441, "progressStart": 987840, "progress": 4450, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_442", "type": 5, "index": 442, "progressStart": 992290, "progress": 4460, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_443", "type": 5, "index": 443, "progressStart": 996750, "progress": 4470, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_444", "type": 5, "index": 444, "progressStart": 1001220, "progress": 4480, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_445", "type": 5, "index": 445, "progressStart": 1005700, "progress": 4490, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_446", "type": 5, "index": 446, "progressStart": 1010190, "progress": 4500, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_447", "type": 5, "index": 447, "progressStart": 1014690, "progress": 4510, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_448", "type": 5, "index": 448, "progressStart": 1019200, "progress": 4520, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_449", "type": 5, "index": 449, "progressStart": 1023720, "progress": 4530, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_450", "type": 5, "index": 450, "progressStart": 1028250, "progress": 4540, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_451", "type": 5, "index": 451, "progressStart": 1032790, "progress": 4550, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_452", "type": 5, "index": 452, "progressStart": 1037340, "progress": 4560, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_453", "type": 5, "index": 453, "progressStart": 1041900, "progress": 4570, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_454", "type": 5, "index": 454, "progressStart": 1046470, "progress": 4580, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_455", "type": 5, "index": 455, "progressStart": 1051050, "progress": 4590, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_456", "type": 5, "index": 456, "progressStart": 1055640, "progress": 4600, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_457", "type": 5, "index": 457, "progressStart": 1060240, "progress": 4610, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_458", "type": 5, "index": 458, "progressStart": 1064850, "progress": 4620, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_459", "type": 5, "index": 459, "progressStart": 1069470, "progress": 4630, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_460", "type": 5, "index": 460, "progressStart": 1074100, "progress": 4640, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_461", "type": 5, "index": 461, "progressStart": 1078740, "progress": 4650, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_462", "type": 5, "index": 462, "progressStart": 1083390, "progress": 4660, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_463", "type": 5, "index": 463, "progressStart": 1088050, "progress": 4670, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_464", "type": 5, "index": 464, "progressStart": 1092720, "progress": 4680, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_465", "type": 5, "index": 465, "progressStart": 1097400, "progress": 4690, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_466", "type": 5, "index": 466, "progressStart": 1102090, "progress": 4700, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_467", "type": 5, "index": 467, "progressStart": 1106790, "progress": 4710, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_468", "type": 5, "index": 468, "progressStart": 1111500, "progress": 4720, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_469", "type": 5, "index": 469, "progressStart": 1116220, "progress": 4730, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_470", "type": 5, "index": 470, "progressStart": 1120950, "progress": 4740, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_471", "type": 5, "index": 471, "progressStart": 1125690, "progress": 4750, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_472", "type": 5, "index": 472, "progressStart": 1130440, "progress": 4760, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_473", "type": 5, "index": 473, "progressStart": 1135200, "progress": 4770, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_474", "type": 5, "index": 474, "progressStart": 1139970, "progress": 4780, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_475", "type": 5, "index": 475, "progressStart": 1144750, "progress": 4790, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_476", "type": 5, "index": 476, "progressStart": 1149540, "progress": 4800, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_477", "type": 5, "index": 477, "progressStart": 1154340, "progress": 4810, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_478", "type": 5, "index": 478, "progressStart": 1159150, "progress": 4820, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_479", "type": 5, "index": 479, "progressStart": 1163970, "progress": 4830, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_480", "type": 5, "index": 480, "progressStart": 1168800, "progress": 4840, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_481", "type": 5, "index": 481, "progressStart": 1173640, "progress": 4850, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_482", "type": 5, "index": 482, "progressStart": 1178490, "progress": 4860, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_483", "type": 5, "index": 483, "progressStart": 1183350, "progress": 4870, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_484", "type": 5, "index": 484, "progressStart": 1188220, "progress": 4880, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_485", "type": 5, "index": 485, "progressStart": 1193100, "progress": 4890, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_486", "type": 5, "index": 486, "progressStart": 1197990, "progress": 4900, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_487", "type": 5, "index": 487, "progressStart": 1202890, "progress": 4910, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_488", "type": 5, "index": 488, "progressStart": 1207800, "progress": 4920, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_489", "type": 5, "index": 489, "progressStart": 1212720, "progress": 4930, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_490", "type": 5, "index": 490, "progressStart": 1217650, "progress": 4940, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_491", "type": 5, "index": 491, "progressStart": 1222590, "progress": 4950, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_492", "type": 5, "index": 492, "progressStart": 1227540, "progress": 4960, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_493", "type": 5, "index": 493, "progressStart": 1232500, "progress": 4970, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_494", "type": 5, "index": 494, "progressStart": 1237470, "progress": 4980, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_495", "type": 5, "index": 495, "progressStart": 1242450, "progress": 4990, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_496", "type": 5, "index": 496, "progressStart": 1247440, "progress": 5000, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_497", "type": 5, "index": 497, "progressStart": 1252440, "progress": 5010, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_5_498", "type": 5, "index": 498, "progressStart": 1257450, "progress": 5020, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 11, "primaryLvlUpRewardCount": 20, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_0", "type": 6, "index": 0, "progressStart": 0, "progress": 5, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_1", "type": 6, "index": 1, "progressStart": 5, "progress": 5, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Shaman", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_2", "type": 6, "index": 2, "progressStart": 10, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_3", "type": 6, "index": 3, "progressStart": 20, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 13, "primaryLvlUpRewardCount": 0, "primaryLvlUpRewardExtraData": 2, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_4", "type": 6, "index": 4, "progressStart": 30, "progress": 10, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_5", "type": 6, "index": 5, "progressStart": 40, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Gunslinger", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_6", "type": 6, "index": 6, "progressStart": 60, "progress": 40, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 9, "primaryLvlUpRewardCount": 200, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_7", "type": 6, "index": 7, "progressStart": 100, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 13, "primaryLvlUpRewardCount": 0, "primaryLvlUpRewardExtraData": 3, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_8", "type": 6, "index": 8, "progressStart": 150, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_9", "type": 6, "index": 9, "progressStart": 200, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "BullDude", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_10", "type": 6, "index": 10, "progressStart": 250, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_11", "type": 6, "index": 11, "progressStart": 300, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 13, "primaryLvlUpRewardCount": 0, "primaryLvlUpRewardExtraData": 7, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_12", "type": 6, "index": 12, "progressStart": 350, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_13", "type": 6, "index": 13, "progressStart": 400, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_14", "type": 6, "index": 14, "progressStart": 450, "progress": 50, "league": 1, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Mechanic", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_15", "type": 6, "index": 15, "progressStart": 500, "progress": 50, "league": 1, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_16", "type": 6, "index": 16, "progressStart": 550, "progress": 50, "league": 1, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_17", "type": 6, "index": 17, "progressStart": 600, "progress": 50, "league": 1, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_18", "type": 6, "index": 18, "progressStart": 650, "progress": 50, "league": 1, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_19", "type": 6, "index": 19, "progressStart": 700, "progress": 50, "league": 1, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_20", "type": 6, "index": 20, "progressStart": 750, "progress": 50, "league": 1, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 13, "primaryLvlUpRewardCount": 0, "primaryLvlUpRewardExtraData": 4, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_21", "type": 6, "index": 21, "progressStart": 800, "progress": 50, "league": 1, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_22", "type": 6, "index": 22, "progressStart": 850, "progress": 50, "league": 1, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_23", "type": 6, "index": 23, "progressStart": 900, "progress": 50, "league": 1, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 7, "primaryLvlUpRewardCount": 10, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_24", "type": 6, "index": 24, "progressStart": 950, "progress": 50, "league": 2, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "RocketGirl", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_25", "type": 6, "index": 25, "progressStart": 1000, "progress": 100, "league": 2, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_26", "type": 6, "index": 26, "progressStart": 1100, "progress": 100, "league": 2, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_27", "type": 6, "index": 27, "progressStart": 1200, "progress": 100, "league": 2, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 75, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_28", "type": 6, "index": 28, "progressStart": 1300, "progress": 100, "league": 2, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_29", "type": 6, "index": 29, "progressStart": 1400, "progress": 100, "league": 2, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_30", "type": 6, "index": 30, "progressStart": 1500, "progress": 100, "league": 2, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 13, "primaryLvlUpRewardCount": 0, "primaryLvlUpRewardExtraData": 8, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_31", "type": 6, "index": 31, "progressStart": 1600, "progress": 100, "league": 2, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_32", "type": 6, "index": 32, "progressStart": 1700, "progress": 100, "league": 2, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_33", "type": 6, "index": 33, "progressStart": 1800, "progress": 100, "league": 2, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_34", "type": 6, "index": 34, "progressStart": 1900, "progress": 100, "league": 3, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "TntDude", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_35", "type": 6, "index": 35, "progressStart": 2000, "progress": 100, "league": 3, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_36", "type": 6, "index": 36, "progressStart": 2100, "progress": 100, "league": 3, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_37", "type": 6, "index": 37, "progressStart": 2200, "progress": 100, "league": 3, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_38", "type": 6, "index": 38, "progressStart": 2300, "progress": 100, "league": 3, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_39", "type": 6, "index": 39, "progressStart": 2400, "progress": 100, "league": 3, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_40", "type": 6, "index": 40, "progressStart": 2500, "progress": 100, "league": 3, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_41", "type": 6, "index": 41, "progressStart": 2600, "progress": 100, "league": 3, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_42", "type": 6, "index": 42, "progressStart": 2700, "progress": 100, "league": 3, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_43", "type": 6, "index": 43, "progressStart": 2800, "progress": 100, "league": 3, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_44", "type": 6, "index": 44, "progressStart": 2900, "progress": 100, "league": 4, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "BowDude", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_45", "type": 6, "index": 45, "progressStart": 3000, "progress": 100, "league": 4, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_46", "type": 6, "index": 46, "progressStart": 3100, "progress": 100, "league": 4, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_47", "type": 6, "index": 47, "progressStart": 3200, "progress": 100, "league": 4, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 300, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_48", "type": 6, "index": 48, "progressStart": 3300, "progress": 100, "league": 4, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_49", "type": 6, "index": 49, "progressStart": 3400, "progress": 100, "league": 4, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_50", "type": 6, "index": 50, "progressStart": 3500, "progress": 100, "league": 4, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 9, "primaryLvlUpRewardCount": 600, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_51", "type": 6, "index": 51, "progressStart": 3600, "progress": 100, "league": 4, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_52", "type": 6, "index": 52, "progressStart": 3700, "progress": 100, "league": 4, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_53", "type": 6, "index": 53, "progressStart": 3800, "progress": 100, "league": 4, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_54", "type": 6, "index": 54, "progressStart": 3900, "progress": 100, "league": 5, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "ClusterBombDude", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_55", "type": 6, "index": 55, "progressStart": 4000, "progress": 150, "league": 5, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_56", "type": 6, "index": 56, "progressStart": 4150, "progress": 150, "league": 5, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_57", "type": 6, "index": 57, "progressStart": 4300, "progress": 200, "league": 5, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_58", "type": 6, "index": 58, "progressStart": 4500, "progress": 250, "league": 5, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_59", "type": 6, "index": 59, "progressStart": 4750, "progress": 250, "league": 5, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_60", "type": 6, "index": 60, "progressStart": 5000, "progress": 150, "league": 5, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_61", "type": 6, "index": 61, "progressStart": 5150, "progress": 150, "league": 5, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_62", "type": 6, "index": 62, "progressStart": 5300, "progress": 200, "league": 5, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_63", "type": 6, "index": 63, "progressStart": 5500, "progress": 250, "league": 5, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_64", "type": 6, "index": 64, "progressStart": 5750, "progress": 250, "league": 6, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Arcade", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_65", "type": 6, "index": 65, "progressStart": 6000, "progress": 150, "league": 6, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_66", "type": 6, "index": 66, "progressStart": 6150, "progress": 150, "league": 6, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_67", "type": 6, "index": 67, "progressStart": 6300, "progress": 200, "league": 6, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 75, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_68", "type": 6, "index": 68, "progressStart": 6500, "progress": 250, "league": 6, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_69", "type": 6, "index": 69, "progressStart": 6750, "progress": 250, "league": 6, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_70", "type": 6, "index": 70, "progressStart": 7000, "progress": 150, "league": 6, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_71", "type": 6, "index": 71, "progressStart": 7150, "progress": 150, "league": 6, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_72", "type": 6, "index": 72, "progressStart": 7300, "progress": 200, "league": 6, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_73", "type": 6, "index": 73, "progressStart": 7500, "progress": 250, "league": 6, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_74", "type": 6, "index": 74, "progressStart": 7750, "progress": 250, "league": 7, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Mummy", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_75", "type": 6, "index": 75, "progressStart": 8000, "progress": 150, "league": 7, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_76", "type": 6, "index": 76, "progressStart": 8150, "progress": 150, "league": 7, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_77", "type": 6, "index": 77, "progressStart": 8300, "progress": 200, "league": 7, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_78", "type": 6, "index": 78, "progressStart": 8500, "progress": 250, "league": 7, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_79", "type": 6, "index": 79, "progressStart": 8750, "progress": 250, "league": 7, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_80", "type": 6, "index": 80, "progressStart": 9000, "progress": 150, "league": 7, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_81", "type": 6, "index": 81, "progressStart": 9150, "progress": 150, "league": 7, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_82", "type": 6, "index": 82, "progressStart": 9300, "progress": 200, "league": 7, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_83", "type": 6, "index": 83, "progressStart": 9500, "progress": 250, "league": 7, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_84", "type": 6, "index": 84, "progressStart": 9750, "progress": 250, "league": 8, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_85", "type": 6, "index": 85, "progressStart": 10000, "progress": 500, "league": 8, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_86", "type": 6, "index": 86, "progressStart": 10500, "progress": 500, "league": 8, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 300, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_87", "type": 6, "index": 87, "progressStart": 11000, "progress": 500, "league": 8, "tier": 1, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_88", "type": 6, "index": 88, "progressStart": 11500, "progress": 500, "league": 8, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_89", "type": 6, "index": 89, "progressStart": 12000, "progress": 500, "league": 8, "tier": 2, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_90", "type": 6, "index": 90, "progressStart": 12500, "progress": 500, "league": 8, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 300, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_91", "type": 6, "index": 91, "progressStart": 13000, "progress": 500, "league": 8, "tier": 3, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_92", "type": 6, "index": 92, "progressStart": 13500, "progress": 500, "league": 8, "tier": 4, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_6_93", "type": 6, "index": 93, "progressStart": 14000, "progress": 500, "league": 8, "tier": 4, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 150, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_0", "type": 7, "index": 0, "progressStart": 0, "progress": 0, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_1", "type": 7, "index": 1, "progressStart": 0, "progress": 20, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_2", "type": 7, "index": 2, "progressStart": 20, "progress": 30, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_3", "type": 7, "index": 3, "progressStart": 50, "progress": 50, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_4", "type": 7, "index": 4, "progressStart": 100, "progress": 80, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_5", "type": 7, "index": 5, "progressStart": 180, "progress": 130, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_6", "type": 7, "index": 6, "progressStart": 310, "progress": 210, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_7", "type": 7, "index": 7, "progressStart": 520, "progress": 340, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "goal_7_8", "type": 7, "index": 8, "progressStart": 860, "progress": 550, "league": 0, "tier": 0, "season": null, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": -1, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_0", "type": 8, "index": 0, "progressStart": 0, "progress": 25, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_1", "type": 8, "index": 1, "progressStart": 25, "progress": 50, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_2", "type": 8, "index": 2, "progressStart": 75, "progress": 100, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_3", "type": 8, "index": 3, "progressStart": 175, "progress": 175, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_4", "type": 8, "index": 4, "progressStart": 350, "progress": 275, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_5", "type": 8, "index": 5, "progressStart": 625, "progress": 400, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_6", "type": 8, "index": 6, "progressStart": 1025, "progress": 550, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_7", "type": 8, "index": 7, "progressStart": 1575, "progress": 750, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_8", "type": 8, "index": 8, "progressStart": 2325, "progress": 1000, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_9", "type": 8, "index": 9, "progressStart": 3325, "progress": 1300, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_10", "type": 8, "index": 10, "progressStart": 4625, "progress": 1650, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_11", "type": 8, "index": 11, "progressStart": 6275, "progress": 2050, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_12", "type": 8, "index": 12, "progressStart": 8325, "progress": 2500, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_13", "type": 8, "index": 13, "progressStart": 10825, "progress": 3000, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_14", "type": 8, "index": 14, "progressStart": 13825, "progress": 3550, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_15", "type": 8, "index": 15, "progressStart": 17375, "progress": 4150, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_16", "type": 8, "index": 16, "progressStart": 21525, "progress": 4800, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_17", "type": 8, "index": 17, "progressStart": 26325, "progress": 5500, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_18", "type": 8, "index": 18, "progressStart": 31825, "progress": 6250, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_19", "type": 8, "index": 19, "progressStart": 38075, "progress": 7050, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_20", "type": 8, "index": 20, "progressStart": 45125, "progress": 7900, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_21", "type": 8, "index": 21, "progressStart": 53025, "progress": 8800, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_22", "type": 8, "index": 22, "progressStart": 61825, "progress": 9750, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_23", "type": 8, "index": 23, "progressStart": 71575, "progress": 10750, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_24", "type": 8, "index": 24, "progressStart": 82325, "progress": 11800, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_25", "type": 8, "index": 25, "progressStart": 94125, "progress": 12900, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_26", "type": 8, "index": 26, "progressStart": 107025, "progress": 14050, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_27", "type": 8, "index": 27, "progressStart": 121075, "progress": 15250, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_28", "type": 8, "index": 28, "progressStart": 136325, "progress": 16500, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_29", "type": 8, "index": 29, "progressStart": 152825, "progress": 17800, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_30", "type": 8, "index": 30, "progressStart": 170625, "progress": 19150, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_31", "type": 8, "index": 31, "progressStart": 189775, "progress": 20550, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_32", "type": 8, "index": 32, "progressStart": 210325, "progress": 22000, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_33", "type": 8, "index": 33, "progressStart": 232325, "progress": 23500, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_34", "type": 8, "index": 34, "progressStart": 255825, "progress": 25050, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_35", "type": 8, "index": 35, "progressStart": 280875, "progress": 26650, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_36", "type": 8, "index": 36, "progressStart": 307525, "progress": 28300, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_37", "type": 8, "index": 37, "progressStart": 335825, "progress": 30000, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_38", "type": 8, "index": 38, "progressStart": 365825, "progress": 31750, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_39", "type": 8, "index": 39, "progressStart": 397575, "progress": 33550, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_40", "type": 8, "index": 40, "progressStart": 431125, "progress": 35400, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_41", "type": 8, "index": 41, "progressStart": 466525, "progress": 37300, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_42", "type": 8, "index": 42, "progressStart": 503825, "progress": 39250, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_43", "type": 8, "index": 43, "progressStart": 543075, "progress": 41250, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_44", "type": 8, "index": 44, "progressStart": 584325, "progress": 43300, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_45", "type": 8, "index": 45, "progressStart": 627625, "progress": 45400, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_46", "type": 8, "index": 46, "progressStart": 673025, "progress": 47550, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_47", "type": 8, "index": 47, "progressStart": 720575, "progress": 49750, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_48", "type": 8, "index": 48, "progressStart": 770325, "progress": 52000, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_49", "type": 8, "index": 49, "progressStart": 822325, "progress": 54300, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_8_50", "type": 8, "index": 50, "progressStart": 876625, "progress": 56650, "league": null, "tier": null, "season": null, "seasonEndRewardKeys": null, "primaryLvlUpRewardType": null, "primaryLvlUpRewardCount": null, "primaryLvlUpRewardExtraData": null, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": null, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_0", "type": 9, "index": 0, "progressStart": 0, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_1", "type": 9, "index": 1, "progressStart": 10, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_2", "type": 9, "index": 2, "progressStart": 20, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_3", "type": 9, "index": 3, "progressStart": 30, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_4", "type": 9, "index": 4, "progressStart": 40, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 7, "primaryLvlUpRewardCount": 30, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_5", "type": 9, "index": 5, "progressStart": 50, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Crow", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_6", "type": 9, "index": 6, "progressStart": 60, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_7", "type": 9, "index": 7, "progressStart": 70, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 100, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_8", "type": 9, "index": 8, "progressStart": 80, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_0_9", "type": 9, "index": 9, "progressStart": 90, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_0", "type": 9, "index": 0, "progressStart": 0, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_1", "type": 9, "index": 1, "progressStart": 10, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_2", "type": 9, "index": 2, "progressStart": 20, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_3", "type": 9, "index": 3, "progressStart": 30, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_4", "type": 9, "index": 4, "progressStart": 40, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 7, "primaryLvlUpRewardCount": 30, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_5", "type": 9, "index": 5, "progressStart": 50, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 3, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": "Cactus", "secondaryLvlUpRewardType": 6, "secondaryLvlUpRewardCount": 1, "secondaryLvlUpRewardExtraData": 0, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_6", "type": 9, "index": 6, "progressStart": 60, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_7", "type": 9, "index": 7, "progressStart": 70, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 100, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_8", "type": 9, "index": 8, "progressStart": 80, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 25, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_9_1_9", "type": 9, "index": 9, "progressStart": 90, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 10, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_0", "type": 10, "index": 0, "progressStart": 0, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_1", "type": 10, "index": 1, "progressStart": 10, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_2", "type": 10, "index": 2, "progressStart": 20, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 12, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_3", "type": 10, "index": 3, "progressStart": 30, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_4", "type": 10, "index": 4, "progressStart": 40, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_5", "type": 10, "index": 5, "progressStart": 50, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_6", "type": 10, "index": 6, "progressStart": 60, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_7", "type": 10, "index": 7, "progressStart": 70, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_8", "type": 10, "index": 8, "progressStart": 80, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_0_9", "type": 10, "index": 9, "progressStart": 90, "progress": 10, "league": 0, "tier": 0, "season": 0, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_0", "type": 10, "index": 0, "progressStart": 0, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_1", "type": 10, "index": 1, "progressStart": 10, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_2", "type": 10, "index": 2, "progressStart": 20, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_3", "type": 10, "index": 3, "progressStart": 30, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_4", "type": 10, "index": 4, "progressStart": 40, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_5", "type": 10, "index": 5, "progressStart": 50, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_6", "type": 10, "index": 6, "progressStart": 60, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_7", "type": 10, "index": 7, "progressStart": 70, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 14, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_8", "type": 10, "index": 8, "progressStart": 80, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 1, "primaryLvlUpRewardCount": 50, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}, {"name": "Goal_10_1_9", "type": 10, "index": 9, "progressStart": 90, "progress": 10, "league": 0, "tier": 0, "season": 1, "seasonEndRewardKeys": 0, "primaryLvlUpRewardType": 6, "primaryLvlUpRewardCount": 1, "primaryLvlUpRewardExtraData": 0, "primaryLvlUpRewardHero": null, "secondaryLvlUpRewardType": -1, "secondaryLvlUpRewardCount": null, "secondaryLvlUpRewardExtraData": null, "secondaryLvlUpRewardHero": null}], "name_colors": [{"name": "default", "colorCode": "0xffffffff", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 0, "scId": 43000000}, {"name": 1, "colorCode": "0xff4ddba2", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 2, "scId": 43000001}, {"name": 2, "colorCode": "0xffffce89", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 7, "scId": 43000002}, {"name": 3, "colorCode": "0xfff9c908", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 6, "scId": 43000003}, {"name": 4, "colorCode": "0xffff9727", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 3, "scId": 43000004}, {"name": 5, "colorCode": "0xfff9775d", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 4, "scId": 43000005}, {"name": 6, "colorCode": "0xfff05637", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 5, "scId": 43000006}, {"name": 7, "colorCode": "0xffff8afb", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 10, "scId": 43000007}, {"name": 8, "colorCode": "0xffa2e3fe", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 1, "scId": 43000008}, {"name": 9, "colorCode": "0xff1ba5f5", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 9, "scId": 43000009}, {"name": 10, "colorCode": "0xffcb5aff", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 11, "scId": 43000010}, {"name": 11, "colorCode": "0xffa8e132", "gradient": null, "requiredExpLevel": null, "requiredTotalTrophies": null, "requiredSeasonPoints": null, "requiredHero": null, "sortOrder": 8, "scId": 43000011}], "pins": [{"name": "pinHp0", "pinType": 1, "rarity": 0, "index": 0, "bonus": 1, "craftCost": 20, "id": 35}, {"name": "pinHp1", "pinType": 1, "rarity": 0, "index": 1, "bonus": 1, "craftCost": 20, "id": 36}, {"name": "pinHp2", "pinType": 1, "rarity": 0, "index": 2, "bonus": 1, "craftCost": 20, "id": 37}, {"name": "pinAtt0", "pinType": 2, "rarity": 0, "index": 0, "bonus": 1, "craftCost": 20, "id": 38}, {"name": "pinAtt1", "pinType": 2, "rarity": 0, "index": 1, "bonus": 1, "craftCost": 20, "id": 39}, {"name": "pinAtt2", "pinType": 2, "rarity": 0, "index": 2, "bonus": 1, "craftCost": 20, "id": 40}, {"name": "pinUlti0", "pinType": 3, "rarity": 0, "index": 0, "bonus": 1, "craftCost": 20, "id": 41}, {"name": "pinUlti1", "pinType": 3, "rarity": 0, "index": 1, "bonus": 1, "craftCost": 20, "id": 42}, {"name": "pinUlti2", "pinType": 3, "rarity": 0, "index": 2, "bonus": 1, "craftCost": 20, "id": 43}, {"name": "badgeHp0", "pinType": 1, "rarity": 1, "index": 0, "bonus": 2, "craftCost": 50, "id": 44}, {"name": "badgeHp1", "pinType": 1, "rarity": 1, "index": 1, "bonus": 2, "craftCost": 50, "id": 45}, {"name": "badgeAtt0", "pinType": 2, "rarity": 1, "index": 0, "bonus": 2, "craftCost": 50, "id": 46}, {"name": "bargeAtt1", "pinType": 2, "rarity": 1, "index": 1, "bonus": 2, "craftCost": 50, "id": 47}, {"name": "badgeUlti0", "pinType": 3, "rarity": 1, "index": 0, "bonus": 2, "craftCost": 50, "id": 48}, {"name": "badgeUlti1", "pinType": 3, "rarity": 1, "index": 1, "bonus": 2, "craftCost": 50, "id": 49}, {"name": "medalHp", "pinType": 1, "rarity": 2, "index": 0, "bonus": 3, "craftCost": 120, "id": 50}, {"name": "medalAtt", "pinType": 2, "rarity": 2, "index": 0, "bonus": 3, "craftCost": 120, "id": 51}, {"name": "medalUlti", "pinType": 3, "rarity": 2, "index": 0, "bonus": 3, "craftCost": 120, "id": 52}, {"name": "crest0", "pinType": 4, "rarity": 3, "index": 0, "bonus": 4, "craftCost": 300, "id": 53}, {"name": "crest1", "pinType": 4, "rarity": 3, "index": 1, "bonus": 4, "craftCost": 300, "id": 54}, {"name": "crest2", "pinType": 4, "rarity": 3, "index": 2, "bonus": 4, "craftCost": 300, "id": 55}, {"name": "brawlstar", "pinType": 5, "rarity": 4, "index": 0, "bonus": 8, "craftCost": 1000, "id": 56}], "player_thumbnails": [{"name": "base1", "requiredExpLevel": 1, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_00", "sortOrder": 0, "id": 28, "scId": 28000000}, {"name": "base2", "requiredExpLevel": 10, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_01", "sortOrder": 1, "id": 29, "scId": 28000001}, {"name": "base3", "requiredExpLevel": 20, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_02", "sortOrder": 2, "id": 30, "scId": 28000002}, {"name": "hero1", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "ShotgunGirl", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_shelly", "sortOrder": 101, "id": 31, "scId": 28000003}, {"name": "hero2", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Gunslinger", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_colt", "sortOrder": 103, "id": 32, "scId": 28000004}, {"name": "hero3", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "RocketGirl", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_brock", "sortOrder": 106, "id": 33, "scId": 28000005}, {"name": "hero4", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Mechanic", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_jess", "sortOrder": 105, "id": 34, "scId": 28000006}, {"name": "hero5", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Shaman", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_nita", "sortOrder": 102, "id": 35, "scId": 28000007}, {"name": "hero6", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "TntDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_mike", "sortOrder": 107, "id": 36, "scId": 28000008}, {"name": "hero7", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Luchador", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_primo", "sortOrder": 201, "id": 37, "scId": 28000009}, {"name": "hero8", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "BullDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_bull", "sortOrder": 104, "id": 38, "scId": 28000010}, {"name": "hero9", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "TrickshotDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_rick", "sortOrder": 301, "id": 39, "scId": 28000011}, {"name": "hero10", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Barkeep", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_barley", "sortOrder": 202, "id": 40, "scId": 28000012}, {"name": "hero11", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "DeadMariachi", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_poco", "sortOrder": 203, "id": 41, "scId": 28000013}, {"name": "hero12", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Undertaker", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_mortis", "sortOrder": 501, "id": 42, "scId": 28000014}, {"name": "hero13", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "BowDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_bo", "sortOrder": 108, "id": 43, "scId": 28000015}, {"name": "hero14", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Cactus", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_spike", "sortOrder": 601, "id": 44, "scId": 28000016}, {"name": "hero15", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Crow", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_crow", "sortOrder": 602, "id": 45, "scId": 28000017}, {"name": "hero16", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Sniper", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_piper", "sortOrder": 401, "id": 46, "scId": 28000018}, {"name": "base4", "requiredExpLevel": 40, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_03", "sortOrder": 3, "id": 47, "scId": 28000019}, {"name": "base5", "requiredExpLevel": 60, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_04", "sortOrder": 4, "id": 48, "scId": 28000020}, {"name": "base6", "requiredExpLevel": 80, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_05", "sortOrder": 5, "id": 49, "scId": 28000021}, {"name": "base7", "requiredExpLevel": 100, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_06", "sortOrder": 6, "id": 50, "scId": 28000022}, {"name": "base8", "requiredExpLevel": 120, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_07", "sortOrder": 7, "id": 51, "scId": 28000023}, {"name": "trophy1", "requiredExpLevel": 0, "requiredTotalTrophies": 500, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_trophy_00", "sortOrder": 8, "id": 52, "scId": 28000024}, {"name": "trophy2", "requiredExpLevel": 0, "requiredTotalTrophies": 1000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_trophy_01", "sortOrder": 9, "id": 53, "scId": 28000025}, {"name": "trophy3", "requiredExpLevel": 0, "requiredTotalTrophies": 2000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_trophy_02", "sortOrder": 10, "id": 54, "scId": 28000026}, {"name": "trophy4", "requiredExpLevel": 0, "requiredTotalTrophies": 3000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_trophy_03", "sortOrder": 11, "id": 55, "scId": 28000027}, {"name": "hero17", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "MinigunDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_mj", "sortOrder": 402, "id": 56, "scId": 28000028}, {"name": "hero18", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "BlackHole", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_taro", "sortOrder": 502, "id": 57, "scId": 28000029}, {"name": "trophy5", "requiredExpLevel": 0, "requiredTotalTrophies": 5000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_elite_00", "sortOrder": 12, "id": 58, "scId": 28000030}, {"name": "trophy6", "requiredExpLevel": 0, "requiredTotalTrophies": 7000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_elite_01", "sortOrder": 13, "id": 59, "scId": 28000031}, {"name": "trophy7", "requiredExpLevel": 0, "requiredTotalTrophies": 10000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_elite_02", "sortOrder": 14, "id": 60, "scId": 28000032}, {"name": "trophy8", "requiredExpLevel": 0, "requiredTotalTrophies": 13000, "requiredSeasonPoints": null, "requiredHero": null, "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_elite_03", "sortOrder": 15, "id": 61, "scId": 28000033}, {"name": "hero19", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "BarrelBot", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_barrelbot", "sortOrder": 302, "id": 62, "scId": 28000034}, {"name": "hero20", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "ArtilleryDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_penny", "sortOrder": 303, "id": 63, "scId": 28000035}, {"name": "hero21", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "HammerDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_frank", "sortOrder": 403, "id": 64, "scId": 28000036}, {"name": "hero22", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Ninja", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_leon", "sortOrder": 603, "id": 65, "scId": 28000037}, {"name": "hero23", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "HookDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_gene", "sortOrder": 503, "id": 66, "scId": 28000038}, {"name": "hero24", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Whirlwind", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_carl", "sortOrder": 304, "id": 67, "scId": 28000039}, {"name": "hero25", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Rosa", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_rosa", "sortOrder": 204, "id": 68, "scId": 28000040}, {"name": "hero26", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Baseball", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_bibi", "sortOrder": 404, "id": 69, "scId": 28000041}, {"name": "hero27", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "ClusterBombDude", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_tick", "sortOrder": 109, "id": 70, "scId": 28000042}, {"name": "hero28", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Arcade", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_8bit", "sortOrder": 110, "id": 71, "scId": 28000043}, {"name": "hero29", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Sandstorm", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_sandy", "sortOrder": 604, "id": 72, "scId": 28000044}, {"name": "hero30", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Mummy", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_emz", "sortOrder": 111, "id": 73, "scId": 28000045}, {"name": "hero31", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "BeeSniper", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_bea", "sortOrder": 405, "id": 74, "scId": 28000046}, {"name": "hero32", "requiredExpLevel": 0, "requiredTotalTrophies": 0, "requiredSeasonPoints": null, "requiredHero": "Speedy", "iconSWF": "sc/ui.sc", "iconExportName": "player_icon_max", "sortOrder": 504, "id": 75, "scId": 28000047}], "projectiles": [{"name": "ShotgunGirlProjectile", "parentProjectileForSkin": null, "speed": 3100, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bullet_shotgun_def_blue_long", "redExportName": "bullet_shotgun_def_red_long", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "bull_def_atk_reached", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 6}, {"name": "ShotgunGirlUltiProjectile", "parentProjectileForSkin": null, "speed": 4130, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bullet_shotgun_ulti_blue", "redExportName": "bullet_shotgun_ulti_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "shelly_def_ulti_reached", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": true, "piercesEnvironmentLikeButter": null, "pushbackStrength": 70, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 7}, {"name": "Shelly002Projectile", "parentProjectileForSkin": "ShotgunGirlProjectile", "speed": null, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "shelly_attack_anim_blue", "redExportName": "shelly_attack_anim_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "shotgun_trail_small", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 8}, {"name": "Shelly002UltiProjectile", "parentProjectileForSkin": "ShotgunGirlUltiProjectile", "speed": null, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "shelly_ulti_anim_blue", "redExportName": "shelly_ulti_anim_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 9}, {"name": "Shelly003Projectile", "parentProjectileForSkin": "ShotgunGirlProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "shelly_003_atk_projectile", "redExportName": "shelly_003_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "shelly_003_atk_hitEnv", "hitEffectChar": "shelly_003_atk_hit", "maxRangeReachedEffect": "shelly_003_atk_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "shelly_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 10}, {"name": "Shelly003UltiProjectile", "parentProjectileForSkin": "ShotgunGirlUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "shelly_003_ulti_projectile", "redExportName": "shelly_003_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "shelly_003_ulti_reached", "hitEffectChar": "shelly_003_ulti_hit_red", "maxRangeReachedEffect": "shelly_003_ulti_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "shelly_003_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 11}, {"name": "GunslingerProjectile", "parentProjectileForSkin": null, "speed": 3804, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bullet_pistol_def_atk_blue", "redExportName": "bullet_pistol_def_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "colt_def_atk_reached", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 12}, {"name": "GunslingerUltiProjectile", "parentProjectileForSkin": null, "speed": 4891, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bullet_pistol_def_ulti_blue", "redExportName": "bullet_pistol_def_ulti_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "colt_def_ulti_reached", "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 125, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": true, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 13}, {"name": "Colt002Projectile", "parentProjectileForSkin": "GunslingerProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "colt_002_bullet_atk_blue", "redExportName": "colt_002_bullet_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "colt_002_hit", "hitEffectChar": "colt_002_hit", "maxRangeReachedEffect": "colt_def_atk_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 14}, {"name": "Colt002UltiProjectile", "parentProjectileForSkin": "GunslingerUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "colt_002_bullet_ulti_blue", "redExportName": "colt_002_bullet_ulti_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "colt_002_hit", "hitEffectChar": "colt_002_hit", "maxRangeReachedEffect": "colt_def_ulti_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 125, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 15}, {"name": "Colt003Projectile", "parentProjectileForSkin": "GunslingerProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "colt_003_bullet_atk_blue", "redExportName": "colt_003_bullet_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "colt_003_atk_hitEnv", "hitEffectChar": "colt_003_atk_hit", "maxRangeReachedEffect": "colt_003_atk_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 130, "randomStartFrame": 2, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "colt_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 16}, {"name": "Colt003UltiProjectile", "parentProjectileForSkin": "GunslingerUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "colt_003_bullet_ulti_blue", "redExportName": "colt_003_bullet_ulti_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "colt_003_atk_hitEnv", "hitEffectChar": "colt_003_atk_hit", "maxRangeReachedEffect": "colt_003_ulti_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 125, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 17}, {"name": "BullDudeProjectile", "parentProjectileForSkin": null, "speed": 2853, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bullet_shotgun_def_blue_short", "redExportName": "bullet_shotgun_def_red_short", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "bull_def_atk_reached", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 18}, {"name": "RocketGirlProjectile", "parentProjectileForSkin": null, "speed": 3044, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": "brock_def_atk_tail_blue", "redExportName": "brock_def_atk_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_def_atk_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 19}, {"name": "RocketGirlUltiProjectile", "parentProjectileForSkin": null, "speed": 870, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": "brock_def_ulti_tail_blue", "redExportName": "brock_def_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 93, "earlyTicks": 2, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_def_ulti_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 20}, {"name": "Brock002Projectile", "parentProjectileForSkin": "RocketGirlProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": "brock_002_atk_tail_blue", "redExportName": "brock_002_atk_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_002_atk_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 21}, {"name": "Brock002UltiProjectile", "parentProjectileForSkin": "RocketGirlUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": "brock_def_ulti_tail_blue", "redExportName": "brock_def_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 93, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_002_ulti_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 22}, {"name": "Brock003Projectile", "parentProjectileForSkin": "RocketGirlProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_003_atk_blue.scw", "redSCW": "sc3d/brock_003_atk_red.scw", "blueExportName": "brock_def_atk_tail_blue", "redExportName": "brock_def_atk_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_def_atk_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 23}, {"name": "Brock003UltiProjectile", "parentProjectileForSkin": "RocketGirlUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_003_atk_blue.scw", "redSCW": "sc3d/brock_003_atk_red.scw", "blueExportName": "brock_def_ulti_tail_blue", "redExportName": "brock_def_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 93, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_def_ulti_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 24}, {"name": "Brock004Projectile", "parentProjectileForSkin": "RocketGirlProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_004_atk_blue.scw", "redSCW": "sc3d/brock_004_atk_red.scw", "blueExportName": "brock_004_atk_tail_blue", "redExportName": "brock_004_atk_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_004_atk_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 25}, {"name": "Brock004UltiProjectile", "parentProjectileForSkin": "RocketGirlUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_004_atk_blue.scw", "redSCW": "sc3d/brock_004_atk_red.scw", "blueExportName": "brock_004_ulti_tail", "redExportName": "brock_004_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 93, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_004_ulti_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_004_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 26}, {"name": "TrickshotDudeProjectile", "parentProjectileForSkin": null, "speed": 3478, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "rico_def_atk_bullet_blue", "redExportName": "rico_def_atk_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Trickshot_hit_env", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "rico_def_atk_reached", "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": true, "distanceAddFromBounce": 500, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 27}, {"name": "TrickshotDudeUltiProjectile", "parentProjectileForSkin": null, "speed": 4891, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "rico_def_ulti_bullet_blue", "redExportName": "rico_def_ulti_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Trickshot_hit_env", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "rico_def_ulti_reached", "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_ulti_trail_twinkles", "shotByHero": true, "isBeam": null, "isBouncing": true, "distanceAddFromBounce": 500, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 28}, {"name": "Rico002Projectile", "parentProjectileForSkin": "TrickshotDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "rico_002_atk_bullet_blue", "redExportName": "rico_002_atk_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "rico_002_hit_env", "hitEffectChar": "rico_002_hit_env", "maxRangeReachedEffect": "rico_002_atk_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 29}, {"name": "Rico002UltiProjectile", "parentProjectileForSkin": "TrickshotDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "rico_002_ulti_bullet_blue", "redExportName": "rico_002_ulti_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "rico_002_hit_env_ulti", "hitEffectChar": "rico_002_hit_env_ulti", "maxRangeReachedEffect": "rico_002_ulti_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_ulti_trail_twinkles", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 30}, {"name": "Rico003Projectile", "parentProjectileForSkin": "TrickshotDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "rico_003_atk_bullet_blue", "redExportName": "rico_003_atk_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "rico_002_hit_env", "hitEffectChar": "rico_002_hit_env", "maxRangeReachedEffect": "rico_003_atk_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 31}, {"name": "Rico003UltiProjectile", "parentProjectileForSkin": "TrickshotDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "rico_003_ulti_bullet_blue", "redExportName": "rico_003_ulti_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "rico_002_hit_env_ulti", "hitEffectChar": "rico_002_hit_env_ulti", "maxRangeReachedEffect": "rico_003_ulti_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 32}, {"name": "CactusProjectile", "parentProjectileForSkin": null, "speed": 2174, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_def_atk1_projectie", "redExportName": "spike_def_atk1_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "CactusExplosion", "spawnAreaEffectObject2": "CactusSpikeExplosion", "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 33}, {"name": "CactusUltiProjectile", "parentProjectileForSkin": null, "speed": 1739, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_def_ulti_projectile", "redExportName": "spike_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "CactusUltiExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_dust", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 34}, {"name": "CactusSpike", "parentProjectileForSkin": null, "speed": 3261, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_def_atk2_projectile", "redExportName": "spike_def_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "spike_def_atk2_reached", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 35}, {"name": "Spike002Projectile", "parentProjectileForSkin": "CactusProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_002_atk1_projectile_blue", "redExportName": "spike_002_atk1_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Spike_002_atk1_explosion", "spawnAreaEffectObject2": "Spike_002_atk2", "spawnCharacter": null, "spawnItem": null, "trailEffect": "spike_002_atk1_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 36}, {"name": "Spike002UltiProjectile", "parentProjectileForSkin": "CactusUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_002_ulti_projectile_blue", "redExportName": "spike_002_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Spike_002_ulti_explosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "spike_002_atk1_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 37}, {"name": "Spike002Spike", "parentProjectileForSkin": "CactusSpike", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_002_atk2_projectile", "redExportName": "spike_002_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "spike_002_atk2_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 38}, {"name": "Spike003Projectile", "parentProjectileForSkin": "CactusProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_003_atk1_projectile", "redExportName": "spike_003_atk1_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": "Spike_003_atk1_explosion", "spawnAreaEffectObject2": "Spike_003_atk2", "spawnCharacter": null, "spawnItem": null, "trailEffect": "spike_003_atk1_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 39}, {"name": "Spike003Frag", "parentProjectileForSkin": "CactusSpike", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_003_atk2_projectile", "redExportName": "spike_003_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "spike_003_atk2_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 40}, {"name": "Spike003UltiProjectile", "parentProjectileForSkin": "CactusUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "spike_003_ulti_projectile", "redExportName": "spike_003_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Spike_003_ulti_explosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "spike_003_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 41}, {"name": "Jessie002Projectile1", "parentProjectileForSkin": "MechanicProjectile1", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_atk_projectile", "redExportName": "jessie_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_atk_hitEnv", "hitEffectChar": "jessie_002_atk_hit", "maxRangeReachedEffect": "jessie_002_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_002_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Jessie002Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 42}, {"name": "Jessie002Projectile2", "parentProjectileForSkin": "MechanicProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_atk_projectile", "redExportName": "jessie_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_atk_hitEnv", "hitEffectChar": "jessie_002_atk_hit", "maxRangeReachedEffect": "jessie_002_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_002_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Jessie002Projectile3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 43}, {"name": "Jessie002Projectile3", "parentProjectileForSkin": "MechanicProjectile3", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_atk_projectile", "redExportName": "jessie_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_atk_hitEnv", "hitEffectChar": "jessie_002_atk_hit", "maxRangeReachedEffect": "jessie_002_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_002_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 44}, {"name": "Jessie002UltiProjectile", "parentProjectileForSkin": "MechanicUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_ulti_projectile", "redExportName": "jessie_002_ulti_projectile", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "plasma_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 45}, {"name": "JessieTurret002Projectile", "parentProjectileForSkin": "MechanicTurretProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_turret_projectile", "redExportName": "jessie_002_turret_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_turret_hitEnv", "hitEffectChar": "jessie_002_turret_hit", "maxRangeReachedEffect": "jessie_002_turret_hitEnv", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_002_turret_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 46}, {"name": "Jessie003Projectile1", "parentProjectileForSkin": "MechanicProjectile1", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_atk_projectile", "redExportName": "jessie_003_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_atk_end", "hitEffectChar": "jessie_003_atk_hit", "maxRangeReachedEffect": "jessie_003_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Jessie003Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 47}, {"name": "Jessie003Projectile2", "parentProjectileForSkin": "MechanicProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_atk_projectile", "redExportName": "jessie_003_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_atk_end", "hitEffectChar": "jessie_003_atk_hit", "maxRangeReachedEffect": "jessie_003_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Jessie003Projectile3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 48}, {"name": "Jessie003Projectile3", "parentProjectileForSkin": "MechanicProjectile3", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_atk_projectile", "redExportName": "jessie_003_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_atk_end", "hitEffectChar": "jessie_003_atk_hit", "maxRangeReachedEffect": "jessie_003_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 49}, {"name": "Jessie003UltiProjectile", "parentProjectileForSkin": "MechanicUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_ulti_projectile", "redExportName": "jessie_003_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "plasma_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 50}, {"name": "JessieTurret003Projectile", "parentProjectileForSkin": "MechanicTurretProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_turret_projectile", "redExportName": "jessie_003_turret_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_turret_hitEnv", "hitEffectChar": "jessie_003_turret_hit", "maxRangeReachedEffect": "jessie_003_turret_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_003_turret_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 51}, {"name": "Turret003Proj", "parentProjectileForSkin": "TurretElecProj", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_atk_projectile", "redExportName": "jessie_003_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_turret_SP_end", "hitEffectChar": "jessie_003_turret_hit", "maxRangeReachedEffect": "jessie_003_turret_SP_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Turret003Proj2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 52}, {"name": "Turret003Proj2", "parentProjectileForSkin": "TurretElecProj2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_atk_projectile", "redExportName": "jessie_003_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_turret_SP_end", "hitEffectChar": "jessie_003_turret_hit", "maxRangeReachedEffect": "jessie_003_turret_SP_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Turret003Proj3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 53}, {"name": "Turret003Proj3", "parentProjectileForSkin": "TurretElecProj3", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_003_atk_projectile", "redExportName": "jessie_003_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_003_turret_SP_end", "hitEffectChar": "jessie_003_turret_hit", "maxRangeReachedEffect": "jessie_003_turret_SP_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 54}, {"name": "Jessie004Projectile1", "parentProjectileForSkin": "MechanicProjectile1", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_atk_projectile", "redExportName": "jessie_004_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_atk_end", "hitEffectChar": "jessie_004_atk_hit", "maxRangeReachedEffect": "jessie_004_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Jessie004Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 55}, {"name": "Jessie004Projectile2", "parentProjectileForSkin": "MechanicProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_atk_projectile", "redExportName": "jessie_004_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_atk_end", "hitEffectChar": "jessie_004_atk_hit", "maxRangeReachedEffect": "jessie_004_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Jessie004Projectile3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 56}, {"name": "Jessie004Projectile3", "parentProjectileForSkin": "MechanicProjectile3", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_atk_projectile", "redExportName": "jessie_004_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_atk_end", "hitEffectChar": "jessie_004_atk_hit", "maxRangeReachedEffect": "jessie_004_atk_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 57}, {"name": "Jessie004UltiProjectile", "parentProjectileForSkin": "MechanicUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_ulti_projectile", "redExportName": "jessie_004_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "plasma_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 58}, {"name": "JessieTurret004Projectile", "parentProjectileForSkin": "MechanicTurretProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_turret_projectile", "redExportName": "jessie_004_turret_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_turret_hitEnv", "hitEffectChar": "jessie_004_turret_hit", "maxRangeReachedEffect": "jessie_004_turret_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "jessie_004_turret_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 59}, {"name": "Turret004Proj", "parentProjectileForSkin": "TurretElecProj", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_atk_projectile", "redExportName": "jessie_004_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_turret_SP_end", "hitEffectChar": "jessie_004_turret_hit", "maxRangeReachedEffect": "jessie_004_turret_SP_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Turret004Proj2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 60}, {"name": "Turret004Proj2", "parentProjectileForSkin": "TurretElecProj2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_atk_projectile", "redExportName": "jessie_004_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_turret_SP_end", "hitEffectChar": "jessie_004_turret_hit", "maxRangeReachedEffect": "jessie_004_turret_SP_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Turret004Proj3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 61}, {"name": "Turret004Proj3", "parentProjectileForSkin": "TurretElecProj3", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_004_atk_projectile", "redExportName": "jessie_004_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_004_turret_SP_end", "hitEffectChar": "jessie_004_turret_hit", "maxRangeReachedEffect": "jessie_004_turret_SP_end", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 62}, {"name": "MechanicProjectile1", "parentProjectileForSkin": null, "speed": 2870, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "electricity_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": 1, "chainBullets": null, "chainSpread": null, "chainTravelDistance": 20, "chainBullet": "MechanicProjectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 63}, {"name": "MechanicProjectile2", "parentProjectileForSkin": null, "speed": 1522, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "electricity_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": 1, "chainBullets": null, "chainSpread": null, "chainTravelDistance": 20, "chainBullet": "MechanicProjectile3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 64}, {"name": "MechanicProjectile3", "parentProjectileForSkin": null, "speed": 1522, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "electricity_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 65}, {"name": "MechanicUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_def_ulti_projectile", "redExportName": "jessie_def_ulti_projectile", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "plasma_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 66}, {"name": "ShamanProjectile", "parentProjectileForSkin": null, "speed": 2718, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_atk_blue", "redExportName": "nita_def_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "nita_def_atk_end_blue", "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "nita_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 67}, {"name": "ShamanUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_ulti_projectile_blue", "redExportName": "nita_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "nita_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 68}, {"name": "BarkeepProjectile", "parentProjectileForSkin": null, "speed": 1750, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "barley_def_atk_projectile", "redExportName": "barley_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_def_atk", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 69}, {"name": "BarkeepUltiProjectile", "parentProjectileForSkin": null, "speed": 1504, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "barley_def_ulti_projectile", "redExportName": "barley_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_def_ulti", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": 2100, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 70}, {"name": "Barley002Projectile", "parentProjectileForSkin": "BarkeepProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "fireball_blue", "redExportName": "fireball_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_fire_blue", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_002_atk", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_002_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 71}, {"name": "Barley002UltiProjectile", "parentProjectileForSkin": "BarkeepUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "fireball_blue", "redExportName": "fireball_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_fire_blue", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_002_ulti", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_002_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 72}, {"name": "Barley003Projectile", "parentProjectileForSkin": "BarkeepProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "barley_003_atk_projectile", "redExportName": "barley_003_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_def_atk", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 73}, {"name": "Barley003UltiProjectile", "parentProjectileForSkin": "BarkeepUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "barley_003_ulti_projectile", "redExportName": "barley_003_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_def_ulti", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 74}, {"name": "Barley004Projectile", "parentProjectileForSkin": "BarkeepProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "barley_004_atk_projectile", "redExportName": "barley_004_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_004_atk", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 75}, {"name": "Barley004UltiProjectile", "parentProjectileForSkin": "BarkeepUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "barley_004_ulti_projectile", "redExportName": "barley_004_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_004_ulti", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 76}, {"name": "Barley005Projectile", "parentProjectileForSkin": "BarkeepProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/barley_005_atk_blue.scw", "redSCW": "sc3d/barley_005_atk_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 240, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_005_atk", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_005_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 77}, {"name": "Barley005UltiProjectile", "parentProjectileForSkin": "BarkeepUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/barley_005_atk_blue.scw", "redSCW": "sc3d/barley_005_atk_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "Barley_005_ulti", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "barley_005_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 78}, {"name": "TntDudeProjectile", "parentProjectileForSkin": null, "speed": 1900, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "dynamike_tnt_blue", "redExportName": "dynamike_tnt_red", "shadowExportName": "dynamike_tnt_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": 1100, "bouncePercent": 35, "gravity": 430, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": 1000, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 79}, {"name": "TntDudeUltiProjectile", "parentProjectileForSkin": null, "speed": 1600, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "dynamite_bundle_ulti", "redExportName": "dynamite_bundle_ulti_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": 1300, "bouncePercent": 35, "gravity": 330, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeUltiExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail_huge", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 80}, {"name": "TntDudeSantaProjectile", "parentProjectileForSkin": "TntDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "dynamike_santa_attack_anim_blue", "redExportName": "dynamike_santa_attack_anim_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": 35, "gravity": 430, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "TntDudeExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 81}, {"name": "TntDudeSantaUltiProjectile", "parentProjectileForSkin": "TntDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "dynamike_santa_ulti_anim_blue", "redExportName": "dynamike_santa_ulti_anim_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": 35, "gravity": 330, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeUltiExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail_huge", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 82}, {"name": "TntDudeChefProjectile", "parentProjectileForSkin": "TntDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "dynamike_chef_attack_anim_blue", "redExportName": "dynamike_chef_attack_anim_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": 35, "gravity": 430, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "TntDudeExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 83}, {"name": "TntDudeChefUltiProjectile", "parentProjectileForSkin": "TntDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "dynamike_chef_ulti_anim_blue", "redExportName": "dynamike_chef_ulti_anim_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": 35, "gravity": 330, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeUltiExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail_huge", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 84}, {"name": "Mike003Projectile", "parentProjectileForSkin": "TntDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/dynamike_003_atk_projectile_blue.scw", "redSCW": "sc3d/dynamike_003_atk_projectile_red.scw", "blueExportName": "dynamike_004_ulti_tail_blue", "redExportName": "dynamike_004_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": 35, "gravity": 430, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "dynamike_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 85}, {"name": "Mike003UltiProjectile", "parentProjectileForSkin": "TntDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/dynamike_003_ulti_projectile_blue.scw", "redSCW": "sc3d/dynamike_003_ulti_projectile_red.scw", "blueExportName": "dynamike_004_ulti_tail_blue", "redExportName": "dynamike_004_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": 35, "gravity": 330, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeUltiExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "dynamike_003_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 86}, {"name": "BoneThrowerProjectile", "parentProjectileForSkin": null, "speed": 1305, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "basic_grenade_projectile", "redExportName": "basic_grenade_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": 4000, "bouncePercent": 35, "gravity": 150, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": true, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 87}, {"name": "BoneThrowerUltiProjectile", "parentProjectileForSkin": null, "speed": 1305, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "projectile_plasmaball", "redExportName": "projectile_plasmaball_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": 15000, "bouncePercent": 35, "gravity": 150, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "trail_temp", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": true, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 88}, {"name": "DummyProjectileForLaserBall", "parentProjectileForSkin": null, "speed": 2499, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "projectile_small_blue", "redExportName": "projectile_small_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": true, "isBeam": null, "isBouncing": true, "distanceAddFromBounce": 0, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 89}, {"name": "MechanicTurretProjectile", "parentProjectileForSkin": null, "speed": 3478, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "Bullet_blue", "redExportName": "Bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 90}, {"name": "UndertakerUltiProjectile", "parentProjectileForSkin": null, "speed": 2718, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bat_clump_projectile", "redExportName": "bat_clump_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 400, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Bats", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": 100, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 91}, {"name": "CrowProjectile", "parentProjectileForSkin": null, "speed": 3261, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_def_atk_projectile", "redExportName": "crow_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Poison_hit", "maxRangeReachedEffect": "no_hit", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poison_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": 100, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": 1, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 92}, {"name": "CrowUltiProjectile", "parentProjectileForSkin": null, "speed": 3261, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_def_ulti_projectile", "redExportName": "crow_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Poison_hit", "maxRangeReachedEffect": "no_hit", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poison_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": 100, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": 1, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 93}, {"name": "Crow002Projectile", "parentProjectileForSkin": "CrowProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_002_atk_projectile", "redExportName": "crow_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "crow_002_hit", "maxRangeReachedEffect": "crow_002_atk_reachaed", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "crow_002_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": 3, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 94}, {"name": "Crow002UltiProjectile", "parentProjectileForSkin": "CrowUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_002_ulti_projectile", "redExportName": "crow_002_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "crow_002_hit", "maxRangeReachedEffect": "crow_002_atk_reachaed", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "crow_002_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": 3, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 95}, {"name": "DeadMariachiProjectile", "parentProjectileForSkin": null, "speed": 2500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "poco_def_atk_blue", "redExportName": "poco_def_atk_red", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "poco_def_hit_env", "hitEffectChar": "poco_def_hit_char", "maxRangeReachedEffect": "poco_def_atk_end", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 4, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poco_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 96}, {"name": "DeadMariachiUltiProjectile", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "poco_def_ulti", "redExportName": "poco_def_ulti", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "poco_def_ultiEnd", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "poco_def_ultiEnd", "radius": 400, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poco_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": 100, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 97}, {"name": "Poco002Projectile", "parentProjectileForSkin": "DeadMariachiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "poco_002_atk_blue", "redExportName": "poco_002_atk_red", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "poco_002_hit_env", "hitEffectChar": "poco_002_hit_char", "maxRangeReachedEffect": "poco_002_atk_end", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poco_002_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 98}, {"name": "Poco002UltiProjectile", "parentProjectileForSkin": "DeadMariachiUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "poco_002_ulti", "redExportName": "poco_002_ulti", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "poco_002_ultiEnd", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "poco_002_ultiEnd", "radius": 400, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poco_002_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 99}, {"name": "Poco003Projectile", "parentProjectileForSkin": "DeadMariachiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "poco_003_atk_blue", "redExportName": "poco_003_atk_red", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "poco_002_hit_env", "hitEffectChar": "poco_002_hit_char", "maxRangeReachedEffect": "poco_002_atk_end", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poco_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 100}, {"name": "Poco003UltiProjectile", "parentProjectileForSkin": "DeadMariachiUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "poco_003_ulti", "redExportName": "poco_003_ulti", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "poco_003_ultiEnd", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "poco_003_ultiEnd", "radius": 400, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "poco_003_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 101}, {"name": "BowDudeSpawnMineProjectile", "parentProjectileForSkin": null, "speed": 2391, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/bo_def_ulti_projectile_blue.scw", "redSCW": "sc3d/bo_def_ulti_projectile_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": null, "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 405, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Bo_def_ulti1_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 102}, {"name": "BowDudeProjectile", "parentProjectileForSkin": null, "speed": 2609, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bo_def_atk", "redExportName": "bo_def_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": null, "maxRangeReachedEffect": null, "radius": 70, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 5, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_def_atk_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": true, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 103}, {"name": "Bow002Projectile", "parentProjectileForSkin": "BowDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bo_002_atk", "redExportName": "bo_002_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": null, "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Brock_def_atk_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": true, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 104}, {"name": "Bow002UltiProjectile", "parentProjectileForSkin": "BowDudeSpawnMineProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/bo_002_ulti_projectile_blue.scw", "redSCW": "sc3d/bo_002_ulti_projectile_red.scw", "blueExportName": "bo_002_ulti_tail_blue", "redExportName": "bo_002_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": null, "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 405, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Bo_def_ulti1_area", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "bo_002_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 105}, {"name": "SniperProjectile", "parentProjectileForSkin": null, "speed": 4000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "sniper_bullet_blue", "redExportName": "sniper_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "sniper_hit", "hitEffectChar": "sniper_hit", "maxRangeReachedEffect": "no_hit", "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Sniper_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": 10, "damagePercentEnd": 100, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 106}, {"name": "MinigunDudeProjectile", "parentProjectileForSkin": null, "speed": 4130, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "pam_def_bullet", "redExportName": "pam_def_bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "pam_def_atk_hit", "hitEffectChar": "pam_def_atk_hit", "maxRangeReachedEffect": "pam_def_atk_reachaed", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 85, "randomStartFrame": 2, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 107}, {"name": "MinigunDudeUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "pam_def_ulti_projectile", "redExportName": "pam_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": null, "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "pam_def_ult_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 108}, {"name": "PrimoDefProjectile", "parentProjectileForSkin": null, "speed": 3261, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/primo_def_atk_projectile_blue.scw", "redSCW": "sc3d/primo_def_atk_projectile_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": "Lucha_hit", "maxRangeReachedEffect": null, "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "lucha_smoke_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": 20, "scaleEnd": 100, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": true, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 109}, {"name": "Primo003Projectile", "parentProjectileForSkin": "PrimoDefProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/primo_003_atk_projectile_blue.scw", "redSCW": "sc3d/primo_003_atk_projectile_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": "primo_003_atk_hit", "maxRangeReachedEffect": null, "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "primo_003_atk", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": 20, "scaleEnd": 100, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": true, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 110}, {"name": "BlackHoleProjectile", "parentProjectileForSkin": null, "speed": 3152, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "playing_card", "redExportName": "playing_card_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "blackhole_hit_envy", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "blackhole_no_hit", "radius": 100, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "sparkle_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 111}, {"name": "BlackHoleUltiProjectile", "parentProjectileForSkin": null, "speed": 1522, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "black_hole_projectile", "redExportName": "black_hole_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 200, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "BlackHoleUltiSuck", "spawnAreaEffectObject2": "BlackHoleUltiExplosion", "spawnCharacter": null, "spawnItem": null, "trailEffect": "sparkle_trail_dark", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 112}, {"name": "BarrelBotProjectile", "parentProjectileForSkin": null, "speed": 3044, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bullet_shotgun_def_blue_short", "redExportName": "bullet_shotgun_def_red_short", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "bull_def_atk_reached", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 113}, {"name": "Darryl002Projectile", "parentProjectileForSkin": "BarrelBotProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "darryl_002_projectile_blue", "redExportName": "darryl_002_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "darryl_002_atk_reached", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "darryl_002_atk_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "darryl_002_dumpling_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 114}, {"name": "ArtilleryDudeProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_def_atk_projectile", "redExportName": "penny_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "penny_def_atk1_hit_env", "hitEffectChar": "penny_def_atk1_hit", "maxRangeReachedEffect": "penny_def_atk1_reached", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "penny_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": 3, "chainSpread": 100, "chainTravelDistance": 16, "chainBullet": "ArtilleryDudeProjectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 115}, {"name": "ArtilleryDudeProjectile2", "parentProjectileForSkin": null, "speed": 2500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_def_atk2_projectile", "redExportName": "penny_def_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "penny_def_atk2_hit", "maxRangeReachedEffect": "penny_def_atk2_reached", "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 60, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 116}, {"name": "ArtilleryDudeUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_def_ulti_projectile", "redExportName": "penny_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 139, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "plasma_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 117}, {"name": "ArtilleryDudeTurretProjectile", "parentProjectileForSkin": null, "speed": 750, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "cannon_projectile_blue", "redExportName": "cannon_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 90, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "ArtilleryDudeTurretExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 118}, {"name": "Penny002Projectile", "parentProjectileForSkin": "ArtilleryDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_002_atk_projectile", "redExportName": "penny_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "penny_002_atk1_hit_env", "hitEffectChar": "penny_002_atk1_hit", "maxRangeReachedEffect": "penny_002_atk1_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "penny_002_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Penny002Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 119}, {"name": "Penny002Projectile2", "parentProjectileForSkin": "ArtilleryDudeProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_002_atk2_projectile", "redExportName": "penny_002_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "penny_def_atk2_hit", "maxRangeReachedEffect": "penny_002_atk2_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 60, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 120}, {"name": "Penny002UltiProjectile", "parentProjectileForSkin": "ArtilleryDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_002_ulti_projectile", "redExportName": "penny_002_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 139, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "penny_002_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 121}, {"name": "Penny002TurretProjectile", "parentProjectileForSkin": "ArtilleryDudeTurretProjectile", "speed": null, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_002_atk_projectile", "redExportName": "cannon_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 90, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "ArtilleryDudeTurretExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 122}, {"name": "Penny003Projectile", "parentProjectileForSkin": "ArtilleryDudeProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_003_atk_projectile", "redExportName": "penny_003_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "penny_003_atk1_hit_env", "hitEffectChar": "penny_003_atk1_hit", "maxRangeReachedEffect": "penny_003_atk1_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "penny_003_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Penny003Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 123}, {"name": "Penny003Projectile2", "parentProjectileForSkin": "ArtilleryDudeProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_003_atk2_projectile", "redExportName": "penny_003_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "penny_def_atk2_hit", "maxRangeReachedEffect": "penny_003_atk2_reached", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 60, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 124}, {"name": "Penny003UltiProjectile", "parentProjectileForSkin": "ArtilleryDudeUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_003_ulti_projectile", "redExportName": "penny_003_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 139, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "penny_003_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 125}, {"name": "ShotgunGirlPetProjectile", "parentProjectileForSkin": null, "speed": 2826, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "Bullet_blue", "redExportName": "Bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 126}, {"name": "BlackHolePetProjectile", "parentProjectileForSkin": null, "speed": 3152, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "playing_card", "redExportName": "playing_card_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "sparkle_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 127}, {"name": "HammerDudeProjectile", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_atk_blue", "redExportName": "nita_def_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "nita_def_atk_end_blue", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "nita_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 128}, {"name": "HammerDudeUltiProjectile", "parentProjectileForSkin": null, "speed": 6000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_atk_blue", "redExportName": "nita_def_atk_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "nita_def_atk_end_blue", "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "nita_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": true, "piercesEnvironmentLikeButter": true, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": 2000, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 129}, {"name": "CrowProjectileFlame", "parentProjectileForSkin": "CrowProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_def_atk_projectile", "redExportName": "crow_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": null, "maxRangeReachedEffect": "no_hit", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "flame_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": 2, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 130}, {"name": "CrowUltiProjectileFlame", "parentProjectileForSkin": "CrowUltiProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_def_ulti_projectile", "redExportName": "crow_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": null, "maxRangeReachedEffect": "no_hit", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "flame_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": 2, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 131}, {"name": "HookProjectile", "parentProjectileForSkin": null, "speed": 3200, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "gene_def_atk1_projectile_blue", "redExportName": "gene_def_atk1_projectile_red", "shadowExportName": "gene_def_atk1_projecctile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "gene_def_atk1_reachaed", "hitEffectChar": "gene_def_atk1Hit", "maxRangeReachedEffect": "gene_def_atk1_reachaed", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "gene_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": 6, "chainSpread": 200, "chainTravelDistance": 17, "chainBullet": "HookProjectile2", "executeChainSpecialCase": 1, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 132}, {"name": "HookProjectile2", "parentProjectileForSkin": null, "speed": 3200, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "gene_def_atk2_projectile_blue", "redExportName": "gene_def_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "gene_def_atk2Env", "hitEffectChar": "gene_def_atk2Hit", "maxRangeReachedEffect": "gene_def_atk2_reachaed", "radius": 101, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 120, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 133}, {"name": "HookUltiProjectile", "parentProjectileForSkin": null, "speed": 3200, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/gene_projectile_open_blue.scw", "redSCW": "sc3d/gene_projectile_open_red.scw", "blueExportName": "gene_def_ulti1_trail", "redExportName": "gene_def_ulti1_trail_red", "shadowExportName": null, "blueGroundGlowExportName": "glow_normal_blue_big", "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "gene_def_ulti_reached", "hitEffectChar": "gene_def_ulti_hit", "maxRangeReachedEffect": "gene_def_ulti_reached", "radius": 200, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 4, "hideTime": 0, "scale": 60, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "gene_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "HookUltiProjectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": true, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 134}, {"name": "HookUltiProjectile2", "parentProjectileForSkin": null, "speed": 2000, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/gene_projectile_closed_blue.scw", "redSCW": "sc3d/gene_projectile_closed_red.scw", "blueExportName": "gene_def_ulti1_trail", "redExportName": "gene_def_ulti1_trail_red", "shadowExportName": null, "blueGroundGlowExportName": "glow_normal_blue_big", "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 200, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 60, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "gene_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": true, "piercesEnvironmentLikeButter": true, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": true, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 135}, {"name": "ClusterBombProjectile", "parentProjectileForSkin": null, "speed": 450, "fileName": "sc/effects.sc", "blueSCW": "sc3d/tick_def_atk_projectile_blue.scw", "redSCW": "sc3d/tick_def_atk_projectile_blue.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": 900, "bouncePercent": null, "gravity": 25, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "ClusterBombExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 136}, {"name": "ClusterBombProjectile2", "parentProjectileForSkin": null, "speed": 2000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "cactus_ulti_projectile", "redExportName": "cactus_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 200, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "ClusterBombExplosion2", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_dust", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 137}, {"name": "ArcadeProjectile", "parentProjectileForSkin": null, "speed": 4500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "arcade_def_projectile", "redExportName": "arcade_def_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "arcade_def_atk_reached", "hitEffectChar": "arcade_def_atk_hit", "maxRangeReachedEffect": "arcade_def_atk_reached", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": 2, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "arcade_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 138}, {"name": "LeonDefProjectile", "parentProjectileForSkin": null, "speed": 3500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "leon_def_atk_projectile", "redExportName": "leon_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "leon_def_atk_reachaed", "radius": 100, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": 100, "damagePercentEnd": 10, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 139}, {"name": "Leon002Projectile", "parentProjectileForSkin": "LeonDefProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "leon_002_atk_projectile", "redExportName": "leon_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "leon_002_atk_hitEnv", "hitEffectChar": "leon_002_atk_hit", "maxRangeReachedEffect": "leon_002_atk_reachaed", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": null, "earlyTicks": null, "hideTime": null, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "leon_002_atk_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 140}, {"name": "Leon003Projectile", "parentProjectileForSkin": "LeonDefProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "leon_003_atk_projectile", "redExportName": "leon_003_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "leon_003_atk_hitEnv", "hitEffectChar": "leon_003_atk_hit", "maxRangeReachedEffect": "leon_003_atk_reachaed", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": null, "earlyTicks": null, "hideTime": null, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "leon_003_atk_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 141}, {"name": "RosaProjectile", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/rosa_def_atk_projectile_blue.scw", "redSCW": "sc3d/rosa_def_atk_projectile_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "rosa_def_hit", "hitEffectChar": "rosa_def_hit", "maxRangeReachedEffect": null, "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rosa_def_atk_swoosh", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 142}, {"name": "SandstormUltiProjectile", "parentProjectileForSkin": null, "speed": 2000, "fileName": "sc/effects.sc", "blueSCW": "sc3d/sandy_def_ulti.scw", "redSCW": "sc3d/sandy_def_ulti.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "sandy_def_ulti_explode", "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 300, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": "Sandstorm", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "sandy_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 143}, {"name": "CoopRangedEnemyProjectile", "parentProjectileForSkin": null, "speed": 4000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "Bullet_red", "redExportName": "Bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 100, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 144}, {"name": "BossProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "explosion_rocket_rose", "hitEffectChar": "explosion_rocket_rose", "maxRangeReachedEffect": "explosion_rocket_rose", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Rocket_Trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": true, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 145}, {"name": "RaidBossRangedEnemyProjectile", "parentProjectileForSkin": null, "speed": 4000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "Bullet_red", "redExportName": "Bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 100, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 146}, {"name": "RaidBossProjectileRed", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "gen_beam_red", "redExportName": "gen_beam_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light_red", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": null, "isBeam": true, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 147}, {"name": "RaidBossProjectileRedDestroyEnv", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "gen_beam_red", "redExportName": "gen_beam_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light_red", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "explosion_rocket_rose", "hitEffectChar": "explosion_rocket_rose", "maxRangeReachedEffect": "explosion_rocket_rose", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": null, "isBeam": true, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": true, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 148}, {"name": "RaidBossProjectileGold", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "gen_beam_red", "redExportName": "gen_beam_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light_red", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "explosion_rocket_rose", "hitEffectChar": "explosion_rocket_rose", "maxRangeReachedEffect": "explosion_rocket_rose", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": null, "isBeam": true, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": true, "piercesEnvironmentLikeButter": true, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": true, "redAdd": null, "greenAdd": 40, "blueAdd": null, "redMul": 60, "greenMul": 255, "blueMul": 255, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 149}, {"name": "RaidBossRocketProjectile", "parentProjectileForSkin": null, "speed": 480, "fileName": "sc/effects.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_Very_Big_Explosion", "hitEffectChar": "Gen_Very_Big_Explosion", "maxRangeReachedEffect": "Gen_Very_Big_Explosion", "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 20, "earlyTicks": 2, "hideTime": 0, "scale": 185, "randomStartFrame": null, "spawnAreaEffectObject": "RaidBossRocketBurn", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Rocket_Trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 150}, {"name": "ShamanStarPowerProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_starP_core", "redExportName": "nita_def_starP_core_red", "shadowExportName": null, "blueGroundGlowExportName": "glow_normal_green", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Mariachi_hit", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "nita_def_starPower_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_ulti_trail_twinkles", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": true, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 151}, {"name": "UndertakerStarPowerProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "mortis_def_starPower_bat", "redExportName": "mortis_def_starPower_bat_red", "shadowExportName": null, "blueGroundGlowExportName": "glow_normal_green", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Mariachi_hit", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "nita_def_starPower_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "mortis_def_starPower_blood", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": true, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 152}, {"name": "HammerDudeStarPowerProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "frank_def_starP_core", "redExportName": "frank_def_starP_core_red", "shadowExportName": null, "blueGroundGlowExportName": "glow_normal_purple", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Mariachi_hit", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "frank_def_starPower_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_ulti_trail_twinkles", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": true, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 153}, {"name": "RoboWarsBaseProjectile", "parentProjectileForSkin": null, "speed": 6000, "fileName": "sc/effects.sc", "blueSCW": "sc3d/siege_base_projectile_blue.scw", "redSCW": "sc3d/siege_base_projectile_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 1900, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": 1, "spawnAreaEffectObject": "RoboWarsBaseExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_atk_trail", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": true, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 154}, {"name": "WhirlwindProjectile", "parentProjectileForSkin": null, "speed": 2700, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_def_atk_projectile", "redExportName": "carl_def_atk_projectile_red", "shadowExportName": "carl_def_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Carl_hitEnv", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "WhirlwindProjectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": true, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 155}, {"name": "WhirlwindProjectile2", "parentProjectileForSkin": null, "speed": 2700, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_def_atk_projectile", "redExportName": "carl_def_atk_projectile_red", "shadowExportName": "carl_def_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_def_atk_trail_return", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": true, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 156}, {"name": "Carl002Projectile", "parentProjectileForSkin": "WhirlwindProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_002_atk_projectile", "redExportName": "carl_002_atk_projectile_red", "shadowExportName": "carl_002_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Carl_hitEnv", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Carl002Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 157}, {"name": "Carl002Projectile2", "parentProjectileForSkin": "WhirlwindProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_002_atk_projectile", "redExportName": "carl_002_atk_projectile_red", "shadowExportName": "carl_002_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_def_atk_trail_return", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 158}, {"name": "Carl003Projectile", "parentProjectileForSkin": "WhirlwindProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_003_atk_projectile", "redExportName": "carl_003_atk_projectile_red", "shadowExportName": "carl_003_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Carl_hitEnv", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Carl003Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 159}, {"name": "Carl003Projectile2", "parentProjectileForSkin": "WhirlwindProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_003_atk_projectile", "redExportName": "carl_003_atk_projectile_red", "shadowExportName": "carl_003_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_def_atk_trail_return", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 160}, {"name": "Carl004Projectile", "parentProjectileForSkin": "WhirlwindProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_004_atk_projectile", "redExportName": "carl_004_atk_projectile_red", "shadowExportName": "carl_003_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "carl_004_atk_hitEnv", "hitEffectChar": "carl_004_atk_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Carl004Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 161}, {"name": "Carl004Projectile2", "parentProjectileForSkin": "WhirlwindProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_004_atk_projectile", "redExportName": "carl_004_atk_projectile_red", "shadowExportName": "carl_003_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "carl_004_atk_hitEnv", "hitEffectChar": "carl_004_atk_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_004_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 162}, {"name": "Carl005Projectile", "parentProjectileForSkin": "WhirlwindProjectile", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_005_atk_projectile_blue", "redExportName": "carl_005_atk_projectile_red", "shadowExportName": "carl_003_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "carl_005_atk_hitEnv", "hitEffectChar": "carl_005_atk_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_005_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "Carl005Projectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 163}, {"name": "Carl005Projectile2", "parentProjectileForSkin": "WhirlwindProjectile2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "carl_005_atk_projectile_blue", "redExportName": "carl_005_atk_projectile_red", "shadowExportName": "carl_003_atk_projectile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "carl_005_atk_hitEnv", "hitEffectChar": "carl_005_atk_hit", "maxRangeReachedEffect": null, "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "carl_005_atk_trail_return", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 164}, {"name": "BaseballUltiProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bibi_def_ulti_projectile", "redExportName": "bibi_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle_huge", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "bibi_def_ulti_hitEffect", "hitEffectChar": "bibi_def_ulti_hitEffect_char", "maxRangeReachedEffect": "bibi_def_ulti_reached", "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "bibi_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": true, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": 10, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 165}, {"name": "ClusterBombSummonProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/tick_def_ulti_projectile_blue.scw", "redSCW": "sc3d/tick_def_ulti_projectile_blue.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "nita_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 166}, {"name": "TurretElecProj", "parentProjectileForSkin": null, "speed": 3478, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": 1, "chainBullets": null, "chainSpread": null, "chainTravelDistance": 14, "chainBullet": "TurretElecProj2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 167}, {"name": "TurretElecProj2", "parentProjectileForSkin": null, "speed": 2000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": 1, "chainBullets": null, "chainSpread": null, "chainTravelDistance": 14, "chainBullet": "TurretElecProj3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": true, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 168}, {"name": "TurretElecProj3", "parentProjectileForSkin": null, "speed": 2000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": true, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 169}, {"name": "BlackHolePet2Projectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_starP_core", "redExportName": "nita_def_starP_core_red", "shadowExportName": null, "blueGroundGlowExportName": "glow_normal_green", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Mariachi_hit", "hitEffectChar": "Mariachi_hit", "maxRangeReachedEffect": "nita_def_starPower_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "rico_ulti_trail_twinkles", "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": true, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": true, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 170}, {"name": "ArcadeUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/arcade_def_ulti.scw", "redSCW": "sc3d/arcade_def_ulti_red.scw", "blueExportName": null, "redExportName": null, "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": null, "hitEffectChar": null, "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "arcade_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 171}, {"name": "BeeSniperUltiProjectile", "parentProjectileForSkin": null, "speed": 2500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bea_def_ulti_projectile", "redExportName": "bea_def_ulti_projectile_red", "shadowExportName": "gene_def_atk1_projecctile_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "bea_def_ulti_hit", "maxRangeReachedEffect": "bea_def_ulti_reached", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "bea_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": 350, "freezeDurationMS": 3000, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": 3, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 172}, {"name": "BeeProjectile", "parentProjectileForSkin": null, "speed": 4000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "Bullet_blue", "redExportName": "Bullet_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 0, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 173}, {"name": "SandstormProjectile", "parentProjectileForSkin": null, "speed": 3500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "sandy_def_atk_projectile", "redExportName": "sandy_def_atk_projectile", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "sandy_def_atk_reached", "hitEffectChar": "sandy_def_atk_hit", "maxRangeReachedEffect": "sandy_def_atk_reached", "radius": 200, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 4, "hideTime": 0, "scale": 80, "randomStartFrame": 2, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "sandy_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": null, "canGrowStronger": true, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 174}, {"name": "TurretWaterProj", "parentProjectileForSkin": "TurretElecProj", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_atk_projectile", "redExportName": "jessie_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_turret_hitEnv", "hitEffectChar": "jessie_002_turret_hit", "maxRangeReachedEffect": "jessie_002_turret_hitEnv", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "TurretWaterProj2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 175}, {"name": "TurretWaterProj2", "parentProjectileForSkin": "TurretElecProj2", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_atk_projectile", "redExportName": "jessie_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_turret_hitEnv", "hitEffectChar": "jessie_002_turret_hit", "maxRangeReachedEffect": "jessie_002_turret_hitEnv", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": "TurretWaterProj3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 176}, {"name": "TurretWaterProj3", "parentProjectileForSkin": "TurretElecProj3", "speed": null, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_002_atk_projectile", "redExportName": "jessie_002_atk_projectile_red", "shadowExportName": "shadow_normal_circle_big", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "jessie_002_turret_hitEnv", "hitEffectChar": "jessie_002_turret_hit", "maxRangeReachedEffect": "jessie_002_turret_hitEnv", "radius": null, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": null, "hideTime": 0, "scale": 80, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": null, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 177}, {"name": "MummyProjectile", "parentProjectileForSkin": null, "speed": 1500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "emz_def_atk_projectile", "redExportName": "emz_def_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "emz_def_atk_reached", "hitEffectChar": "emz_def_atk_hit", "maxRangeReachedEffect": "emz_def_atk_reached", "radius": 200, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 100, "randomStartFrame": 2, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "emz_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": true, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": 7, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": 35, "scaleEnd": 125, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": true, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": true, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": 1, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 178}, {"name": "BossRaceBossProjectile", "parentProjectileForSkin": null, "speed": 5000, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "gen_beam_red", "redExportName": "gen_beam_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light_red", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": null, "isBeam": true, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 179}, {"name": "BossRaceBossLightningProjectile1", "parentProjectileForSkin": null, "speed": 3500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 250, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "electricity_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": 1, "chainBullets": null, "chainSpread": null, "chainTravelDistance": 40, "chainBullet": "BossRaceBossLightningProjectile2", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 180}, {"name": "BossRaceBossLightningProjectile2", "parentProjectileForSkin": null, "speed": 2700, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 250, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "electricity_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": 1, "chainBullets": null, "chainSpread": null, "chainTravelDistance": 40, "chainBullet": "BossRaceBossLightningProjectile3", "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 181}, {"name": "BossRaceBossLightningProjectile3", "parentProjectileForSkin": null, "speed": 2700, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "jessie_elecBall_blue", "redExportName": "jessie_elecBall_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Electricity_hit", "hitEffectChar": "Electricity_hit", "maxRangeReachedEffect": "electricity_end_blue", "radius": 250, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 250, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "electricity_Trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 182}, {"name": "BossRaceBossRocketProjectile", "parentProjectileForSkin": null, "speed": 400, "fileName": "sc/effects_brawler.sc", "blueSCW": "sc3d/brock_rocket_blue.scw", "redSCW": "sc3d/brock_rocket_red.scw", "blueExportName": "brock_def_ulti_tail_blue", "redExportName": "brock_def_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 10, "earlyTicks": 2, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": "BossRaceBossRocketExplosion", "spawnAreaEffectObject2": "BossRaceBossRocketBurn", "spawnCharacter": null, "spawnItem": null, "trailEffect": "brock_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 183}, {"name": "SpawnerDudeProjectile", "parentProjectileForSkin": null, "speed": 3000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "brock_def_ulti_tail_blue", "redExportName": "brock_def_ulti_tail_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "electricity_end_blue", "hitEffectChar": "electricity_end_blue", "maxRangeReachedEffect": "electricity_end_blue", "radius": 200, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 250, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "UseZFrames", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": 1, "chainSpread": null, "chainTravelDistance": 10, "chainBullet": "SpawnerDudeIndirectProjectile", "executeChainSpecialCase": 2, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 184}, {"name": "SpawnerDudeIndirectProjectile", "parentProjectileForSkin": null, "speed": 1000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "brock_def_ulti_tail_blue", "redExportName": "brock_def_ulti_tail_red", "shadowExportName": "dynamike_tnt_shadow", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": 600, "bouncePercent": 35, "gravity": 400, "earlyTicks": null, "hideTime": 0, "scale": 250, "randomStartFrame": null, "spawnAreaEffectObject": "TntDudeExplosion", "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "fire_spark_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": 1000, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 185}, {"name": "SpawnerDudeUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "penny_def_ulti_projectile", "redExportName": "penny_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 139, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "plasma_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": "DoNotRotateClip", "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 186}, {"name": "BeeSniperProjectile", "parentProjectileForSkin": null, "speed": 3100, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bea_def_atk_projectile", "redExportName": "bea_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "bea_def_atk_hitEnv", "hitEffectChar": "bea_def_atk_hit", "maxRangeReachedEffect": "bea_def_atk_hitEnv", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "arcade_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 187}, {"name": "BeeSniperChargedProjectile", "parentProjectileForSkin": null, "speed": 3100, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "bea_def_atk2_projectile", "redExportName": "bea_def_atk2_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "bea_def_atk2_hitEnv", "hitEffectChar": "bea_def_atk2_hit", "maxRangeReachedEffect": "bea_def_atk2_hitEnv", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 3, "hideTime": 0, "scale": 180, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": null, "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 188}, {"name": "SpeedyProjectile", "parentProjectileForSkin": null, "speed": 4000, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "max_def_atk_projectile", "redExportName": "max_def_atk_projectile_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "max_def_atk_reachaed", "hitEffectChar": "max_def_atk_hit", "maxRangeReachedEffect": "max_def_atk_reachaed", "radius": 50, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 2, "hideTime": 0, "scale": 130, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "max_def_atk_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 189}, {"name": "HomerProjectile", "parentProjectileForSkin": null, "speed": 2500, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "crow_def_atk_projectile", "redExportName": "crow_def_atk_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": "glow_normal_green", "redGroundGlowExportName": "projectile_fire_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "sniper_hit", "hitEffectChar": "sniper_hit", "maxRangeReachedEffect": "no_hit", "radius": 150, "indirect": null, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 0, "earlyTicks": 1, "hideTime": 0, "scale": 150, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_dust", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": 2, "homeIgnoreTicks": 10, "homeDistance": 8, "homeLifeTime": 40, "id": 190}, {"name": "HomerUltiProjectile", "parentProjectileForSkin": null, "speed": 1196, "fileName": "sc/effects_brawler.sc", "blueSCW": null, "redSCW": null, "blueExportName": "nita_def_ulti_projectile_blue", "redExportName": "nita_def_ulti_projectile_red", "shadowExportName": "shadow_normal_circle", "blueGroundGlowExportName": null, "redGroundGlowExportName": null, "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": null, "radius": 0, "indirect": true, "constantFlyTime": null, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 170, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "nita_def_ulti_trail", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 191}, {"name": "DummyProjectileForCTF", "parentProjectileForSkin": null, "speed": 2499, "fileName": "sc/effects.sc", "blueSCW": null, "redSCW": null, "blueExportName": "projectile_small_blue", "redExportName": "projectile_small_red", "shadowExportName": null, "blueGroundGlowExportName": "projectile_light", "redGroundGlowExportName": "projectile_light_red", "preExplosionBlueExportName": null, "preExplosionRedExportName": null, "preExplosionTimeMs": null, "hitEffectEnv": "Gen_hit", "hitEffectChar": "Gen_hit", "maxRangeReachedEffect": "no_hit", "radius": 0, "indirect": true, "constantFlyTime": true, "triggerWithDelayMs": null, "bouncePercent": null, "gravity": 700, "earlyTicks": 1, "hideTime": 0, "scale": 100, "randomStartFrame": null, "spawnAreaEffectObject": null, "spawnAreaEffectObject2": null, "spawnCharacter": null, "spawnItem": null, "trailEffect": "Gen_Trail_small", "shotByHero": true, "isBeam": null, "isBouncing": null, "distanceAddFromBounce": null, "rendering": null, "piercesCharacters": null, "piercesEnvironment": null, "piercesEnvironmentLikeButter": null, "pushbackStrength": null, "chainsToEnemies": null, "chainBullets": null, "chainSpread": null, "chainTravelDistance": null, "chainBullet": null, "executeChainSpecialCase": null, "damagePercentStart": null, "damagePercentEnd": null, "damagesConstantlyTickDelay": null, "freezeStrength": null, "freezeDurationMS": null, "stunLengthMS": null, "scaleStart": null, "scaleEnd": null, "attractsPet": null, "lifeStealPercent": null, "passesEnvironment": null, "poisonDamagePercent": null, "damageOnlyWithOneProj": null, "healOwnPercent": null, "canGrowStronger": null, "hideFaster": null, "grapplesEnemy": null, "kickBack": null, "useColorMod": null, "redAdd": null, "greenAdd": null, "blueAdd": null, "redMul": null, "greenMul": null, "blueMul": null, "groundBasis": null, "minDistanceForSpread": null, "isFriendlyHomingMissile": null, "isBoomerang": null, "canHitAgainAfterBounce": null, "isHomingMissile": null, "blockUltiCharge": null, "poisonType": null, "travelType": null, "homingStrength": null, "homeIgnoreTicks": null, "homeDistance": null, "homeLifeTime": null, "id": 192}], "regions": [{"name": "_EU", "tID": null, "displayName": "Europe", "isCountry": false, "id": 14}, {"name": "_NA", "tID": null, "displayName": "North America", "isCountry": false, "id": 15}, {"name": "_SA", "tID": null, "displayName": "South America", "isCountry": false, "id": 16}, {"name": "_AS", "tID": null, "displayName": "Asia", "isCountry": false, "id": 17}, {"name": "_AU", "tID": null, "displayName": "Australia", "isCountry": false, "id": 18}, {"name": "_AF", "tID": null, "displayName": "Africa", "isCountry": false, "id": 19}, {"name": "_INT", "tID": "International", "displayName": "International", "isCountry": false, "id": 20, "rawTID": "REGION_INT"}, {"name": "AF", "tID": null, "displayName": "Afghanistan", "isCountry": true, "id": 21}, {"name": "AX", "tID": null, "displayName": "\u00c5land Islands", "isCountry": true, "id": 22}, {"name": "AL", "tID": null, "displayName": "Albania", "isCountry": true, "id": 23}, {"name": "DZ", "tID": null, "displayName": "Algeria", "isCountry": true, "id": 24}, {"name": "AS", "tID": null, "displayName": "American Samoa", "isCountry": true, "id": 25}, {"name": "AD", "tID": null, "displayName": "Andorra", "isCountry": true, "id": 26}, {"name": "AO", "tID": null, "displayName": "Angola", "isCountry": true, "id": 27}, {"name": "AI", "tID": null, "displayName": "Anguilla", "isCountry": true, "id": 28}, {"name": "AQ", "tID": null, "displayName": "Antarctica", "isCountry": true, "id": 29}, {"name": "AG", "tID": null, "displayName": "Antigua and Barbuda", "isCountry": true, "id": 30}, {"name": "AR", "tID": null, "displayName": "Argentina", "isCountry": true, "id": 31}, {"name": "AM", "tID": null, "displayName": "Armenia", "isCountry": true, "id": 32}, {"name": "AW", "tID": null, "displayName": "Aruba", "isCountry": true, "id": 33}, {"name": "AC", "tID": null, "displayName": "Ascension Island", "isCountry": true, "id": 34}, {"name": "AU", "tID": null, "displayName": "Australia", "isCountry": true, "id": 35}, {"name": "AT", "tID": null, "displayName": "Austria", "isCountry": true, "id": 36}, {"name": "AZ", "tID": null, "displayName": "Azerbaijan", "isCountry": true, "id": 37}, {"name": "BS", "tID": null, "displayName": "Bahamas", "isCountry": true, "id": 38}, {"name": "BH", "tID": null, "displayName": "Bahrain", "isCountry": true, "id": 39}, {"name": "BD", "tID": null, "displayName": "Bangladesh", "isCountry": true, "id": 40}, {"name": "BB", "tID": null, "displayName": "Barbados", "isCountry": true, "id": 41}, {"name": "BY", "tID": null, "displayName": "Belarus", "isCountry": true, "id": 42}, {"name": "BE", "tID": null, "displayName": "Belgium", "isCountry": true, "id": 43}, {"name": "BZ", "tID": null, "displayName": "Belize", "isCountry": true, "id": 44}, {"name": "BJ", "tID": null, "displayName": "Benin", "isCountry": true, "id": 45}, {"name": "BM", "tID": null, "displayName": "Bermuda", "isCountry": true, "id": 46}, {"name": "BT", "tID": null, "displayName": "Bhutan", "isCountry": true, "id": 47}, {"name": "BO", "tID": null, "displayName": "Bolivia", "isCountry": true, "id": 48}, {"name": "BA", "tID": null, "displayName": "Bosnia and Herzegovina", "isCountry": true, "id": 49}, {"name": "BW", "tID": null, "displayName": "Botswana", "isCountry": true, "id": 50}, {"name": "BV", "tID": null, "displayName": "Bouvet Island", "isCountry": true, "id": 51}, {"name": "BR", "tID": null, "displayName": "Brazil", "isCountry": true, "id": 52}, {"name": "IO", "tID": null, "displayName": "British Indian Ocean Territory", "isCountry": true, "id": 53}, {"name": "VG", "tID": null, "displayName": "British Virgin Islands", "isCountry": true, "id": 54}, {"name": "BN", "tID": null, "displayName": "Brunei", "isCountry": true, "id": 55}, {"name": "BG", "tID": null, "displayName": "Bulgaria", "isCountry": true, "id": 56}, {"name": "BF", "tID": null, "displayName": "Burkina Faso", "isCountry": true, "id": 57}, {"name": "BI", "tID": null, "displayName": "Burundi", "isCountry": true, "id": 58}, {"name": "KH", "tID": null, "displayName": "Cambodia", "isCountry": true, "id": 59}, {"name": "CM", "tID": null, "displayName": "Cameroon", "isCountry": true, "id": 60}, {"name": "CA", "tID": null, "displayName": "Canada", "isCountry": true, "id": 61}, {"name": "IC", "tID": null, "displayName": "Canary Islands", "isCountry": true, "id": 62}, {"name": "CV", "tID": null, "displayName": "Cape Verde", "isCountry": true, "id": 63}, {"name": "BQ", "tID": null, "displayName": "Caribbean Netherlands", "isCountry": true, "id": 64}, {"name": "KY", "tID": null, "displayName": "Cayman Islands", "isCountry": true, "id": 65}, {"name": "CF", "tID": null, "displayName": "Central African Republic", "isCountry": true, "id": 66}, {"name": "EA", "tID": null, "displayName": "Ceuta and Melilla", "isCountry": true, "id": 67}, {"name": "TD", "tID": null, "displayName": "Chad", "isCountry": true, "id": 68}, {"name": "CL", "tID": null, "displayName": "Chile", "isCountry": true, "id": 69}, {"name": "CN", "tID": null, "displayName": "China", "isCountry": true, "id": 70}, {"name": "CX", "tID": null, "displayName": "Christmas Island", "isCountry": true, "id": 71}, {"name": "CC", "tID": null, "displayName": "Cocos (Keeling) Islands", "isCountry": true, "id": 72}, {"name": "CO", "tID": null, "displayName": "Colombia", "isCountry": true, "id": 73}, {"name": "KM", "tID": null, "displayName": "Comoros", "isCountry": true, "id": 74}, {"name": "CG", "tID": null, "displayName": "Congo (DRC)", "isCountry": true, "id": 75}, {"name": "CD", "tID": null, "displayName": "Congo (Republic)", "isCountry": true, "id": 76}, {"name": "CK", "tID": null, "displayName": "Cook Islands", "isCountry": true, "id": 77}, {"name": "CR", "tID": null, "displayName": "Costa Rica", "isCountry": true, "id": 78}, {"name": "CI", "tID": null, "displayName": "C\u00f4te d\u2019Ivoire", "isCountry": true, "id": 79}, {"name": "HR", "tID": null, "displayName": "Croatia", "isCountry": true, "id": 80}, {"name": "CU", "tID": null, "displayName": "Cuba", "isCountry": true, "id": 81}, {"name": "CW", "tID": null, "displayName": "Cura\u00e7ao", "isCountry": true, "id": 82}, {"name": "CY", "tID": null, "displayName": "Cyprus", "isCountry": true, "id": 83}, {"name": "CZ", "tID": null, "displayName": "Czech Republic", "isCountry": true, "id": 84}, {"name": "DK", "tID": null, "displayName": "Denmark", "isCountry": true, "id": 85}, {"name": "DG", "tID": null, "displayName": "Diego Garcia", "isCountry": true, "id": 86}, {"name": "DJ", "tID": null, "displayName": "Djibouti", "isCountry": true, "id": 87}, {"name": "DM", "tID": null, "displayName": "Dominica", "isCountry": true, "id": 88}, {"name": "DO", "tID": null, "displayName": "Dominican Republic", "isCountry": true, "id": 89}, {"name": "EC", "tID": null, "displayName": "Ecuador", "isCountry": true, "id": 90}, {"name": "EG", "tID": null, "displayName": "Egypt", "isCountry": true, "id": 91}, {"name": "SV", "tID": null, "displayName": "El Salvador", "isCountry": true, "id": 92}, {"name": "GQ", "tID": null, "displayName": "Equatorial Guinea", "isCountry": true, "id": 93}, {"name": "ER", "tID": null, "displayName": "Eritrea", "isCountry": true, "id": 94}, {"name": "EE", "tID": null, "displayName": "Estonia", "isCountry": true, "id": 95}, {"name": "ET", "tID": null, "displayName": "Ethiopia", "isCountry": true, "id": 96}, {"name": "FK", "tID": null, "displayName": "Falkland Islands", "isCountry": true, "id": 97}, {"name": "FO", "tID": null, "displayName": "Faroe Islands", "isCountry": true, "id": 98}, {"name": "FJ", "tID": null, "displayName": "Fiji", "isCountry": true, "id": 99}, {"name": "FI", "tID": null, "displayName": "Finland", "isCountry": true, "id": 100}, {"name": "FR", "tID": null, "displayName": "France", "isCountry": true, "id": 101}, {"name": "GF", "tID": null, "displayName": "French Guiana", "isCountry": true, "id": 102}, {"name": "PF", "tID": null, "displayName": "French Polynesia", "isCountry": true, "id": 103}, {"name": "TF", "tID": null, "displayName": "French Southern Territories", "isCountry": true, "id": 104}, {"name": "GA", "tID": null, "displayName": "Gabon", "isCountry": true, "id": 105}, {"name": "GM", "tID": null, "displayName": "Gambia", "isCountry": true, "id": 106}, {"name": "GE", "tID": null, "displayName": "Georgia", "isCountry": true, "id": 107}, {"name": "DE", "tID": null, "displayName": "Germany", "isCountry": true, "id": 108}, {"name": "GH", "tID": null, "displayName": "Ghana", "isCountry": true, "id": 109}, {"name": "GI", "tID": null, "displayName": "Gibraltar", "isCountry": true, "id": 110}, {"name": "GR", "tID": null, "displayName": "Greece", "isCountry": true, "id": 111}, {"name": "GL", "tID": null, "displayName": "Greenland", "isCountry": true, "id": 112}, {"name": "GD", "tID": null, "displayName": "Grenada", "isCountry": true, "id": 113}, {"name": "GP", "tID": null, "displayName": "Guadeloupe", "isCountry": true, "id": 114}, {"name": "GU", "tID": null, "displayName": "Guam", "isCountry": true, "id": 115}, {"name": "GT", "tID": null, "displayName": "Guatemala", "isCountry": true, "id": 116}, {"name": "GG", "tID": null, "displayName": "Guernsey", "isCountry": true, "id": 117}, {"name": "GN", "tID": null, "displayName": "Guinea", "isCountry": true, "id": 118}, {"name": "GW", "tID": null, "displayName": "Guinea-Bissau", "isCountry": true, "id": 119}, {"name": "GY", "tID": null, "displayName": "Guyana", "isCountry": true, "id": 120}, {"name": "HT", "tID": null, "displayName": "Haiti", "isCountry": true, "id": 121}, {"name": "HM", "tID": null, "displayName": "Heard & McDonald Islands", "isCountry": true, "id": 122}, {"name": "HN", "tID": null, "displayName": "Honduras", "isCountry": true, "id": 123}, {"name": "HK", "tID": null, "displayName": "Hong Kong", "isCountry": true, "id": 124}, {"name": "HU", "tID": null, "displayName": "Hungary", "isCountry": true, "id": 125}, {"name": "IS", "tID": null, "displayName": "Iceland", "isCountry": true, "id": 126}, {"name": "IN", "tID": null, "displayName": "India", "isCountry": true, "id": 127}, {"name": "ID", "tID": null, "displayName": "Indonesia", "isCountry": true, "id": 128}, {"name": "IR", "tID": null, "displayName": "Iran", "isCountry": true, "id": 129}, {"name": "IQ", "tID": null, "displayName": "Iraq", "isCountry": true, "id": 130}, {"name": "IE", "tID": null, "displayName": "Ireland", "isCountry": true, "id": 131}, {"name": "IM", "tID": null, "displayName": "Isle of Man", "isCountry": true, "id": 132}, {"name": "IL", "tID": null, "displayName": "Israel", "isCountry": true, "id": 133}, {"name": "IT", "tID": null, "displayName": "Italy", "isCountry": true, "id": 134}, {"name": "JM", "tID": null, "displayName": "Jamaica", "isCountry": true, "id": 135}, {"name": "JP", "tID": null, "displayName": "Japan", "isCountry": true, "id": 136}, {"name": "JE", "tID": null, "displayName": "Jersey", "isCountry": true, "id": 137}, {"name": "JO", "tID": null, "displayName": "Jordan", "isCountry": true, "id": 138}, {"name": "KZ", "tID": null, "displayName": "Kazakhstan", "isCountry": true, "id": 139}, {"name": "KE", "tID": null, "displayName": "Kenya", "isCountry": true, "id": 140}, {"name": "KI", "tID": null, "displayName": "Kiribati", "isCountry": true, "id": 141}, {"name": "XK", "tID": null, "displayName": "Kosovo", "isCountry": true, "id": 142}, {"name": "KW", "tID": null, "displayName": "Kuwait", "isCountry": true, "id": 143}, {"name": "KG", "tID": null, "displayName": "Kyrgyzstan", "isCountry": true, "id": 144}, {"name": "LA", "tID": null, "displayName": "Laos", "isCountry": true, "id": 145}, {"name": "LV", "tID": null, "displayName": "Latvia", "isCountry": true, "id": 146}, {"name": "LB", "tID": null, "displayName": "Lebanon", "isCountry": true, "id": 147}, {"name": "LS", "tID": null, "displayName": "Lesotho", "isCountry": true, "id": 148}, {"name": "LR", "tID": null, "displayName": "Liberia", "isCountry": true, "id": 149}, {"name": "LY", "tID": null, "displayName": "Libya", "isCountry": true, "id": 150}, {"name": "LI", "tID": null, "displayName": "Liechtenstein", "isCountry": true, "id": 151}, {"name": "LT", "tID": null, "displayName": "Lithuania", "isCountry": true, "id": 152}, {"name": "LU", "tID": null, "displayName": "Luxembourg", "isCountry": true, "id": 153}, {"name": "MO", "tID": null, "displayName": "Macau", "isCountry": true, "id": 154}, {"name": "MK", "tID": null, "displayName": "Macedonia (FYROM)", "isCountry": true, "id": 155}, {"name": "MG", "tID": null, "displayName": "Madagascar", "isCountry": true, "id": 156}, {"name": "MW", "tID": null, "displayName": "Malawi", "isCountry": true, "id": 157}, {"name": "MY", "tID": null, "displayName": "Malaysia", "isCountry": true, "id": 158}, {"name": "MV", "tID": null, "displayName": "Maldives", "isCountry": true, "id": 159}, {"name": "ML", "tID": null, "displayName": "Mali", "isCountry": true, "id": 160}, {"name": "MT", "tID": null, "displayName": "Malta", "isCountry": true, "id": 161}, {"name": "MH", "tID": null, "displayName": "Marshall Islands", "isCountry": true, "id": 162}, {"name": "MQ", "tID": null, "displayName": "Martinique", "isCountry": true, "id": 163}, {"name": "MR", "tID": null, "displayName": "Mauritania", "isCountry": true, "id": 164}, {"name": "MU", "tID": null, "displayName": "Mauritius", "isCountry": true, "id": 165}, {"name": "YT", "tID": null, "displayName": "Mayotte", "isCountry": true, "id": 166}, {"name": "MX", "tID": null, "displayName": "Mexico", "isCountry": true, "id": 167}, {"name": "FM", "tID": null, "displayName": "Micronesia", "isCountry": true, "id": 168}, {"name": "MD", "tID": null, "displayName": "Moldova", "isCountry": true, "id": 169}, {"name": "MC", "tID": null, "displayName": "Monaco", "isCountry": true, "id": 170}, {"name": "MN", "tID": null, "displayName": "Mongolia", "isCountry": true, "id": 171}, {"name": "ME", "tID": null, "displayName": "Montenegro", "isCountry": true, "id": 172}, {"name": "MS", "tID": null, "displayName": "Montserrat", "isCountry": true, "id": 173}, {"name": "MA", "tID": null, "displayName": "Morocco", "isCountry": true, "id": 174}, {"name": "MZ", "tID": null, "displayName": "Mozambique", "isCountry": true, "id": 175}, {"name": "MM", "tID": null, "displayName": "Myanmar (Burma)", "isCountry": true, "id": 176}, {"name": "NA", "tID": null, "displayName": "Namibia", "isCountry": true, "id": 177}, {"name": "NR", "tID": null, "displayName": "Nauru", "isCountry": true, "id": 178}, {"name": "NP", "tID": null, "displayName": "Nepal", "isCountry": true, "id": 179}, {"name": "NL", "tID": null, "displayName": "Netherlands", "isCountry": true, "id": 180}, {"name": "NC", "tID": null, "displayName": "New Caledonia", "isCountry": true, "id": 181}, {"name": "NZ", "tID": null, "displayName": "New Zealand", "isCountry": true, "id": 182}, {"name": "NI", "tID": null, "displayName": "Nicaragua", "isCountry": true, "id": 183}, {"name": "NE", "tID": null, "displayName": "Niger", "isCountry": true, "id": 184}, {"name": "NG", "tID": null, "displayName": "Nigeria", "isCountry": true, "id": 185}, {"name": "NU", "tID": null, "displayName": "Niue", "isCountry": true, "id": 186}, {"name": "NF", "tID": null, "displayName": "Norfolk Island", "isCountry": true, "id": 187}, {"name": "KP", "tID": null, "displayName": "North Korea", "isCountry": true, "id": 188}, {"name": "MP", "tID": null, "displayName": "Northern Mariana Islands", "isCountry": true, "id": 189}, {"name": "NO", "tID": null, "displayName": "Norway", "isCountry": true, "id": 190}, {"name": "OM", "tID": null, "displayName": "Oman", "isCountry": true, "id": 191}, {"name": "PK", "tID": null, "displayName": "Pakistan", "isCountry": true, "id": 192}, {"name": "PW", "tID": null, "displayName": "Palau", "isCountry": true, "id": 193}, {"name": "PS", "tID": null, "displayName": "Palestine", "isCountry": true, "id": 194}, {"name": "PA", "tID": null, "displayName": "Panama", "isCountry": true, "id": 195}, {"name": "PG", "tID": null, "displayName": "Papua New Guinea", "isCountry": true, "id": 196}, {"name": "PY", "tID": null, "displayName": "Paraguay", "isCountry": true, "id": 197}, {"name": "PE", "tID": null, "displayName": "Peru", "isCountry": true, "id": 198}, {"name": "PH", "tID": null, "displayName": "Philippines", "isCountry": true, "id": 199}, {"name": "PN", "tID": null, "displayName": "Pitcairn Islands", "isCountry": true, "id": 200}, {"name": "PL", "tID": null, "displayName": "Poland", "isCountry": true, "id": 201}, {"name": "PT", "tID": null, "displayName": "Portugal", "isCountry": true, "id": 202}, {"name": "PR", "tID": null, "displayName": "Puerto Rico", "isCountry": true, "id": 203}, {"name": "QA", "tID": null, "displayName": "Qatar", "isCountry": true, "id": 204}, {"name": "RE", "tID": null, "displayName": "R\u00e9union", "isCountry": true, "id": 205}, {"name": "RO", "tID": null, "displayName": "Romania", "isCountry": true, "id": 206}, {"name": "RU", "tID": null, "displayName": "Russia", "isCountry": true, "id": 207}, {"name": "RW", "tID": null, "displayName": "Rwanda", "isCountry": true, "id": 208}, {"name": "BL", "tID": null, "displayName": "Saint Barth\u00e9lemy", "isCountry": true, "id": 209}, {"name": "SH", "tID": null, "displayName": "Saint Helena", "isCountry": true, "id": 210}, {"name": "KN", "tID": null, "displayName": "Saint Kitts and Nevis", "isCountry": true, "id": 211}, {"name": "LC", "tID": null, "displayName": "Saint Lucia", "isCountry": true, "id": 212}, {"name": "MF", "tID": null, "displayName": "Saint Martin", "isCountry": true, "id": 213}, {"name": "PM", "tID": null, "displayName": "Saint Pierre and Miquelon", "isCountry": true, "id": 214}, {"name": "WS", "tID": null, "displayName": "Samoa", "isCountry": true, "id": 215}, {"name": "SM", "tID": null, "displayName": "San Marino", "isCountry": true, "id": 216}, {"name": "ST", "tID": null, "displayName": "S\u00e3o Tom\u00e9 and Pr\u00edncipe", "isCountry": true, "id": 217}, {"name": "SA", "tID": null, "displayName": "Saudi Arabia", "isCountry": true, "id": 218}, {"name": "SN", "tID": null, "displayName": "Senegal", "isCountry": true, "id": 219}, {"name": "RS", "tID": null, "displayName": "Serbia", "isCountry": true, "id": 220}, {"name": "SC", "tID": null, "displayName": "Seychelles", "isCountry": true, "id": 221}, {"name": "SL", "tID": null, "displayName": "Sierra Leone", "isCountry": true, "id": 222}, {"name": "SG", "tID": null, "displayName": "Singapore", "isCountry": true, "id": 223}, {"name": "SX", "tID": null, "displayName": "Sint Maarten", "isCountry": true, "id": 224}, {"name": "SK", "tID": null, "displayName": "Slovakia", "isCountry": true, "id": 225}, {"name": "SI", "tID": null, "displayName": "Slovenia", "isCountry": true, "id": 226}, {"name": "SB", "tID": null, "displayName": "Solomon Islands", "isCountry": true, "id": 227}, {"name": "SO", "tID": null, "displayName": "Somalia", "isCountry": true, "id": 228}, {"name": "ZA", "tID": null, "displayName": "South Africa", "isCountry": true, "id": 229}, {"name": "KR", "tID": null, "displayName": "South Korea", "isCountry": true, "id": 230}, {"name": "SS", "tID": null, "displayName": "South Sudan", "isCountry": true, "id": 231}, {"name": "ES", "tID": null, "displayName": "Spain", "isCountry": true, "id": 232}, {"name": "LK", "tID": null, "displayName": "Sri Lanka", "isCountry": true, "id": 233}, {"name": "VC", "tID": null, "displayName": "St. Vincent & Grenadines", "isCountry": true, "id": 234}, {"name": "SD", "tID": null, "displayName": "Sudan", "isCountry": true, "id": 235}, {"name": "SR", "tID": null, "displayName": "Suriname", "isCountry": true, "id": 236}, {"name": "SJ", "tID": null, "displayName": "Svalbard and Jan Mayen", "isCountry": true, "id": 237}, {"name": "SZ", "tID": null, "displayName": "Swaziland", "isCountry": true, "id": 238}, {"name": "SE", "tID": null, "displayName": "Sweden", "isCountry": true, "id": 239}, {"name": "CH", "tID": null, "displayName": "Switzerland", "isCountry": true, "id": 240}, {"name": "SY", "tID": null, "displayName": "Syria", "isCountry": true, "id": 241}, {"name": "TW", "tID": null, "displayName": "Taiwan", "isCountry": true, "id": 242}, {"name": "TJ", "tID": null, "displayName": "Tajikistan", "isCountry": true, "id": 243}, {"name": "TZ", "tID": null, "displayName": "Tanzania", "isCountry": true, "id": 244}, {"name": "TH", "tID": null, "displayName": "Thailand", "isCountry": true, "id": 245}, {"name": "TL", "tID": null, "displayName": "Timor-Leste", "isCountry": true, "id": 246}, {"name": "TG", "tID": null, "displayName": "Togo", "isCountry": true, "id": 247}, {"name": "TK", "tID": null, "displayName": "Tokelau", "isCountry": true, "id": 248}, {"name": "TO", "tID": null, "displayName": "Tonga", "isCountry": true, "id": 249}, {"name": "TT", "tID": null, "displayName": "Trinidad and Tobago", "isCountry": true, "id": 250}, {"name": "TA", "tID": null, "displayName": "Tristan da Cunha", "isCountry": true, "id": 251}, {"name": "TN", "tID": null, "displayName": "Tunisia", "isCountry": true, "id": 252}, {"name": "TR", "tID": null, "displayName": "Turkey", "isCountry": true, "id": 253}, {"name": "TM", "tID": null, "displayName": "Turkmenistan", "isCountry": true, "id": 254}, {"name": "TC", "tID": null, "displayName": "Turks and Caicos Islands", "isCountry": true, "id": 255}, {"name": "TV", "tID": null, "displayName": "Tuvalu", "isCountry": true, "id": 256}, {"name": "UM", "tID": null, "displayName": "U.S. Outlying Islands", "isCountry": true, "id": 257}, {"name": "VI", "tID": null, "displayName": "U.S. Virgin Islands", "isCountry": true, "id": 258}, {"name": "UG", "tID": null, "displayName": "Uganda", "isCountry": true, "id": 259}, {"name": "UA", "tID": null, "displayName": "Ukraine", "isCountry": true, "id": 260}, {"name": "AE", "tID": null, "displayName": "United Arab Emirates", "isCountry": true, "id": 261}, {"name": "GB", "tID": null, "displayName": "United Kingdom", "isCountry": true, "id": 262}, {"name": "US", "tID": null, "displayName": "United States", "isCountry": true, "id": 263}, {"name": "UY", "tID": null, "displayName": "Uruguay", "isCountry": true, "id": 264}, {"name": "UZ", "tID": null, "displayName": "Uzbekistan", "isCountry": true, "id": 265}, {"name": "VU", "tID": null, "displayName": "Vanuatu", "isCountry": true, "id": 266}, {"name": "VA", "tID": null, "displayName": "Vatican City", "isCountry": true, "id": 267}, {"name": "VE", "tID": null, "displayName": "Venezuela", "isCountry": true, "id": 268}, {"name": "VN", "tID": null, "displayName": "Vietnam", "isCountry": true, "id": 269}, {"name": "WF", "tID": null, "displayName": "Wallis and Futuna", "isCountry": true, "id": 270}, {"name": "EH", "tID": null, "displayName": "Western Sahara", "isCountry": true, "id": 271}, {"name": "YE", "tID": null, "displayName": "Yemen", "isCountry": true, "id": 272}, {"name": "ZM", "tID": null, "displayName": "Zambia", "isCountry": true, "id": 273}, {"name": "ZW", "tID": null, "displayName": "Zimbabwe", "isCountry": true, "id": 274}, {"name": "CUSTOM1", "tID": "", "displayName": null, "isCountry": false, "id": 275, "rawTID": "REGION_CUSTOM1"}, {"name": "CUSTOM2", "tID": "", "displayName": null, "isCountry": false, "id": 276, "rawTID": "REGION_CUSTOM2"}, {"name": "CUSTOM3", "tID": "", "displayName": null, "isCountry": false, "id": 277, "rawTID": "REGION_CUSTOM3"}, {"name": "CUSTOM4", "tID": "", "displayName": null, "isCountry": false, "id": 278, "rawTID": "REGION_CUSTOM4"}, {"name": "CUSTOM5", "tID": "", "displayName": null, "isCountry": false, "id": 279, "rawTID": "REGION_CUSTOM5"}], "resources": [{"name": "Diamonds", "tID": "Gems", "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_gem", "type": null, "rarity": null, "premiumCurrency": true, "textRed": null, "textGreen": 255, "textBlue": 92, "cap": null, "id": 5, "rawTID": "DIAMONDS"}, {"name": "Gold", "tID": "Tokens", "iconSWF": "sc/ui.sc", "collectEffect": "Collect Gold", "iconExportName": "genicon_coin", "type": null, "rarity": null, "premiumCurrency": null, "textRed": 192, "textGreen": null, "textBlue": 192, "cap": null, "id": 6, "rawTID": "TOKENS"}, {"name": "owcAny", "tID": null, "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "icon_owcAny", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 7}, {"name": "owcRareOrBetter", "tID": null, "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "icon_owcRareOrBetter", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 8}, {"name": "owcEpicOrBetter", "tID": null, "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "icon_owcEpicOrBetter", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 9}, {"name": "Dust", "tID": null, "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_dust", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 10}, {"name": "Upgradium", "tID": null, "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_upgradium", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 11}, {"name": "Bolts", "tID": null, "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_upgradium", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 12}, {"name": "HeroLvlUpMaterial", "tID": "Coins", "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_upgradium", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 13, "rawTID": "HERO_LVL_UP_MATERIAL"}, {"name": "FirstWins", "tID": "Star Tokens", "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_upgradium", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 14, "rawTID": "FIRST_WINS"}, {"name": "LegendaryTrophies", "tID": "Star Points", "iconSWF": "sc/ui.sc", "collectEffect": null, "iconExportName": "genicon_upgradium", "type": null, "rarity": null, "premiumCurrency": null, "textRed": null, "textGreen": null, "textBlue": null, "cap": null, "id": 15, "rawTID": "LEGENDARY_TROPHIES"}], "skills": [{"name": "ShotgunGirlWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 23, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1500, "maxCharge": 3, "damage": 300, "msBetweenAttacks": 100, "spread": 60, "attackPattern": null, "numBulletsInOneAttack": 5, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ShotgunGirlProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "shelly_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 20}, {"name": "ShotgunGirlUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 23, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 320, "msBetweenAttacks": 100, "spread": 100, "attackPattern": null, "numBulletsInOneAttack": 9, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ShotgunGirlUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_megablast", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "shelly_def_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 21}, {"name": "GunslingerWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 650, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1600, "maxCharge": 3, "damage": 300, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": true, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "GunslingerProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "colt_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 22}, {"name": "GunslingerUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 1250, "castingTime": null, "castingRange": 33, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 300, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": true, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "GunslingerUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bullet_storm", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "colt_def_ulti", "useEffect": "Dummy_effect", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 23}, {"name": "BullDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 16, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1600, "maxCharge": 3, "damage": 400, "msBetweenAttacks": 100, "spread": 90, "attackPattern": null, "numBulletsInOneAttack": 5, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BullDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "bull_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 24}, {"name": "BullDudeUlti", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": null, "castingTime": null, "castingRange": 33, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 800, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 1800, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "bull_dude_ulti", "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 25}, {"name": "RocketGirlWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 30, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2100, "maxCharge": 3, "damage": 1100, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RocketGirlProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "brock_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 26}, {"name": "RocketGirlUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 1850, "castingTime": null, "castingRange": 25, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1040, "msBetweenAttacks": 200, "spread": 210, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RocketGirlUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bigger_granade", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "brock_def_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 27}, {"name": "TrickshotDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 800, "castingTime": null, "castingRange": 29, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1200, "maxCharge": 3, "damage": 320, "msBetweenAttacks": 150, "spread": 15, "attackPattern": 1, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "TrickshotDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "rico_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 28}, {"name": "TrickshotDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 1250, "castingTime": null, "castingRange": 40, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 320, "msBetweenAttacks": 100, "spread": 20, "attackPattern": 1, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "TrickshotDudeUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bullet_storm", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "rico_def_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 29}, {"name": "CactusWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 23, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2000, "maxCharge": 3, "damage": 480, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "CactusProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "cactus_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 30}, {"name": "CactusUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 23, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 400, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "CactusUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bigger_granade", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "cactus_attack_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 31}, {"name": "BarkeepWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 22, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2000, "maxCharge": 3, "damage": 680, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BarkeepProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "barkeep_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 32}, {"name": "BarkeepUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 1050, "castingTime": null, "castingRange": 28, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 680, "msBetweenAttacks": 200, "spread": 100, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BarkeepUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bigger_granade", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "barkeep_attack_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 33}, {"name": "MechanicWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1800, "maxCharge": 3, "damage": 840, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "MechanicProjectile1", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "mechanic_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 34}, {"name": "MechanicUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "MechanicUltiProjectile", "summonedCharacter": "MechanicTurret", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "turret_button", "attackEffect": "mechanic_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 35}, {"name": "ShamanWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 18, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 800, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ShamanProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "shaman_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 36}, {"name": "ShamanUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ShamanUltiProjectile", "summonedCharacter": "ShamanPet", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "turret_button", "attackEffect": "shaman_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 37}, {"name": "TntDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 22, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1700, "maxCharge": 3, "damage": 760, "msBetweenAttacks": 100, "spread": 30, "attackPattern": null, "numBulletsInOneAttack": 2, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "TntDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "tnt_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 38}, {"name": "TntDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 22, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 2200, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "TntDudeUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_dynamite_ulti", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "tnt_attack_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 39}, {"name": "LuchadorWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 650, "castingTime": null, "castingRange": 9, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 800, "maxCharge": 3, "damage": 360, "msBetweenAttacks": 150, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": true, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "PrimoDefProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "luchador_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 40}, {"name": "LuchadorUlti", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": null, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 800, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 1600, "chargeType": 3, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_hammer_ulti", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "luchador_ulti", "endEffect": "luchador_ulti_ground_hit", "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 41}, {"name": "UndertakerWeapon", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 0, "activeTime": null, "castingTime": null, "castingRange": 8, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2400, "maxCharge": 3, "damage": 900, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": 2700, "chargeType": 4, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "mortis_def_atk", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 42}, {"name": "UndertakerUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 0, "activeTime": 200, "castingTime": null, "castingRange": 30, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 900, "msBetweenAttacks": 150, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "UndertakerUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "undertaker_attack_ulti", "useEffect": "Dummy_effect", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 43}, {"name": "CrowWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1400, "maxCharge": 3, "damage": 320, "msBetweenAttacks": 100, "spread": 45, "attackPattern": null, "numBulletsInOneAttack": 3, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "CrowProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "crow_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 44}, {"name": "CrowUlti", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": null, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 320, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 0, "chargeSpeed": 3000, "chargeType": 2, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": "CrowUltiKnifes", "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_hammer_ulti", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "crow_ulti", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 45}, {"name": "DeadMariachiWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 21, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1600, "maxCharge": 3, "damage": 660, "msBetweenAttacks": 100, "spread": 130, "attackPattern": null, "numBulletsInOneAttack": 4, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "DeadMariachiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "poco_def_atk_direct", "useEffect": "poco_def_atk_root", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 46}, {"name": "DeadMariachiUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 28, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 2100, "msBetweenAttacks": 100, "spread": 130, "attackPattern": null, "numBulletsInOneAttack": 3, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "DeadMariachiUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "poco_def_atk_direct", "useEffect": "poco_def_ulti_root", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 47}, {"name": "BowDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 650, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1700, "maxCharge": 3, "damage": 520, "msBetweenAttacks": 200, "spread": 30, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BowDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "bow_dude_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 48}, {"name": "BowDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1440, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BowDudeSpawnMineProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": "BoxOfMines", "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_mine", "attackEffect": "bo_def_ulti_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 49}, {"name": "SniperWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 500, "activeTime": 150, "castingTime": null, "castingRange": 30, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2300, "maxCharge": 3, "damage": 1520, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "SniperProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "sniper_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 50}, {"name": "SniperUlti", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": null, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 900, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 0, "chargeSpeed": 1500, "chargeType": 6, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": "BoxOfBombs", "iconSWF": null, "iconExportName": "skillicon_hammer_ulti", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "sniper_ulti", "endEffect": "sniper_landing_smoke_ring", "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 51}, {"name": "MinigunDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 950, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1300, "maxCharge": 3, "damage": 260, "msBetweenAttacks": 100, "spread": 60, "attackPattern": 3, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "MinigunDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "pam_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 52}, {"name": "MinigunDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "MinigunDudeUltiProjectile", "summonedCharacter": "HealingStation", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_mine", "attackEffect": "minigun_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 53}, {"name": "BlackHoleWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 24, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2000, "maxCharge": 3, "damage": 420, "msBetweenAttacks": 100, "spread": 50, "attackPattern": null, "numBulletsInOneAttack": 3, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BlackHoleProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "blackhole_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 54}, {"name": "BlackHoleUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 20, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 800, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BlackHoleUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bullet_storm", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "blackhole_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 55}, {"name": "BarrelBotWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 550, "castingTime": null, "castingRange": 18, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1800, "maxCharge": 3, "damage": 240, "msBetweenAttacks": 250, "spread": 80, "attackPattern": null, "numBulletsInOneAttack": 5, "twoGuns": true, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BarrelBotProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "darryl_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 56}, {"name": "BarrelBotUlti", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": null, "castingTime": null, "castingRange": 21, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 400, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 70, "chargeSpeed": 2400, "chargeType": 7, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "barrel_bot_ulti", "endEffect": null, "loopEffect": "barrel_bot_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Barrelbot_step", "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 57}, {"name": "ArtilleryDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2000, "maxCharge": 3, "damage": 900, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ArtilleryDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "penny_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 58}, {"name": "ArtilleryDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ArtilleryDudeUltiProjectile", "summonedCharacter": "ArtilleryDudeTurret", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "turret_button", "attackEffect": "artillery_dude_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 59}, {"name": "Warp", "behaviorType": "Blink", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": null, "castingTime": null, "castingRange": 19, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": "sc/ui.sc", "iconExportName": "item_icon_teleport", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_teleport", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 60}, {"name": "SupplyCrate", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": null, "castingTime": null, "castingRange": 14, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": "SupplyCrate", "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_mine", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 61}, {"name": "Bow", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 20, "rangeVisual": null, "maxCastingRange": 40, "rechargeTime": null, "maxCharge": null, "damage": 600, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "laser_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 62}, {"name": "DummySkillForLaserBall", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 24, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "DummyProjectileForLaserBall", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": null, "buttonExportName": null, "attackEffect": "laser_ball_throw", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 63}, {"name": "DummyUltiSkillForLaserBall", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 36, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "DummyProjectileForLaserBall", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": null, "buttonExportName": null, "attackEffect": "laser_ball_throw_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 64}, {"name": "BossRapidFire", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 1250, "castingRange": 40, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 900, "msBetweenAttacks": 300, "spread": 90, "attackPattern": 3, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BossProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "coop_boss_ranged_attack", "useEffect": "coop_boss_skill_warning", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 65}, {"name": "BossCharge", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": 1000, "castingRange": 33, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1400, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 1800, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 66}, {"name": "MeleeEnemyCharge", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": null, "castingRange": 33, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1000, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 2400, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 67}, {"name": "HammerDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 700, "castingTime": null, "castingRange": 18, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 800, "maxCharge": 3, "damage": 1200, "msBetweenAttacks": 600, "spread": 130, "attackPattern": null, "numBulletsInOneAttack": 4, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "HammerDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "hammer_dude_attack", "useEffect": "hammer_dude_start_attack", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 68}, {"name": "HammerDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 1200, "castingTime": null, "castingRange": 21, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1200, "msBetweenAttacks": 1100, "spread": 130, "attackPattern": null, "numBulletsInOneAttack": 4, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "HammerDudeUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "hammer_dude_ulti", "useEffect": "hammer_dude_start_ulti", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 69}, {"name": "HookWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 17, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2000, "maxCharge": 3, "damage": 1000, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "HookProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "gene_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 70}, {"name": "HookUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 23, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "HookUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "gene_def_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 71}, {"name": "ClusterBombDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2200, "maxCharge": 3, "damage": 640, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ClusterBombProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_dynamite_ulti", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "tick_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 72}, {"name": "ClusterBombDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 10, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ClusterBombSummonProjectile", "summonedCharacter": "ClusterBombPet", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "turret_button", "attackEffect": "tick_attack_ulti", "useEffect": "tick_def_ulti", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 73}, {"name": "BoneThrowerWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2000, "maxCharge": 3, "damage": null, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BoneThrowerProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "bonethrower_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 74}, {"name": "BoneThrowerUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 100, "msBetweenAttacks": 500, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BoneThrowerUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bigger_granade", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "bonethrower_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 75}, {"name": "NinjaWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 450, "castingTime": null, "castingRange": 29, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1900, "maxCharge": 3, "damage": 440, "msBetweenAttacks": 100, "spread": 35, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": true, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "LeonDefProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "ninja_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 76}, {"name": "NinjaUlti", "behaviorType": "Invisibility", "canMoveAtSameTime": true, "targeted": null, "canAutoShoot": true, "cooldown": 50, "activeTime": 6000, "castingTime": null, "castingRange": null, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": true, "seeInvisibilityDistance": 1200, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_sprint", "attackEffect": null, "useEffect": "ninja_go_invisible", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": true, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 77}, {"name": "RosaWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 800, "castingTime": null, "castingRange": 11, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1000, "maxCharge": 3, "damage": 460, "msBetweenAttacks": 250, "spread": 130, "attackPattern": null, "numBulletsInOneAttack": 3, "twoGuns": true, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RosaProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "rosa_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 78}, {"name": "RosaUlti", "behaviorType": "Shield", "canMoveAtSameTime": true, "targeted": null, "canAutoShoot": true, "cooldown": 50, "activeTime": 3000, "castingTime": null, "castingRange": null, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 70, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_sprint", "attackEffect": null, "useEffect": "rosa_def_ulti", "endEffect": null, "loopEffect": "rosa_def_ulti_loop", "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": true, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 79}, {"name": "SandstormUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 22, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "SandstormUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_dynamite_ulti", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "plasma_bomb_button", "attackEffect": "tnt_attack_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 80}, {"name": "RaidBossRapidFire", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 1250, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 1200, "msBetweenAttacks": 300, "spread": 100, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RaidBossProjectileRed", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "raidboss_skill_warning_long", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 81}, {"name": "RaidBossRapidFire2", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 1000, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 1400, "msBetweenAttacks": 200, "spread": 150, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RaidBossProjectileRed", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "raidboss_skill_warning_medium", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 82}, {"name": "RaidBossRapidFire3", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 1700, "msBetweenAttacks": 100, "spread": 250, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RaidBossProjectileRedDestroyEnv", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "raidboss_skill_warning_short", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 83}, {"name": "RaidBossRapidFire4", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 2000, "msBetweenAttacks": 100, "spread": 250, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "RaidBossProjectileGold", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "raidboss_skill_warning_short", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 84}, {"name": "RaidBossCharge", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": 1250, "castingRange": 40, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1200, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 2000, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "raidboss_skill_warning_long", "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 85}, {"name": "RaidBossCharge2", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": 1000, "castingRange": 50, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1400, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 2500, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "raidboss_skill_warning_medium", "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 86}, {"name": "RaidBossCharge3", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1700, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 3000, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "raidboss_skill_warning_short", "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 87}, {"name": "RaidBossCharge4", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 2000, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 3000, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": "raidboss_skill_warning_short", "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 88}, {"name": "BossRapidFire2", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 1250, "castingRange": 32, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 900, "msBetweenAttacks": 300, "spread": 90, "attackPattern": 3, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BossProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "raidboss_skill_warning_long", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 89}, {"name": "BossRapidFire3", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 1250, "castingRange": 32, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 900, "msBetweenAttacks": 300, "spread": 90, "attackPattern": 3, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BossProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "raidboss_skill_warning_long", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 90}, {"name": "WhirlwindWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 500, "activeTime": 150, "castingTime": null, "castingRange": 23, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 0, "maxCharge": 1, "damage": 600, "msBetweenAttacks": 100, "spread": 0, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "WhirlwindProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "whirlwind_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 91}, {"name": "WhirlwindUlti", "behaviorType": "Ww", "canMoveAtSameTime": true, "targeted": null, "canAutoShoot": true, "cooldown": 50, "activeTime": 3000, "castingTime": null, "castingRange": 7, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 400, "msBetweenAttacks": 600, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_sprint", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": "carl_def_ulti_loop", "loopEffect2": "carl_def_ulti_ground", "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": true, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 92}, {"name": "BaseballWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 700, "castingTime": null, "castingRange": 11, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 800, "maxCharge": 3, "damage": 1300, "msBetweenAttacks": 600, "spread": 300, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 200, "chargeSpeed": 2000, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "bibi_def_atk", "useEffect": "bibi_swing", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 93}, {"name": "BaseballUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 150, "castingTime": null, "castingRange": 120, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 900, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BaseballUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "bibi_def_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 94}, {"name": "ArcadeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 650, "castingTime": null, "castingRange": 30, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1500, "maxCharge": 3, "damage": 320, "msBetweenAttacks": 100, "spread": 18, "attackPattern": 3, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ArcadeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "arcade_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 95}, {"name": "ArcadeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "ArcadeUltiProjectile", "summonedCharacter": "DamageBooster", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_mine", "attackEffect": null, "useEffect": "arcade_def_ulti_atk", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 96}, {"name": "SandstormWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 18, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1800, "maxCharge": 3, "damage": 900, "msBetweenAttacks": 100, "spread": 80, "attackPattern": 4, "numBulletsInOneAttack": 3, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "SandstormProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "poco_def_atk_direct", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 97}, {"name": "BeeSniperWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 150, "castingTime": null, "castingRange": 30, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 900, "maxCharge": 1, "damage": 800, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BeeSniperProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "bea_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": "BeeSniperChargedProjectile", "chargedShotCount": 1, "damageModifier": 275, "id": 98}, {"name": "BeeSniperUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 150, "castingTime": null, "castingRange": 27, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 100, "msBetweenAttacks": 100, "spread": 30, "attackPattern": null, "numBulletsInOneAttack": 7, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BeeSniperUltiProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_bullet_storm", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "tick_def_atk", "useEffect": "Dummy_effect", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 99}, {"name": "BossRaceBossRapidFire", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1850, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 1400, "msBetweenAttacks": 200, "spread": 150, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BossRaceBossProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "bossrace_skill_warning", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 100}, {"name": "BossRaceBossCharge", "behaviorType": "Charge", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": null, "castingTime": 750, "castingRange": 50, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 1400, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": 130, "chargeSpeed": 2500, "chargeType": 1, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": true, "projectile": null, "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_powercharge", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "charge_button", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": "bull_dude_ulti_loop", "loopEffect2": null, "chargeMoveSound": "Rhinostep", "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 101}, {"name": "MummyWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 20, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2100, "maxCharge": 3, "damage": 500, "msBetweenAttacks": 100, "spread": 80, "attackPattern": 5, "numBulletsInOneAttack": 5, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "MummyProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "emz_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 102}, {"name": "MummyUlti", "behaviorType": "AreaBuff", "canMoveAtSameTime": true, "targeted": null, "canAutoShoot": true, "cooldown": 50, "activeTime": 5000, "castingTime": null, "castingRange": null, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": 200, "msBetweenAttacks": 70, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": "MummyUltiArea", "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_sprint", "attackEffect": null, "useEffect": "emz_def_ulti_use", "endEffect": null, "loopEffect": "Dummy_effect", "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": true, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 103}, {"name": "BossRaceBossChainLightning", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1050, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 1400, "msBetweenAttacks": 200, "spread": 150, "attackPattern": 2, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BossRaceBossLightningProjectile1", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "bossrace_skill_warning", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 104}, {"name": "BossRaceBossRockets", "behaviorType": "Attack", "canMoveAtSameTime": null, "targeted": true, "canAutoShoot": null, "cooldown": 50, "activeTime": 1050, "castingTime": 750, "castingRange": 60, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1250, "maxCharge": 3, "damage": 700, "msBetweenAttacks": 200, "spread": 750, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "BossRaceBossRocketProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "raid_boss_ranged_attack", "useEffect": "bossrace_skill_warning", "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": true, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 105}, {"name": "SpawnerDudeUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "SpawnerDudeUltiProjectile", "summonedCharacter": "SpawnerDudeTurret", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "turret_button", "attackEffect": "artillery_dude_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 106}, {"name": "SpawnerDudeWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 150, "castingTime": null, "castingRange": 22, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1600, "maxCharge": 3, "damage": 700, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "SpawnerDudeProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "colt_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 107}, {"name": "SpeedyWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 450, "castingTime": null, "castingRange": 25, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 1300, "maxCharge": 4, "damage": 250, "msBetweenAttacks": 100, "spread": 30, "attackPattern": 6, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "SpeedyProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "colt_def_atk", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 108}, {"name": "SpeedyUlti", "behaviorType": "AreaBuff", "canMoveAtSameTime": true, "targeted": null, "canAutoShoot": true, "cooldown": 50, "activeTime": 4000, "castingTime": null, "castingRange": null, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": null, "spread": null, "attackPattern": null, "numBulletsInOneAttack": null, "twoGuns": null, "executeFirstAttackImmediately": null, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": null, "summonedCharacter": null, "areaEffectObject": "SpeedyUltiArea", "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "button_sprint", "attackEffect": null, "useEffect": null, "endEffect": null, "loopEffect": "Dummy_effect", "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 109}, {"name": "HomerWeapon", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 150, "castingTime": null, "castingRange": 20, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": 2200, "maxCharge": 3, "damage": 800, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "HomerProjectile", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "rapid_fire_button", "attackEffect": "sniper_attack", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 110}, {"name": "HomerUlti", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": true, "cooldown": 50, "activeTime": 250, "castingTime": null, "castingRange": 15, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 200, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": 1, "maxSpawns": 1, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "HomerUltiProjectile", "summonedCharacter": "ReloadBooster", "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": "skillicon_build_bigger_turret", "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": "sc/ui.sc", "buttonExportName": "turret_button", "attackEffect": "shaman_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 111}, {"name": "DummySkillForCTF", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 13, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "DummyProjectileForCTF", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": null, "buttonExportName": null, "attackEffect": "laser_ball_throw", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 112}, {"name": "DummyUltiSkillForCTF", "behaviorType": "Attack", "canMoveAtSameTime": true, "targeted": true, "canAutoShoot": null, "cooldown": 250, "activeTime": 150, "castingTime": null, "castingRange": 26, "rangeVisual": null, "maxCastingRange": null, "rechargeTime": null, "maxCharge": null, "damage": null, "msBetweenAttacks": 100, "spread": null, "attackPattern": null, "numBulletsInOneAttack": 1, "twoGuns": null, "executeFirstAttackImmediately": true, "chargePushback": null, "chargeSpeed": null, "chargeType": null, "numSpawns": null, "maxSpawns": null, "breakInvisibilityOnAttack": null, "seeInvisibilityDistance": null, "alwaysCastAtMaxRange": null, "projectile": "DummyProjectileForCTF", "summonedCharacter": null, "areaEffectObject": null, "areaEffectObject2": null, "spawnedItem": null, "iconSWF": null, "iconExportName": null, "largeIconSWF": null, "largeIconExportName": null, "buttonSWF": null, "buttonExportName": null, "attackEffect": "laser_ball_throw_ulti", "useEffect": null, "endEffect": null, "loopEffect": null, "loopEffect2": null, "chargeMoveSound": null, "multiShot": null, "skillCanChange": null, "showTimerBar": null, "secondaryProjectile": null, "chargedShotCount": null, "damageModifier": null, "id": 113}], "skins": [{"name": "BanditGirlDefault", "conf": "BanditGirlDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "shelly_v2_01.pvr", "redTexture": "shelly_v2_01.pvr", "blueSpecular": "shelly_v2_01.pvr", "redSpecular": "shelly_v2_01.pvr", "id": 29}, {"name": "GunSlingerDefault", "conf": "GunSlingerDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "colt_tex.pvr", "redTexture": "colt_tex.pvr", "blueSpecular": "colt_tex.pvr", "redSpecular": "colt_tex.pvr", "id": 30}, {"name": "GunSlingerRockstar", "conf": "GunSlingerRockstar", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 30, "tID": "ROCKSTAR COLT", "shopTID": "ROCKSTAR\\nCOLT", "features": "MODEL", "materialsFile": null, "blueTexture": "colt_rockstar_tex.pvr", "redTexture": "colt_rockstar_tex.pvr", "blueSpecular": "colt_rockstar_tex.pvr", "redSpecular": "colt_rockstar_tex.pvr", "id": 31, "rawTID": "GUNSLINGER_ROCKSTAR_SKIN", "rawShopTID": "GUNSLINGER_ROCKSTAR_SKIN_SHOP"}, {"name": "BullGuyDefault", "conf": "BullGuyDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bull_tex_01.pvr", "redTexture": "bull_tex_01.pvr", "blueSpecular": "bull_tex_01.pvr", "redSpecular": "bull_tex_01.pvr", "id": 32}, {"name": "RocketGirlDefault", "conf": "RocketGirlDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "brock_blue_tex.pvr", "redTexture": "brock_tex.pvr", "blueSpecular": "brock_blue_tex.pvr", "redSpecular": "brock_tex.pvr", "id": 33}, {"name": "RocketGirlBeach", "conf": "RocketGirlBeach", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "BEACH BROCK", "shopTID": "BEACH\\nBROCK", "features": "MODEL,VFX,SFX", "materialsFile": null, "blueTexture": "brock_beach_blue_tex.pvr", "redTexture": "brock_beach_tex.pvr", "blueSpecular": "brock_beach_blue_tex.pvr", "redSpecular": "brock_beach_tex.pvr", "id": 34, "rawTID": "ROCKET_BEACH_SKIN", "rawShopTID": "ROCKET_BEACH_SKIN_SHOP"}, {"name": "TntGuyDefault", "conf": "TntGuyDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "dynamike_blue_tex.pvr", "redTexture": "dynamike_tex.pvr", "blueSpecular": "dynamike_blue_tex.pvr", "redSpecular": "dynamike_tex.pvr", "id": 35}, {"name": "LuchadorDefault", "conf": "LuchadorDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "primo_tex.pvr", "redTexture": "primo_tex.pvr", "blueSpecular": "primo_tex.pvr", "redSpecular": "primo_tex.pvr", "id": 36}, {"name": "TurretDefault", "conf": "TurretDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "dogturret.pvr", "redTexture": "dogturret.pvr", "blueSpecular": "dogturret.pvr", "redSpecular": "dogturret.pvr", "id": 37}, {"name": "TrickshotDefault", "conf": "TrickshotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "rico_tex.pvr", "redTexture": "rico_tex.pvr", "blueSpecular": "rico_tex.pvr", "redSpecular": "rico_tex.pvr", "id": 38}, {"name": "CactusDefault", "conf": "CactusDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "spike_tex.pvr", "redTexture": "spike_tex.pvr", "blueSpecular": "spike_tex.pvr", "redSpecular": "spike_tex.pvr", "id": 39}, {"name": "CactusPink", "conf": "CactusPink", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "SAKURA SPIKE", "shopTID": "SAKURA\\nSPIKE", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "spike_blossom_tex.pvr", "redTexture": "spike_blossom_tex.pvr", "blueSpecular": "spike_blossom_tex.pvr", "redSpecular": "spike_blossom_tex.pvr", "id": 40, "rawTID": "CACTUS_PINK_SKIN", "rawShopTID": "CACTUS_PINK_SKIN_SHOP"}, {"name": "BarkeepDefault", "conf": "BarkeepDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "barley_tex.pvr", "redTexture": "barley_tex.pvr", "blueSpecular": "barley_tex.pvr", "redSpecular": "barley_tex.pvr", "id": 41}, {"name": "MechanicDefault", "conf": "MechanicDefault", "campaign": null, "obtainType": null, "petSkin": "TurretDefault", "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "jessie_tex.pvr", "redTexture": "jessie_tex.pvr", "blueSpecular": "jessie_tex.pvr", "redSpecular": "jessie_tex.pvr", "id": 42}, {"name": "ShamanDefault", "conf": "ShamanDefault", "campaign": null, "obtainType": null, "petSkin": "ShamanBearDefault", "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "nita_tex.pvr", "redTexture": "nita_tex.pvr", "blueSpecular": "nita_tex.pvr", "redSpecular": "nita_tex.pvr", "id": 43}, {"name": "ShamanPanda", "conf": "ShamanPanda", "campaign": null, "obtainType": null, "petSkin": "ShamanBearPanda", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 30, "tID": "PANDA NITA", "shopTID": "PANDA\\nNITA", "features": "MODEL,PET", "materialsFile": null, "blueTexture": "nita_panda_tex.pvr", "redTexture": "nita_panda_tex.pvr", "blueSpecular": "nita_panda_tex.pvr", "redSpecular": "nita_panda_tex.pvr", "id": 44, "rawTID": "SHAMAN_PANDA_SKIN", "rawShopTID": "SHAMAN_PANDA_SKIN_SHOP"}, {"name": "ShamanBearDefault", "conf": "ShamanBearDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "nita_bear_tex.pvr", "redTexture": "nita_bear_tex.pvr", "blueSpecular": "nita_bear_tex.pvr", "redSpecular": "nita_bear_tex.pvr", "id": 45}, {"name": "ShamanBearPanda", "conf": "ShamanBearPanda", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "nita_bear_panda_tex.pvr", "redTexture": "nita_bear_panda_tex.pvr", "blueSpecular": "nita_bear_panda_tex.pvr", "redSpecular": "nita_bear_panda_tex.pvr", "id": 46}, {"name": "UndertakerDefault", "conf": "UndertakerDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "mortis_v2_tex.pvr", "redTexture": "mortis_v2_tex.pvr", "blueSpecular": "mortis_v2_tex.pvr", "redSpecular": "mortis_v2_tex.pvr", "id": 47}, {"name": "CrowDefault", "conf": "CrowDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "crow_d_01.pvr", "redTexture": "crow_d_01.pvr", "blueSpecular": "crow_d_01.pvr", "redSpecular": "crow_d_01.pvr", "id": 48}, {"name": "CrowWhite", "conf": "CrowWhite", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "WHITE CROW", "shopTID": "WHITE\\nCROW", "features": "MODEL", "materialsFile": null, "blueTexture": "crowwhite_d_01.pvr", "redTexture": "crowwhite_d_01.pvr", "blueSpecular": "crowwhite_d_01.pvr", "redSpecular": "crowwhite_d_01.pvr", "id": 49, "rawTID": "CROW_WHITE_SKIN", "rawShopTID": "CROW_WHITE_SKIN_SHOP"}, {"name": "DeadMariachiDefault", "conf": "DeadMariachiDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "poco_tex.pvr", "redTexture": "poco_tex.pvr", "blueSpecular": "poco_tex.pvr", "redSpecular": "poco_tex.pvr", "id": 50}, {"name": "BowDudeDefault", "conf": "BowDudeDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bo_tex.pvr", "redTexture": "bo_tex.pvr", "blueSpecular": "bo_tex.pvr", "redSpecular": "bo_tex.pvr", "id": 51}, {"name": "SniperDefault", "conf": "SniperDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "piper_tex.pvr", "redTexture": "piper_tex.pvr", "blueSpecular": "piper_tex.pvr", "redSpecular": "piper_tex.pvr", "id": 52}, {"name": "MinigunDudeDefault", "conf": "MinigunDudeDefault", "campaign": null, "obtainType": null, "petSkin": "HealstationDefault", "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "pam_tex.pvr", "redTexture": "pam_tex.pvr", "blueSpecular": "pam_tex.pvr", "redSpecular": "pam_tex.pvr", "id": 53}, {"name": "BullGuyHair", "conf": "BullGuyHair", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "VIKING BULL", "shopTID": "VIKING\\nBULL", "features": "MODEL", "materialsFile": null, "blueTexture": "bull_viking_tex.pvr", "redTexture": "bull_viking_tex.pvr", "blueSpecular": "bull_viking_tex.pvr", "redSpecular": "bull_viking_tex.pvr", "id": 54, "rawTID": "BULL_HAIR_SKIN", "rawShopTID": "BULL_HAIR_SKIN_SHOP"}, {"name": "TrickshotGold", "conf": "TrickshotGold", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "LOADED RICO", "shopTID": "LOADED\\nRICO", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "rico_gold_tex.pvr", "redTexture": "rico_gold_tex.pvr", "blueSpecular": "rico_gold_tex.pvr", "redSpecular": "rico_gold_tex.pvr", "id": 55, "rawTID": "TRICKSHOT_GOLD_SKIN", "rawShopTID": "TRICKSHOT_GOLD_SKIN_SHOP"}, {"name": "BarkeepGold", "conf": "BarkeepGold", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 30, "tID": "GOLDEN BARLEY", "shopTID": "GOLDEN\\nBARLEY", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "barley_banker_tex.pvr", "redTexture": "barley_banker_tex.pvr", "blueSpecular": "barley_banker_tex.pvr", "redSpecular": "barley_banker_tex.pvr", "id": 56, "rawTID": "BARKEEP_GOLD_SKIN", "rawShopTID": "BARKEEP_GOLD_SKIN_SHOP"}, {"name": "LuchadorRudo", "conf": "LuchadorRudo", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "EL RUDO PRIMO", "shopTID": "EL RUDO\\nPRIMO", "features": "MODEL,ANIM", "materialsFile": null, "blueTexture": "primo_elrudo_tex.pvr", "redTexture": "primo_elrudo_tex.pvr", "blueSpecular": "primo_elrudo_tex.pvr", "redSpecular": "primo_elrudo_tex.pvr", "id": 57, "rawTID": "LUCHADOR_RUDO_SKIN", "rawShopTID": "LUCHADOR_RUDO_SKIN_SHOP"}, {"name": "BanditGirlBandita", "conf": "BanditGirlBandita", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 30, "tID": "BANDITA SHELLY", "shopTID": "BANDITA\\nSHELLY", "features": "MODEL", "materialsFile": null, "blueTexture": "shelly_bandita_tex.pvr", "redTexture": "shelly_bandita_tex.pvr", "blueSpecular": "shelly_bandita_tex.pvr", "redSpecular": "shelly_bandita_tex.pvr", "id": 58, "rawTID": "SHOTGUN_BANDITA_SKIN", "rawShopTID": "SHOTGUN_BANDITA_SKIN_SHOP"}, {"name": "LuchadorRey", "conf": "LuchadorRey", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "EL REY PRIMO", "shopTID": "EL REY\\nPRIMO", "features": "MODEL,VFX,ANIM", "materialsFile": null, "blueTexture": "primo_elrey_tex.pvr", "redTexture": "primo_elrey_tex.pvr", "blueSpecular": "primo_elrey_tex.pvr", "redSpecular": "primo_elrey_tex.pvr", "id": 59, "rawTID": "LUCHADOR_KING_SKIN", "rawShopTID": "LUCHADOR_KING_SKIN_SHOP"}, {"name": "BallDefault", "conf": "BallDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 60}, {"name": "BlackholeDefault", "conf": "BlackholeDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "tara_tex.pvr", "redTexture": "tara_tex.pvr", "blueSpecular": "tara_tex.pvr", "redSpecular": "tara_tex.pvr", "id": 61}, {"name": "HealstationDefault", "conf": "HealstationDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "healstion_tex.pvr", "redTexture": "healstion_red_tex.pvr", "blueSpecular": "healstion_red_tex.pvr", "redSpecular": "healstion_red_tex.pvr", "id": 62}, {"name": "BarrelbotDefault", "conf": "BarrelbotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "barrelbot_tex.pvr", "redTexture": "barrelbot_tex_red.pvr", "blueSpecular": "barrelbot_tex_red.pvr", "redSpecular": "barrelbot_tex_red.pvr", "id": 63}, {"name": "BlackholePetDefault", "conf": "BlackholePetDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "ninja_ability_tex.pvr", "redTexture": "ninja_ability_tex.pvr", "blueSpecular": "ninja_ability_tex.pvr", "redSpecular": "ninja_ability_tex.pvr", "id": 64}, {"name": "TntPetDefault", "conf": "TntPetDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "nita_bear_tex.pvr", "redTexture": "nita_bear_tex.pvr", "blueSpecular": "nita_bear_tex.pvr", "redSpecular": "nita_bear_tex.pvr", "id": 65}, {"name": "RangedBotDefault", "conf": "RangedBotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "rangedbot_tex.pvr", "redTexture": "rangedbot_tex.pvr", "blueSpecular": "rangedbot_tex.pvr", "redSpecular": "rangedbot_tex.pvr", "id": 66}, {"name": "MeleeFastBotDefault", "conf": "MeleeFastBotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "fastmeleebot_tex.pvr", "redTexture": "fastmeleebot_tex.pvr", "blueSpecular": "fastmeleebot_tex.pvr", "redSpecular": "fastmeleebot_tex.pvr", "id": 67}, {"name": "MeleeBotDefault", "conf": "MeleeBotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "meleebot_tex.pvr", "redTexture": "meleebot_tex.pvr", "blueSpecular": "meleebot_tex.pvr", "redSpecular": "meleebot_tex.pvr", "id": 68}, {"name": "BossBotDefault", "conf": "BossBotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bossbot_tex.pvr", "redTexture": "bossbot_tex.pvr", "blueSpecular": "bossbot_tex.pvr", "redSpecular": "bossbot_tex.pvr", "id": 69}, {"name": "ArtilleryGalDefault", "conf": "ArtilleryGalDefault", "campaign": null, "obtainType": null, "petSkin": "ArtilleryTurretDefault", "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "mari_tex.pvr", "redTexture": "mari_tex.pvr", "blueSpecular": "mari_tex.pvr", "redSpecular": "mari_tex.pvr", "id": 70}, {"name": "FrankDefault", "conf": "FrankDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "frank_tex.pvr", "redTexture": "frank_tex.pvr", "blueSpecular": "frank_tex.pvr", "redSpecular": "frank_tex.pvr", "id": 71}, {"name": "ArtilleryTurretDefault", "conf": "ArtilleryTurretDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "mari_tex.pvr", "redTexture": "mari_tex.pvr", "blueSpecular": "mari_tex.pvr", "redSpecular": "mari_tex.pvr", "id": 72}, {"name": "MechanicKnight", "conf": "MechanicKnight", "campaign": null, "obtainType": null, "petSkin": "TurretDragon", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "DRAGON KNIGHT JESSIE", "shopTID": "DRAGON KNIGHT\\nJESSIE", "features": "MODEL,TURRET,VFX,ANIM", "materialsFile": null, "blueTexture": "jessie_knight_tex.pvr", "redTexture": "jessie_knight_tex.pvr", "blueSpecular": "jessie_knight_tex.pvr", "redSpecular": "jessie_knight_tex.pvr", "id": 73, "rawTID": "MECHANIC_KNIGHT_SKIN", "rawShopTID": "MECHANIC_KNIGHT_SKIN_SHOP"}, {"name": "FrankCaveman", "conf": "FrankCaveman", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "CAVEMAN FRANK", "shopTID": "CAVEMAN\\nFRANK", "features": "MODEL", "materialsFile": null, "blueTexture": "frank_caveman_01.pvr", "redTexture": "frank_caveman_01.pvr", "blueSpecular": "frank_caveman_01.pvr", "redSpecular": "frank_caveman_01.pvr", "id": 74, "rawTID": "FRANK_CAVEMAN_SKIN", "rawShopTID": "FRANK_CAVEMAN_SKIN_SHOP"}, {"name": "TurretDragon", "conf": "TurretDragon", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "turret_dragon_tex.pvr", "redTexture": "turret_dragon_tex.pvr", "blueSpecular": "turret_dragon_tex.pvr", "redSpecular": "turret_dragon_tex.pvr", "id": 75}, {"name": "MechanicSummer", "conf": "MechanicSummer", "campaign": null, "obtainType": null, "petSkin": "TurretSummertime", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "SUMMER JESSIE", "shopTID": "SUMMER\\nJESSIE", "features": "MODEL,TURRET,VFX", "materialsFile": null, "blueTexture": "jessie_summertime_tex.pvr", "redTexture": "jessie_summertime_tex.pvr", "blueSpecular": "jessie_summertime_tex.pvr", "redSpecular": "jessie_summertime_tex.pvr", "id": 76, "rawTID": "MECHANIC_SUMMER_SKIN", "rawShopTID": "MECHANIC_SUMMER_SKIN_SHOP"}, {"name": "TurretSummertime", "conf": "TurretSummertime", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "turret_summertime_tex.pvr", "redTexture": "turret_summertime_tex.pvr", "blueSpecular": "turret_summertime_tex.pvr", "redSpecular": "turret_summertime_tex.pvr", "id": 77}, {"name": "CrowPheonix", "conf": "CrowPheonix", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 300, "tID": "PHOENIX CROW", "shopTID": "PHOENIX\\nCROW", "features": "MODEL,VFX,ANIM", "materialsFile": null, "blueTexture": "crow_pheonix_tex.pvr", "redTexture": "crow_pheonix_tex.pvr", "blueSpecular": "crow_pheonix_tex.pvr", "redSpecular": "crow_pheonix_tex.pvr", "id": 78, "rawTID": "CROW_PHEONIX_SKIN", "rawShopTID": "CROW_PHEONIX_SKIN_SHOP"}, {"name": "UndertakerGreaser", "conf": "UndertakerGreaser", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "ROCKABILLY MORTIS", "shopTID": "ROCKABILLY\\nMORTIS", "features": "MODEL,ANIM", "materialsFile": null, "blueTexture": "mortis_greaser_tex_02.pvr", "redTexture": "mortis_greaser_tex_02.pvr", "blueSpecular": "mortis_greaser_tex_02.pvr", "redSpecular": "mortis_greaser_tex_02.pvr", "id": 79, "rawTID": "UNDERTAKER_GREASER_SKIN", "rawShopTID": "UNDERTAKER_GREASER_SKIN_SHOP"}, {"name": "BigBotDefault", "conf": "BigBotDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "meleebot_tex.pvr", "redTexture": "meleebot_tex.pvr", "blueSpecular": "meleebot_tex.pvr", "redSpecular": "meleebot_tex.pvr", "id": 80}, {"name": "BanditGirlPrereg", "conf": "BanditGirlPrereg", "campaign": null, "obtainType": 1, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": "STAR SHELLY", "shopTID": "STAR SHELLY", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "shelly_prereg_01.pvr", "redTexture": "shelly_prereg_01.pvr", "blueSpecular": "shelly_prereg_01.pvr", "redSpecular": "shelly_prereg_01.pvr", "id": 81, "rawTID": "SHOTGUN_STAR_SKIN", "rawShopTID": "SHOTGUN_STAR_SKIN"}, {"name": "LootBox", "conf": "LootBox", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 82}, {"name": "TntBox", "conf": "TntBox", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 83}, {"name": "Safe", "conf": "Safe", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 84}, {"name": "TntGuySanta", "conf": "TntGuySanta", "campaign": 1, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "SANTAMIKE", "shopTID": "SANTAMIKE", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "dynamike_santa_blue_tex.pvr", "redTexture": "dynamike_santa_tex.pvr", "blueSpecular": "dynamike_santa_blue_tex.pvr", "redSpecular": "dynamike_santa_tex.pvr", "id": 85, "rawTID": "DYNAMIKE_SANTA_SKIN", "rawShopTID": "DYNAMIKE_SANTA_SKIN_SHOP"}, {"name": "TntGuyChef", "conf": "TntGuyChef", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "SPICY MIKE", "shopTID": "SPICY MIKE", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "dynamike_chef_blue_tex.pvr", "redTexture": "dynamike_chef_tex.pvr", "blueSpecular": "dynamike_chef_blue_tex.pvr", "redSpecular": "dynamike_chef_tex.pvr", "id": 86, "rawTID": "DYNAMIKE_CHEF_SKIN", "rawShopTID": "DYNAMIKE_CHEF_SKIN_SHOP"}, {"name": "RocketGirlBoombox", "conf": "RocketGirlBoombox", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "BOOM BOX BROCK", "shopTID": "BOOM BOX\\nBROCK", "features": "MODEL", "materialsFile": null, "blueTexture": "brock_boombox_blue_tex.pvr", "redTexture": "brock_boombox_tex.pvr", "blueSpecular": "brock_boombox_blue_tex.pvr", "redSpecular": "brock_boombox_tex.pvr", "id": 87, "rawTID": "BROCK_BOOMBOX_SKIN", "rawShopTID": "BROCK_BOOMBOX_SKIN_SHOP"}, {"name": "BarkeepWizard", "conf": "BarkeepWizard", "campaign": null, "obtainType": 2, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": "WIZARD BARLEY", "shopTID": "WIZARD BARLEY", "features": "MODEL,VFX,ANIM,SFX", "materialsFile": null, "blueTexture": "barley_wizard_tex.pvr", "redTexture": "barley_wizard_tex.pvr", "blueSpecular": "barley_wizard_tex.pvr", "redSpecular": "barley_wizard_tex.pvr", "id": 88, "rawTID": "BARLEY_WIZARD_SKIN", "rawShopTID": "BARLEY_WIZARD_SKIN"}, {"name": "ShamanReindeer", "conf": "ShamanReindeer", "campaign": 1, "obtainType": 3, "petSkin": "ShamanBearReindeer", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "RED NOSE NITA", "shopTID": "RED NOSE\\nNITA", "features": "MODEL,PET", "materialsFile": null, "blueTexture": "nita_reindeer_tex.pvr", "redTexture": "nita_reindeer_tex.pvr", "blueSpecular": "nita_reindeer_tex.pvr", "redSpecular": "nita_reindeer_tex.pvr", "id": 89, "rawTID": "NITA_REINDEER_SKIN", "rawShopTID": "NITA_REINDEER_SKIN_SHOP"}, {"name": "ArtilleryGalElf", "conf": "ArtilleryGalElf", "campaign": 1, "obtainType": 3, "petSkin": "ArtilleryTurretElf", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "LIL HELPER PENNY", "shopTID": "LIL HELPER\\nPENNY", "features": "MODEL,TURRET,VFX", "materialsFile": null, "blueTexture": "penny_elf_tex.pvr", "redTexture": "penny_elf_tex.pvr", "blueSpecular": "penny_elf_tex.pvr", "redSpecular": "penny_elf_tex.pvr", "id": 90, "rawTID": "PENNY_ELF_SKIN", "rawShopTID": "PENNY_ELF_SKIN_SHOP"}, {"name": "NinjaDefault", "conf": "NinjaDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "leon_tex.pvr", "redTexture": "leon_tex.pvr", "blueSpecular": "leon_tex.pvr", "redSpecular": "leon_tex.pvr", "id": 91}, {"name": "UndertakerHat", "conf": "UndertakerHat", "campaign": null, "obtainType": 5, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": "TOP HAT MORTIS", "shopTID": "TOP HAT MORTIS", "features": "MODEL", "materialsFile": null, "blueTexture": "mortis_v2_tex.pvr", "redTexture": "mortis_v2_tex.pvr", "blueSpecular": "mortis_v2_tex.pvr", "redSpecular": "mortis_v2_tex.pvr", "id": 92, "rawTID": "UNDERTAKER_HAT_SKIN", "rawShopTID": "UNDERTAKER_HAT_SKIN"}, {"name": "BullGuyFootbull", "conf": "BullGuyFootbull", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "TOUCHDOWN BULL", "shopTID": "TOUCHDOWN\\nBULL", "features": "MODEL", "materialsFile": null, "blueTexture": "bull_footbull_tex.png", "redTexture": "bull_footbull_tex.png", "blueSpecular": "bull_footbull_tex.png", "redSpecular": "bull_footbull_tex.png", "id": 93, "rawTID": "SKIN_FOOTBULL", "rawShopTID": "SKIN_FOOTBULL_SHOP"}, {"name": "ShamanBearReindeer", "conf": "ShamanBearReindeer", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "nita_bear_reindeer_tex.pvr", "redTexture": "nita_bear_reindeer_tex.pvr", "blueSpecular": "nita_bear_reindeer_tex.pvr", "redSpecular": "nita_bear_reindeer_tex.pvr", "id": 94}, {"name": "ArtilleryTurretElf", "conf": "ArtilleryTurretElf", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "penny_elf_tex.pvr", "redTexture": "penny_elf_tex.pvr", "blueSpecular": "penny_elf_tex.pvr", "redSpecular": "penny_elf_tex.pvr", "id": 95}, {"name": "HookDefault", "conf": "HookDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "gene_tex.pvr", "redTexture": "gene_tex.pvr", "blueSpecular": "gene_tex.pvr", "redSpecular": "gene_tex.pvr", "id": 96}, {"name": "TrickshotPopcorn", "conf": "TrickshotPopcorn", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "POPCORN RICO", "shopTID": "POPCORN\\nRICO", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "rico_popcorn_tex.pvr", "redTexture": "rico_popcorn_tex.pvr", "blueSpecular": "rico_popcorn_tex.pvr", "redSpecular": "rico_popcorn_tex.pvr", "id": 97, "rawTID": "SKIN_POPCORN_RICO", "rawShopTID": "SKIN_POPCORN_RICO_SHOP"}, {"name": "GunSlingerHanbok", "conf": "GunSlingerHanbok", "campaign": 2, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "ROYAL AGENT COLT", "shopTID": "ROYAL AGENT\\nCOLT", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "colt_hanbok_tex.pvr", "redTexture": "colt_hanbok_tex.pvr", "blueSpecular": "colt_hanbok_tex.pvr", "redSpecular": "colt_hanbok_tex.pvr", "id": 98, "rawTID": "SKIN_LUNAR_COLT", "rawShopTID": "SKIN_LUNAR_COLT_SHOP"}, {"name": "BarrelbotCny", "conf": "BarrelbotCny", "campaign": 2, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "DUMPLING DARRYL", "shopTID": "DUMPLING\\nDARRYL", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "darryl_cny_tex.pvr", "redTexture": "darryl_cny_tex.pvr", "blueSpecular": "darryl_cny_tex.pvr", "redSpecular": "darryl_cny_tex.pvr", "id": 99, "rawTID": "SKIN_DUMPLING_DARRYL", "rawShopTID": "SKIN_DUMPLING_DARRYL_SHOP"}, {"name": "PocoValentine", "conf": "PocoValentine", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "SERENADE POCO", "shopTID": "SERENADE\\nPOCO", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "poco_valentine_tex.pvr", "redTexture": "poco_valentine_tex.pvr", "blueSpecular": "poco_valentine_tex.pvr", "redSpecular": "poco_valentine_tex.pvr", "id": 100, "rawTID": "SKIN_VALENTINE_POCO", "rawShopTID": "SKIN_VALENTINE_POCO_SHOP"}, {"name": "RocketGirlCny", "conf": "RocketGirlCny", "campaign": 2, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "LION DANCE BROCK", "shopTID": "LION DANCE\\nBROCK", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "brock_cny_tex.pvr", "redTexture": "brock_cny_tex.pvr", "blueSpecular": "brock_cny_tex.pvr", "redSpecular": "brock_cny_tex.pvr", "id": 101, "rawTID": "SKIN_LUNAR_BROCK", "rawShopTID": "SKIN_LUNAR_BROCK_SHOP"}, {"name": "WhirlwindDefault", "conf": "WhirlwindDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "carl_tex.pvr", "redTexture": "carl_tex.pvr", "blueSpecular": "carl_tex.pvr", "redSpecular": "carl_tex.pvr", "id": 102}, {"name": "RoboWarsBox", "conf": "RoboWarsBox", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 103}, {"name": "UndertakerNightwitch", "conf": "UndertakerNightwitch", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "NIGHT WITCH MORTIS", "shopTID": "NIGHT WITCH\\nMORTIS", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "mortis_nightwitch_tex.pvr", "redTexture": "mortis_nightwitch_tex.pvr", "blueSpecular": "mortis_nightwitch_tex.pvr", "redSpecular": "mortis_nightwitch_tex.pvr", "id": 104, "rawTID": "UNDERTAKER_NIGHTWITCH_SKIN", "rawShopTID": "UNDERTAKER_NIGHTWITCH_SKIN_SHOP"}, {"name": "RoboWarsBaseDefault", "conf": "RoboWarsBaseDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "siege_base.pvr", "redTexture": "siege_base_red.pvr", "blueSpecular": null, "redSpecular": null, "id": 105}, {"name": "RosaDefault", "conf": "RosaDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 106}, {"name": "MineCart", "conf": "MineCart", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 107}, {"name": "ShamanShiba", "conf": "ShamanShiba", "campaign": null, "obtainType": null, "petSkin": "ShamanBearShiba", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "SHIBA NITA", "shopTID": "SHIBA NITA", "features": "MODEL,PET,VFX,ANIM,SFX", "materialsFile": null, "blueTexture": "nita_shiba_tex.pvr", "redTexture": "nita_shiba_tex.pvr", "blueSpecular": "nita_shiba_tex.pvr", "redSpecular": "nita_shiba_tex.pvr", "id": 108, "rawTID": "SHAMAN_SHIBA_SKIN", "rawShopTID": "SHAMAN_SHIBA_SKIN_SHOP"}, {"name": "ShamanBearShiba", "conf": "ShamanBearShiba", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "nita_bear_shiba_tex.pvr", "redTexture": "nita_bear_shiba_tex.pvr", "blueSpecular": "nita_bear_shiba_tex.pvr", "redSpecular": "nita_bear_shiba_tex.pvr", "id": 109}, {"name": "BaseballDefault", "conf": "BaseballDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bibi_tex.pvr", "redTexture": "bibi_tex.pvr", "blueSpecular": "bibi_tex.pvr", "redSpecular": "bibi_tex.pvr", "id": 110}, {"name": "MineCartB", "conf": "MineCartB", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 111}, {"name": "MineCartC", "conf": "MineCartC", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 112}, {"name": "MineCartD", "conf": "MineCartD", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 113}, {"name": "MineCartE", "conf": "MineCartE", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 114}, {"name": "ClusterBombDefault", "conf": "ClusterBombDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "tick_tex.pvr", "redTexture": "tick_tex.pvr", "blueSpecular": "tick_tex.pvr", "redSpecular": "tick_tex.pvr", "id": 115}, {"name": "ClusterBombPetDefault", "conf": "ClusterBombPetDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "tick_tex.pvr", "redTexture": "tick_tex.pvr", "blueSpecular": "tick_tex.pvr", "redSpecular": "tick_tex.pvr", "id": 116}, {"name": "ArtilleryGalBunny", "conf": "ArtilleryGalBunny", "campaign": null, "obtainType": null, "petSkin": "ArtilleryTurretBunny", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "BUNNY PENNY", "shopTID": "BUNNY PENNY", "features": "MODEL,TURRET,VFX", "materialsFile": null, "blueTexture": "penny_bunny_tex.pvr", "redTexture": "penny_bunny_tex.pvr", "blueSpecular": "penny_bunny_tex.pvr", "redSpecular": "penny_bunny_tex.pvr", "id": 117, "rawTID": "PENNY_BUNNY_SKIN", "rawShopTID": "PENNY_BUNNY_SKIN_SHOP"}, {"name": "ArtilleryTurretBunny", "conf": "ArtilleryTurretBunny", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "penny_bunny_tex.pvr", "redTexture": "penny_bunny_tex.pvr", "blueSpecular": "penny_bunny_tex.pvr", "redSpecular": "penny_bunny_tex.pvr", "id": 118}, {"name": "BarkeepMs", "conf": "BarkeepMs", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "BAKESALE BARLEY", "shopTID": "BAKESALE\\nBARLEY", "features": "MODEL,VFX,ANIM", "materialsFile": null, "blueTexture": "barley_ms_tex.pvr", "redTexture": "barley_ms_tex.pvr", "blueSpecular": "barley_ms_tex.pvr", "redSpecular": "barley_ms_tex.pvr", "id": 119, "rawTID": "BARLEY_MS_SKIN", "rawShopTID": "BARLEY_MS_SKIN_SHOP"}, {"name": "RocketGirlHotrod", "conf": "RocketGirlHotrod", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "HOT ROD BROCK", "shopTID": "HOT ROD\\nBROCK", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "brock_hotrod_tex.pvr", "redTexture": "brock_hotrod_tex.pvr", "blueSpecular": "brock_hotrod_tex.pvr", "redSpecular": "brock_hotrod_tex.pvr", "id": 120, "rawTID": "BROCK_HOTROD_SKIN", "rawShopTID": "BROCK_HOTROD_SKIN_SHOP"}, {"name": "BarkeepMaple", "conf": "BarkeepLumberjack", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "MAPLE BARLEY", "shopTID": "MAPLE\\nBARLEY", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "barley_lumberjack_tex.pvr", "redTexture": "barley_lumberjack_tex.pvr", "blueSpecular": "barley_lumberjack_tex.pvr", "redSpecular": "barley_lumberjack_tex.pvr", "id": 121, "rawTID": "BARLEY_MAPLE_SKIN", "rawShopTID": "BARLEY_MAPLE_SKIN_SHOP"}, {"name": "WhirlwindRR", "conf": "WhirlwindHotrod", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "ROAD RAGE CARL", "shopTID": "ROAD RAGE\\nCARL", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "carl_hotrod_tex.pvr", "redTexture": "carl_hotrod_tex.pvr", "blueSpecular": "carl_hotrod_tex.pvr", "redSpecular": "carl_hotrod_tex.pvr", "id": 122, "rawTID": "CARL_RR_SKIN", "rawShopTID": "CARL_RR_SKIN_SHOP"}, {"name": "BoMecha", "conf": "BoMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 300, "tID": "MECHA BO", "shopTID": "MECHA\\nBO", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "bo_mecha_tex.png+hue(masks/bo/bo_mecha_ammo_msk.png,205.115997)", "redTexture": "bo_mecha_tex.png", "blueSpecular": "bo_mecha_tex.png+hue(masks/bo/bo_mecha_ammo_msk.png,205.115997)", "redSpecular": "bo_mecha_tex.png", "id": 123, "rawTID": "BO_MECHA_SKIN", "rawShopTID": "BO_MECHA_SKIN_SHOP"}, {"name": "CrowMecha", "conf": "CrowMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 300, "tID": "MECHA CROW", "shopTID": "MECHA\\nCROW", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "crow_mecha_tex.png", "redTexture": "crow_mecha_tex.png", "blueSpecular": "crow_mecha_tex.png", "redSpecular": "crow_mecha_tex.png", "id": 124, "rawTID": "CROW_MECHA_SKIN", "rawShopTID": "CROW_MECHA_SKIN_SHOP"}, {"name": "Cactusmecha", "conf": "Cactusmecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "ROBO SPIKE", "shopTID": "ROBO\\nSPIKE", "features": "MODEL,VFX,ANIM,SFX", "materialsFile": null, "blueTexture": "spike_mecha_tex.pvr", "redTexture": "spike_mecha_tex.pvr", "blueSpecular": "spike_mecha_tex.pvr", "redSpecular": "spike_mecha_tex.pvr", "id": 125, "rawTID": "SPIKE_ROBO_SKIN", "rawShopTID": "SPIKE_ROBO_SKIN_SHOP"}, {"name": "TntDudeMecha", "conf": "TntDudeMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 300, "tID": "ROBO MIKE", "shopTID": "ROBO\\nMIKE", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "dynamike_mecha_tex.pvr+hue(masks/dynamike/dynamike_mecha_ammo_msk.png,198.000000)+value(masks/dynamike/dynamike_mecha_ammo_msk.png,1.279000)", "redTexture": "dynamike_mecha_tex.pvr", "blueSpecular": "dynamike_mecha_tex.pvr+hue(masks/dynamike/dynamike_mecha_ammo_msk.png,198.000000)", "redSpecular": "dynamike_mecha_tex.pvr", "id": 126, "rawTID": "MIKE_ROBO_SKIN", "rawShopTID": "MIKE_ROBO_SKIN_SHOP"}, {"name": "BowDudeMechaWhite", "conf": "BoMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 10000, "costGems": null, "tID": "LIGHT MECHA BO", "shopTID": "LIGHT MECHA\\nBO", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "bo_mecha_tex.png+saturation(masks/bo/bo_mecha_colour02_msk.png,0.000000)+saturation(masks/bo/bo_mecha_colour01_msk.png,2.674000)+value(masks/bo/bo_mecha_colour01_msk.png,2.442000)+hue(masks/bo/bo_mecha_colour01_msk.png,12.558000)+saturation(masks/bo/bo_mecha_seams_msk.png,0.000000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,20.930000)+value(masks/bo/bo_mecha_colour02_msk.png,0.800000)+hue(masks/bo/bo_mecha_ammo_msk.png,205.115997)", "redTexture": "bo_mecha_tex.png+saturation(masks/bo/bo_mecha_colour02_msk.png,0.000000)+saturation(masks/bo/bo_mecha_colour01_msk.png,2.674000)+value(masks/bo/bo_mecha_colour01_msk.png,2.442000)+hue(masks/bo/bo_mecha_colour01_msk.png,12.558000)+saturation(masks/bo/bo_mecha_seams_msk.png,0.000000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,20.930000)+value(masks/bo/bo_mecha_colour02_msk.png,0.800000)", "blueSpecular": "bo_mecha_tex.png+saturation(masks/bo/bo_mecha_colour02_msk.png,0.000000)+saturation(masks/bo/bo_mecha_colour01_msk.png,5.349000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,20.930000)+hue(masks/bo/bo_mecha_ammo_msk.png,205.115997)", "redSpecular": "bo_mecha_tex.png+saturation(masks/bo/bo_mecha_colour02_msk.png,0.000000)+saturation(masks/bo/bo_mecha_colour01_msk.png,5.349000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,20.930000)+hue(masks/bo/bo_mecha_colour02_msk.png,0.000000)", "id": 127, "rawTID": "BO_MECHA_LIGHT_SKIN", "rawShopTID": "BO_MECHA_LIGHT_SKIN_SHOP"}, {"name": "BowDudeMechaGold", "conf": "BoMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 50000, "costGems": null, "tID": "GOLD MECHA BO", "shopTID": "GOLD MECHA\\nBO", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "bo_mecha_tex.png+value(masks/bo/bo_mecha_colour01_msk.png,1.047000)+saturation(masks/bo/bo_mecha_colour01_msk.png,8.721000)+hue(masks/bo/bo_mecha_colour01_msk.png,12.558000)+hue(masks/bo/bo_mecha_colour02_msk.png,16.000000)+value(masks/bo/bo_mecha_colour02_msk.png,3.605000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,213.488007)+hue(masks/bo/bo_mecha_ammo_msk.png,205.115997)", "redTexture": "bo_mecha_tex.png+value(masks/bo/bo_mecha_colour01_msk.png,1.047000)+saturation(masks/bo/bo_mecha_colour01_msk.png,8.721000)+hue(masks/bo/bo_mecha_colour01_msk.png,12.558000)+hue(masks/bo/bo_mecha_colour02_msk.png,16.000000)+value(masks/bo/bo_mecha_colour02_msk.png,3.605000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,213.488007)", "blueSpecular": "bo_mecha_tex.png+hue(masks/bo/bo_mecha_colour01_msk.png,12.558000)+hue(masks/bo/bo_mecha_colour01_msk.png,1.047000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,221.860001)+hue(masks/bo/bo_mecha_colour02_msk.png,8.372000)+hue(masks/bo/bo_mecha_ammo_msk.png,205.115997)", "redSpecular": "bo_mecha_tex.png+hue(masks/bo/bo_mecha_colour01_msk.png,12.558000)+hue(masks/bo/bo_mecha_colour01_msk.png,1.047000)+hue(masks/bo/bo_mecha_eyesvisor_msk.png,221.860001)+hue(masks/bo/bo_mecha_colour02_msk.png,8.372000)", "id": 128, "rawTID": "BO_MECHA_GOLD_SKIN", "rawShopTID": "BO_MECHA_GOLD_SKIN_SHOP"}, {"name": "CrowMechaGold", "conf": "CrowMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 50000, "costGems": null, "tID": "GOLD MECHA CROW", "shopTID": "GOLD MECHA\\nCROW", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "crow_mechagold_tex.png", "redTexture": "crow_mechagold_tex.png", "blueSpecular": "crow_mechagold_tex.png", "redSpecular": "crow_mechagold_tex.png", "id": 129, "rawTID": "CROW_MECHA_GOLD_SKIN", "rawShopTID": "CROW_MECHA_GOLD_SKIN_SHOP"}, {"name": "CrowMechaNight", "conf": "CrowMecha", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 10000, "costGems": null, "tID": "NIGHT MECHA CROW", "shopTID": "NIGHT MECHA\\nCROW", "features": "MODEL,VFX,ANIM,SFX,VOICE", "materialsFile": null, "blueTexture": "crow_mecha_tex.png+saturation(masks/crow/crow_mecha_colour01_msk.png,0.000000)+value(masks/crow/crow_mecha_colour01_msk.png,0.200000)+value(masks/crow/crow_mecha_colour02_msk.png,0.500000)+saturation(masks/crow/crow_mecha_colour02_msk.png,2.093000)+hue(masks/crow/crow_mecha_colour03_msk.png,209.302002)+value(masks/crow/crow_mecha_colour03_msk.png,1.400000)", "redTexture": "crow_mecha_tex.png+saturation(masks/crow/crow_mecha_colour01_msk.png,0.000000)+value(masks/crow/crow_mecha_colour01_msk.png,0.200000)+value(masks/crow/crow_mecha_colour02_msk.png,0.500000)+saturation(masks/crow/crow_mecha_colour02_msk.png,2.093000)+hue(masks/crow/crow_mecha_colour03_msk.png,209.302002)+value(masks/crow/crow_mecha_colour03_msk.png,1.400000)", "blueSpecular": "crow_mecha_tex.png+saturation(masks/crow/crow_mecha_colour01_msk.png,1.047000)+value(masks/crow/crow_mecha_colour01_msk.png,0.233000)+value(masks/crow/crow_mecha_colour02_msk.png,0.814000)+hue(masks/crow/crow_mecha_colour03_msk.png,209.302002)", "redSpecular": "crow_mecha_tex.png+saturation(masks/crow/crow_mecha_colour01_msk.png,1.047000)+value(masks/crow/crow_mecha_colour01_msk.png,0.233000)+value(masks/crow/crow_mecha_colour02_msk.png,0.814000)+hue(masks/crow/crow_mecha_colour03_msk.png,209.302002)", "id": 130, "rawTID": "CROW_MECHA_NIGHT_SKIN", "rawShopTID": "CROW_MECHA_NIGHT_SKIN_SHOP"}, {"name": "BullDudeFootbullBlue", "conf": "BullGuyFootbull", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 2500, "costGems": null, "tID": "LINEBACKER BULL", "shopTID": "LINEBACKER\\nBULL", "features": "MODEL", "materialsFile": null, "blueTexture": "bull_footbull_tex.png+hue(masks/bull/bull_footbull_colour01_msk.png,217.673996)+value(masks/bull/bull_footbull_colour01_msk.png,1.744000)+saturation(masks/bull/bull_footbull_colour01_msk.png,2.558000)+value(masks/bull/bull_footbull_helmet_msk.png,0.465000)+value(masks/bull/bull_footbull_metal_msk.png,0.233000)", "redTexture": "bull_footbull_tex.png+hue(masks/bull/bull_footbull_colour01_msk.png,217.673996)+value(masks/bull/bull_footbull_colour01_msk.png,1.744000)+saturation(masks/bull/bull_footbull_colour01_msk.png,2.558000)+value(masks/bull/bull_footbull_helmet_msk.png,0.465000)+value(masks/bull/bull_footbull_metal_msk.png,0.233000)", "blueSpecular": "bull_footbull_tex.png+hue(masks/bull/bull_footbull_colour01_msk.png,217.673996)", "redSpecular": "bull_footbull_tex.png+hue(masks/bull/bull_footbull_colour01_msk.png,217.673996)", "id": 131, "rawTID": "BULL_LINEBACKER_SKIN", "rawShopTID": "BULL_LINEBACKER_SKIN_SHOP"}, {"name": "GunslingerOutlaw", "conf": "GunSlingerRockstar", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 500, "costGems": null, "tID": "OUTLAW COLT", "shopTID": "OUTLAW\\nCOLT", "features": "MODEL", "materialsFile": null, "blueTexture": "colt_outlaw_tex.pvr", "redTexture": "colt_outlaw_tex.pvr", "blueSpecular": "colt_outlaw_tex.pvr", "redSpecular": "colt_outlaw_tex.pvr", "id": 132, "rawTID": "COLT_OUTLAW_SKIN", "rawShopTID": "COLT_OUTLAW_SKIN_SHOP"}, {"name": "WhirlwindHogrider", "conf": "WhirlwindHogrider", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "HOG RIDER CARL", "shopTID": "HOG RIDER\\nCARL", "features": "MODEL", "materialsFile": null, "blueTexture": "carl_hogrider_tex.pvr", "redTexture": "carl_hogrider_tex.pvr", "blueSpecular": "carl_hogrider_tex.pvr", "redSpecular": "carl_hogrider_tex.pvr", "id": 133, "rawTID": "CARL_HOG_RIDER_SKIN", "rawShopTID": "CARL_HOG_RIDER_SKIN_SHOP"}, {"name": "BallBeach", "conf": "BallBeach", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 134}, {"name": "ArcadeDefault", "conf": "ArcadeDefault", "campaign": null, "obtainType": null, "petSkin": "DamageBoosterDefault", "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "8bit_tex.pvr", "redTexture": "8bit_tex.pvr+hue(masks/8bit/8bit_msk.png,138.000000)+saturation(masks/8bit/8bit_msk.png,3.000000)+hue(masks/8bit/8bit_light_msk.png,146.000000)", "blueSpecular": "8bit_tex.pvr", "redSpecular": "8bit_tex.pvr+hue(masks/8bit/8bit_msk.png,138.000000)+saturation(masks/8bit/8bit_msk.png,3.000000)+hue(masks/8bit/8bit_light_msk.png,146.000000)", "id": 135}, {"name": "DamageBoosterDefault", "conf": "DamageBoosterDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "8bit_tex.pvr", "redTexture": "8bit_tex.pvr+hue(masks/8bit/8bit_msk.png,138.000000)+saturation(masks/8bit/8bit_msk.png,3.000000)+hue(masks/8bit/8bit_light_msk.png,146.000000)", "blueSpecular": "8bit_tex.pvr", "redSpecular": "8bit_tex.pvr+hue(masks/8bit/8bit_msk.png,138.000000)+saturation(masks/8bit/8bit_msk.png,3.000000)+hue(masks/8bit/8bit_light_msk.png,146.000000)", "id": 136}, {"name": "SniperPink", "conf": "SniperPink", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 500, "costGems": null, "tID": "PINK PIPER", "shopTID": "PINK\\nPIPER", "features": "MODEL", "materialsFile": null, "blueTexture": "piper_pink_tex.pvr", "redTexture": "piper_pink_tex.pvr", "blueSpecular": "piper_pink_tex.pvr", "redSpecular": "piper_pink_tex.pvr", "id": 137, "rawTID": "PIPER_PINK_SKIN", "rawShopTID": "PIPER_PINK_SKIN_SHOP"}, {"name": "ArcadeClassic", "conf": "ArcadeClassic", "campaign": null, "obtainType": null, "petSkin": "DamageBoosterDefault", "petSkin2": null, "costLegendaryTrophies": null, "costGems": 30, "tID": "8-BIT CLASSIC", "shopTID": "8-BIT\\nCLASSIC", "features": "MODEL", "materialsFile": null, "blueTexture": "8bit_classic_tex.pvr", "redTexture": "8bit_classic_tex.pvr+hue(masks/8bit/8bit_msk.png,138.000000)+saturation(masks/8bit/8bit_msk.png,3.000000)+hue(masks/8bit/8bit_light_msk.png,146.000000)", "blueSpecular": "8bit_classic_tex.pvr", "redSpecular": "8bit_classic_tex.pvr+hue(masks/8bit/8bit_msk.png,138.000000)+saturation(masks/8bit/8bit_msk.png,3.000000)+hue(masks/8bit/8bit_light_msk.png,146.000000)", "id": 138, "rawTID": "8BIT_CLASSIC_SKIN", "rawShopTID": "8BIT_CLASSIC_SKIN_SHOP"}, {"name": "NinjaShark", "conf": "NinjaShark", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "SHARK LEON", "shopTID": "SHARK\\nLEON", "features": "MODEL", "materialsFile": null, "blueTexture": "shark_leon_tex.pvr", "redTexture": "shark_leon_tex.pvr", "blueSpecular": "shark_leon_tex.pvr", "redSpecular": "shark_leon_tex.pvr", "id": 139, "rawTID": "LEON_SHARK_SKIN", "rawShopTID": "LEON_SHARK_SKIN_SHOP"}, {"name": "BlackHoleBlue", "conf": "BlackHoleBlue", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 500, "costGems": null, "tID": "IRIS TARA", "shopTID": "IRIS\\nTARA", "features": "MODEL", "materialsFile": null, "blueTexture": "tara_blue_tex.pvr", "redTexture": "tara_blue_tex.pvr", "blueSpecular": "tara_blue_tex.pvr", "redSpecular": "tara_blue_tex.pvr", "id": 140, "rawTID": "TARA_BLUE_SKIN", "rawShopTID": "TARA_BLUE_SKIN_SHOP"}, {"name": "LootBoxMoonFestival", "conf": "LootBoxMoonFestival", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": null, "redTexture": null, "blueSpecular": null, "redSpecular": null, "id": 141}, {"name": "SandstormDefault", "conf": "SandstormDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "sandy_tex.pvr", "redTexture": "sandy_tex.pvr", "blueSpecular": "sandy_tex.pvr", "redSpecular": "sandy_tex.pvr", "id": 142}, {"name": "BeeSniperDefault", "conf": "BeeSniperDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bea_tex.pvr", "redTexture": "bea_tex.pvr", "blueSpecular": "bea_tex.pvr", "redSpecular": "bea_tex.pvr", "id": 143}, {"name": "BossRaceBossDefault", "conf": "BossRaceBossDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bossbot_tex.pvr", "redTexture": "bossbot_tex.pvr", "blueSpecular": "bossbot_tex.pvr", "redSpecular": "bossbot_tex.pvr", "id": 144}, {"name": "BarkeepWizardRed", "conf": "BarkeepWizardRed", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": 2500, "costGems": null, "tID": "RED WIZARD BARLEY", "shopTID": "RED WIZARD\\nBARLEY", "features": "MODEL", "materialsFile": null, "blueTexture": "barley_wizard_tex.pvr+hue(masks/barley/coat_msk.png,133.953003)+value(masks/barley/coat_msk.png,0.698000)", "redTexture": "barley_wizard_tex.pvr+hue(masks/barley/coat_msk.png,133.953003)+value(masks/barley/coat_msk.png,0.698000)", "blueSpecular": "barley_wizard_tex.pvr+hue(masks/barley/coat_msk.png,133.953003)+value(masks/barley/coat_msk.png,0.698000)", "redSpecular": "barley_wizard_tex.pvr+hue(masks/barley/coat_msk.png,133.953003)+value(masks/barley/coat_msk.png,0.698000)", "id": 145, "rawTID": "BARLEY_RED_WIZARD_SKIN", "rawShopTID": "BARLEY_RED_WIZARD_SKIN_SHOP"}, {"name": "HookPirate", "conf": "HookPirate", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "PIRATE GENE", "shopTID": "PIRATE\\nGENE", "features": "MODEL", "materialsFile": null, "blueTexture": "gene_pirate_tex.pvr", "redTexture": "gene_pirate_tex.pvr", "blueSpecular": "gene_pirate_tex.pvr", "redSpecular": "gene_pirate_tex.pvr", "id": 146, "rawTID": "GENE_PIRATE_SKIN", "rawShopTID": "GENE_PIRATE_SKIN_SHOP"}, {"name": "Sandstormsleepy", "conf": "Sandstormsleepy", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 30, "tID": "SLEEPY SANDY", "shopTID": "SLEEPY\\nSANDY", "features": "MODEL", "materialsFile": null, "blueTexture": "sleepy_sandy_tex.pvr", "redTexture": "sleepy_sandy_tex.pvr", "blueSpecular": "sleepy_sandy_tex.pvr", "redSpecular": "sleepy_sandy_tex.pvr", "id": 147, "rawTID": "SANDY_SLEEPY_SKIN", "rawShopTID": "SANDY_SLEEPY_SKIN_SHOP"}, {"name": "MummyDefault", "conf": "MummyDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "emz_tex.pvr", "redTexture": "emz_tex.pvr", "blueSpecular": "emz_tex.pvr", "redSpecular": "emz_tex.pvr", "id": 148}, {"name": "Sniperrose", "conf": "Sniperrose", "campaign": 3, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "CALAVERA PIPER", "shopTID": "CALAVERA\\nPIPER", "features": "MODEL", "materialsFile": null, "blueTexture": "piper_rose_tex.pvr", "redTexture": "piper_rose_tex.pvr", "blueSpecular": "piper_rose_tex.pvr", "redSpecular": "piper_rose_tex.pvr", "id": 149, "rawTID": "PIPER_CALAVERA_SKIN", "rawShopTID": "PIPER_CALAVERA_SKIN_SHOP"}, {"name": "SpawnerDudeDefault", "conf": "SpawnerDudeDefault", "campaign": null, "obtainType": null, "petSkin": "ArtilleryTurretDefault", "petSkin2": "ShamanBearDefault", "costLegendaryTrophies": null, "costGems": 150, "tID": "HOT ROD BROCK", "shopTID": "HOT ROD\\nBROCK", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "brock_hotrod_tex.pvr", "redTexture": "brock_hotrod_tex.pvr", "blueSpecular": "brock_hotrod_tex.pvr", "redSpecular": "brock_hotrod_tex.pvr", "id": 150, "rawTID": "BROCK_HOTROD_SKIN", "rawShopTID": "BROCK_HOTROD_SKIN_SHOP"}, {"name": "ShotgunGirlWitch", "conf": "ShotgunGirlWitch", "campaign": 3, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "WITCH SHELLY", "shopTID": "WITCH\\nSHELLY", "features": "MODEL,VFX,ANIM,SFX", "materialsFile": null, "blueTexture": "shelly_witch_tex.pvr", "redTexture": "shelly_witch_tex.pvr", "blueSpecular": "shelly_witch_tex.pvr", "redSpecular": "shelly_witch_tex.pvr", "id": 151, "rawTID": "SHELLY_WITCH_SKIN", "rawShopTID": "SHELLY_WITCH_SKIN_SHOP"}, {"name": "MechanicKnightDark", "conf": "MechanicKnightDark", "campaign": null, "obtainType": null, "petSkin": "TurretDragonDark", "petSkin2": null, "costLegendaryTrophies": 10000, "costGems": null, "tID": "SHADOW KNIGHT JESSIE", "shopTID": "SHADOW KNIGHT\\nJESSIE", "features": "MODEL,TURRET,VFX,ANIM", "materialsFile": null, "blueTexture": "jessie_knight_tex.pvr+hue(masks/jessie/jessie_knight_plume_msk.png,117.209000)+value(masks/jessie/jessie_knight_plume_msk.png,0.600000)+saturation(masks/jessie/jessie_knight_gold_msk.png,0.200000)+value(masks/jessie/jessie_knight_gold_msk.png,0.581000)+value(masks/jessie/jessie_knight_metal_msk.png,0.000000)+hue(masks/jessie/jessie_knight_fabric_msk.png,125.581001)+value(masks/jessie/jessie_knight_fabric_msk.png,0.600000)", "redTexture": "jessie_knight_tex.pvr+hue(masks/jessie/jessie_knight_plume_msk.png,117.209000)+value(masks/jessie/jessie_knight_plume_msk.png,0.600000)+saturation(masks/jessie/jessie_knight_gold_msk.png,0.200000)+value(masks/jessie/jessie_knight_gold_msk.png,0.581000)+value(masks/jessie/jessie_knight_metal_msk.png,0.000000)+hue(masks/jessie/jessie_knight_fabric_msk.png,125.581001)+value(masks/jessie/jessie_knight_fabric_msk.png,0.600000)", "blueSpecular": "jessie_knight_tex.pvr+hue(masks/jessie/jessie_knight_plume_msk.png,140.000000)+hue(masks/jessie/jessie_knight_plume_msk.png,0.400000)+saturation(masks/jessie/jessie_knight_gold_msk.png,0.200000)+value(masks/jessie/jessie_knight_gold_msk.png,0.200000)+value(masks/jessie/jessie_knight_metal_msk.png,0.698000)+value(masks/jessie/jessie_knight_fabric_msk.png,0.930000)+hue(masks/jessie/jessie_knight_fabric_msk.png,117.209000)", "redSpecular": "jessie_knight_tex.pvr+hue(masks/jessie/jessie_knight_plume_msk.png,140.000000)+hue(masks/jessie/jessie_knight_plume_msk.png,0.400000)+saturation(masks/jessie/jessie_knight_gold_msk.png,0.200000)+value(masks/jessie/jessie_knight_gold_msk.png,0.200000)+value(masks/jessie/jessie_knight_metal_msk.png,0.698000)+value(masks/jessie/jessie_knight_fabric_msk.png,0.930000)+hue(masks/jessie/jessie_knight_fabric_msk.png,117.209000)", "id": 152, "rawTID": "JESSIE_DARK_KNIGHT_SKIN", "rawShopTID": "JESSIE_DARK_KNIGHT_SKIN_SHOP"}, {"name": "TurretDragonDark", "conf": "TurretDragonDark", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "turret_dragon_tex.pvr+hue(masks/jessie/jessie_turrret_dragon_main_msk.png,322.325989)+saturation(masks/jessie/jessie_turrret_dragon_main_msk.png,0.349000)+value(masks/jessie/jessie_turrret_dragon_main_msk.png,0.200000)+hue(masks/jessie/jessie_turrret_dragon_belly_msk.png,330.697998)+saturation(masks/jessie/jessie_turrret_dragon_belly_msk.png,1.395000)+value(masks/jessie/jessie_turrret_dragon_belly_msk.png,0.930000)", "redTexture": "turret_dragon_tex.pvr+hue(masks/jessie/jessie_turrret_dragon_main_msk.png,322.325989)+saturation(masks/jessie/jessie_turrret_dragon_main_msk.png,0.349000)+value(masks/jessie/jessie_turrret_dragon_main_msk.png,0.200000)+hue(masks/jessie/jessie_turrret_dragon_belly_msk.png,330.697998)+saturation(masks/jessie/jessie_turrret_dragon_belly_msk.png,1.395000)+value(masks/jessie/jessie_turrret_dragon_belly_msk.png,0.930000)", "blueSpecular": "turret_dragon_tex.pvr+hue(masks/jessie/jessie_turrret_dragon_main_msk.png,351.627991)+saturation(masks/jessie/jessie_turrret_dragon_main_msk.png,1.047000)+value(masks/jessie/jessie_turrret_dragon_main_msk.png,0.814000)", "redSpecular": "turret_dragon_tex.pvr+hue(masks/jessie/jessie_turrret_dragon_main_msk.png,351.627991)+saturation(masks/jessie/jessie_turrret_dragon_main_msk.png,1.047000)+value(masks/jessie/jessie_turrret_dragon_main_msk.png,0.814000)", "id": 153}, {"name": "HammerDudeDJ", "conf": "HammerDudeDJ", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "DJ FRANK", "shopTID": "DJ\\nFRANK", "features": "MODEL", "materialsFile": null, "blueTexture": "frank_dj_tex.pvr", "redTexture": "frank_dj_tex.pvr", "blueSpecular": "frank_dj_tex.pvr+value(masks/frank/frank_dj_coat_msk.png,0.200000)", "redSpecular": "frank_dj_tex.pvr+value(masks/frank/frank_dj_coat_msk.png,0.200000)", "id": 154, "rawTID": "FRANK_DJ_SKIN", "rawShopTID": "FRANK_DJ_SKIN_SHOP"}, {"name": "NinjaWolf", "conf": "NinjaWolf", "campaign": 3, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "WEREWOLF LEON", "shopTID": "WEREWOLF\\nLEON", "features": "MODEL,VFX,ANIM,SFX", "materialsFile": null, "blueTexture": "leon_wolf_tex.pvr", "redTexture": "leon_wolf_tex.pvr", "blueSpecular": "leon_wolf_tex.pvr", "redSpecular": "leon_wolf_tex.pvr", "id": 155, "rawTID": "LEON_WEREWOLF_SKIN", "rawShopTID": "LEON_WEREWOLF_SKIN_SHOP"}, {"name": "SpeedyDefault", "conf": "SpeedyDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": "MODEL", "materialsFile": null, "blueTexture": "max_tex.pvr", "redTexture": "max_tex.pvr", "blueSpecular": "max_tex.pvr", "redSpecular": "max_tex.pvr", "id": 156}, {"name": "LuchadorBrown", "conf": "LuchadorBrown", "campaign": 4, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "EL BROWN", "shopTID": "EL BROWN", "features": "MODEL,VFX,ANIM", "materialsFile": null, "blueTexture": "primo_brown_tex.pvr", "redTexture": "primo_brown_tex.pvr", "blueSpecular": "primo_brown_tex.pvr", "redSpecular": "primo_brown_tex.pvr", "id": 157, "rawTID": "EL_PRIMO_BROWN_SKIN", "rawShopTID": "EL_PRIMO_BROWN_SKIN_SHOP"}, {"name": "HomerDefault", "conf": "HomerDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "spike_tex.pvr", "redTexture": "spike_tex.pvr", "blueSpecular": "spike_tex.pvr", "redSpecular": "spike_tex.pvr", "id": 158}, {"name": "TrickshotDudeTotal", "conf": "TrickshotDudeTotal", "campaign": null, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": "RICOCHET", "shopTID": "RICOCHET", "features": "MODEL", "materialsFile": null, "blueTexture": "rico_og_tex.pvr", "redTexture": "rico_og_tex.pvr", "blueSpecular": "rico_og_tex.pvr", "redSpecular": "rico_og_tex.pvr", "id": 159, "rawTID": "RICO_BETA_SKIN", "rawShopTID": "RICO_BETA_SKIN_SHOP"}, {"name": "NinjaSally", "conf": "NinjaSally", "campaign": 4, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "SALLY LEON", "shopTID": "SALLY\\nLEON", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "leon_sally_tex.pvr", "redTexture": "leon_sally_tex.pvr", "blueSpecular": "leon_sally_tex.pvr", "redSpecular": "leon_sally_tex.pvr", "id": 160, "rawTID": "LEON_SALLY_SKIN", "rawShopTID": "LEON_SALLY_SKIN_SHOP"}, {"name": "WhirlwindLeonard", "conf": "WhirlwindLeonard", "campaign": 4, "obtainType": 4, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "LEONARD CARL", "shopTID": "LEONARD\\nCARL", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "carl_leonard_tex.pvr", "redTexture": "carl_leonard_tex.pvr", "blueSpecular": "carl_leonard_tex.pvr", "redSpecular": "carl_leonard_tex.pvr", "id": 161, "rawTID": "CARL_LEONARD_SKIN", "rawShopTID": "CARL_LEONARD_SKIN_SHOP"}, {"name": "TntDudeSantaRope", "conf": "TntDudeSantaRope", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "dynamike_santa_blue_tex.pvr", "redTexture": "dynamike_santa_tex.pvr", "blueSpecular": "dynamike_santa_blue_tex.pvr", "redSpecular": "dynamike_santa_tex.pvr", "id": 162}, {"name": "WhirlwindPirate", "conf": "WhirlwindPirate", "campaign": 1, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "CAPTAIN CARL", "shopTID": "CAPTAIN\\nCARL", "features": "MODEL,VFX,ANIM", "materialsFile": null, "blueTexture": "carl_pirate_tex.pvr", "redTexture": "carl_pirate_tex.pvr", "blueSpecular": "carl_pirate_tex.pvr", "redSpecular": "carl_pirate_tex.pvr", "id": 163, "rawTID": "CARL_CAPTAIN_SKIN", "rawShopTID": "CARL_CAPTAIN_SKIN_SHOP"}, {"name": "GunslingerPirate", "conf": "GunslingerPirate", "campaign": 1, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 150, "tID": "CORSAIR COLT", "shopTID": "CORSAIR\\nCOLT", "features": "MODEL,VFX,ANIM", "materialsFile": null, "blueTexture": "colt_pirate_tex.pvr", "redTexture": "colt_pirate_tex.pvr", "blueSpecular": "colt_pirate_tex.pvr", "redSpecular": "colt_pirate_tex.pvr", "id": 164, "rawTID": "COLT_CORSAIR_SKIN", "rawShopTID": "COLT_CORSAIR_SKIN_SHOP"}, {"name": "CtfGift", "conf": "CtfGift", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "item_present_blue.pvr", "redTexture": "item_present_red.pvr", "blueSpecular": null, "redSpecular": null, "id": 165}, {"name": "SpeedyGT", "conf": "SpeedyGT", "campaign": null, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": "GT MAX", "shopTID": "GT\\nMAX", "features": "MODEL", "materialsFile": null, "blueTexture": "max_gt_tex.pvr", "redTexture": "max_gt_tex.pvr", "blueSpecular": "max_gt_tex.pvr", "redSpecular": "max_gt_tex.pvr", "id": 166, "rawTID": "MAX_BLUE_SKIN", "rawShopTID": "MAX_BLUE_SKIN_SHOP"}, {"name": "BeeDefault", "conf": "BeeDefault", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bea_tex.pvr", "redTexture": "bea_tex.pvr", "blueSpecular": "bea_tex.pvr", "redSpecular": "bea_tex.pvr", "id": 167}, {"name": "BeeSniperLadyBug", "conf": "BeeSniperLadyBug", "campaign": null, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": "LADYBUG BEA", "shopTID": "LADYBUG\\nBEA", "features": "MODEL", "materialsFile": null, "blueTexture": "bea_ladybug_tex.pvr", "redTexture": "bea_ladybug_tex.pvr", "blueSpecular": "bea_ladybug_tex.pvr", "redSpecular": "bea_ladybug_tex.pvr", "id": 168, "rawTID": "BEA_LADYBUG_SKIN", "rawShopTID": "BEA_LADYBUG_SKIN_SHOP"}, {"name": "PocoPirate", "conf": "PocoPirate", "campaign": 1, "obtainType": 3, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": 80, "tID": "PIRATE POCO", "shopTID": "PIRATE\\nPOCO", "features": "MODEL,VFX", "materialsFile": null, "blueTexture": "poco_pirate_tex.pvr", "redTexture": "poco_pirate_tex.pvr", "blueSpecular": "poco_pirate_tex.pvr", "redSpecular": "poco_pirate_tex.pvr", "id": 169, "rawTID": "POCO_PIRATE_SKIN", "rawShopTID": "POCO_PIRATE_SKIN_SHOP"}, {"name": "BeeLadyBug", "conf": "BeeLadyBug", "campaign": null, "obtainType": null, "petSkin": null, "petSkin2": null, "costLegendaryTrophies": null, "costGems": null, "tID": null, "shopTID": null, "features": null, "materialsFile": null, "blueTexture": "bea_ladybug_tex.pvr", "redTexture": "bea_ladybug_tex.pvr", "blueSpecular": "bea_ladybug_tex.pvr", "redSpecular": "bea_ladybug_tex.pvr", "id": 170}], "skinsrarity": [{"name": "Common", "price": 30, "rarity": 1}, {"name": "Rare", "price": 80, "rarity": 2}, {"name": "Epic", "price": 150, "rarity": 3}, {"name": "Legendary", "price": 300, "rarity": 4}], "skin_confs": [{"name": "BanditGirlDefault", "character": "ShotgunGirl", "model": "shelly_geo.scw", "cameraModel": "shelly_base_cam.scw", "idleAnim": "ShellyIdle", "walkAnim": "ShellyWalk", "primarySkillAnim": "ShellyPrimary", "secondarySkillAnim": "ShellySecondary", "primarySkillRecoilAnim": "ShellyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShellyRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShellyReload", "pushbackAnim": "ShellyPushback", "happyAnim": "ShellyWin", "happyLoopAnim": "ShellyWinloop", "sadAnim": "ShellyLose", "sadLoopAnim": "ShellyLoseloop", "heroScreenIdleAnim": "ShellyIdle", "heroScreenAnim": "ShellyWin", "heroScreenLoopAnim": "ShellyWinloop", "signatureAnim": "ShellyWin", "enterAnim": "ShellyIdle", "profileAnim": "ShellyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "GunSlingerDefault", "character": "Gunslinger", "model": "colt_geo.scw", "cameraModel": "colt_base_cam.scw", "idleAnim": "GunslingerIdle", "walkAnim": "GunslingerWalk", "primarySkillAnim": "GunslingerPrimary", "secondarySkillAnim": "GunslingerSecondary", "primarySkillRecoilAnim": "GunslingerRecoil", "primarySkillRecoilAnim2": "GunslingerRecoil2", "secondarySkillRecoilAnim": "GunslingerRecoil", "secondarySkillRecoilAnim2": "GunslingerRecoil2", "reloadingAnim": "GunslingerReload", "pushbackAnim": "GunslingerPushback", "happyAnim": "GunslingerWin", "happyLoopAnim": "GunslingerWinloop", "sadAnim": "GunslingerLose", "sadLoopAnim": "GunslingerLoseloop", "heroScreenIdleAnim": "GunslingerIdle", "heroScreenAnim": "GunslingerWin", "heroScreenLoopAnim": "GunslingerWinloop", "signatureAnim": "GunslingerWin", "enterAnim": "GunslingerIdle", "profileAnim": "GunslingerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "GunSlingerRockstar", "character": "Gunslinger", "model": "colt_rockstar_geo.scw", "cameraModel": "colt_base_cam.scw", "idleAnim": "GunslingerIdle", "walkAnim": "GunslingerWalk", "primarySkillAnim": "GunslingerPrimary", "secondarySkillAnim": "GunslingerSecondary", "primarySkillRecoilAnim": "GunslingerRecoil", "primarySkillRecoilAnim2": "GunslingerRecoil2", "secondarySkillRecoilAnim": "GunslingerRecoil", "secondarySkillRecoilAnim2": "GunslingerRecoil2", "reloadingAnim": "GunslingerReload", "pushbackAnim": "GunslingerPushback", "happyAnim": "GunslingerWin", "happyLoopAnim": "GunslingerWinloop", "sadAnim": "GunslingerLose", "sadLoopAnim": "GunslingerLoseloop", "heroScreenIdleAnim": "GunslingerIdle", "heroScreenAnim": "GunslingerWin", "heroScreenLoopAnim": "GunslingerWinloop", "signatureAnim": "GunslingerWin", "enterAnim": "GunslingerIdle", "profileAnim": "GunslingerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BullGuyDefault", "character": "BullDude", "model": "bull_geo.scw", "cameraModel": "bull_base_cam.scw", "idleAnim": "BullRockIdle", "walkAnim": "BullRockWalk", "primarySkillAnim": "BullRockPrimary", "secondarySkillAnim": "BullRockSecondary", "primarySkillRecoilAnim": "BullRockRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BullRockRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BullRockReload", "pushbackAnim": "BullRockPushback", "happyAnim": "BullRockWin", "happyLoopAnim": "BullRockWinloop", "sadAnim": "BullRockLose", "sadLoopAnim": "BullRockLoseloop", "heroScreenIdleAnim": "BullRockIdle", "heroScreenAnim": "BullRockWin", "heroScreenLoopAnim": "BullRockWinloop", "signatureAnim": "BullRockWin", "enterAnim": "BullRockIdle", "profileAnim": "BullRockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RocketGirlDefault", "character": "RocketGirl", "model": "brock_geo.scw", "cameraModel": "brock_base_cam.scw", "idleAnim": "BrockIdle", "walkAnim": "BrockWalk", "primarySkillAnim": "BrockPrimary", "secondarySkillAnim": "BrockSecondary", "primarySkillRecoilAnim": "BrockRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BrockRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BrockIdle", "pushbackAnim": "BrockPushback", "happyAnim": "BrockWin", "happyLoopAnim": "BrockWinloop", "sadAnim": "BrockLose", "sadLoopAnim": "BrockLoseloop", "heroScreenIdleAnim": "BrockIdle", "heroScreenAnim": "BrockWin", "heroScreenLoopAnim": "BrockWinloop", "signatureAnim": "BrockWin", "enterAnim": "BrockIdle", "profileAnim": "BrockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RocketGirlBeach", "character": "RocketGirl", "model": "brock_beach_geo.scw", "cameraModel": "brock_base_cam.scw", "idleAnim": "BrockIdle", "walkAnim": "BrockWalk", "primarySkillAnim": "BrockPrimary", "secondarySkillAnim": "BrockSecondary", "primarySkillRecoilAnim": "BrockRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BrockRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BrockIdle", "pushbackAnim": "BrockPushback", "happyAnim": "BrockWin", "happyLoopAnim": "BrockWinloop", "sadAnim": "BrockLose", "sadLoopAnim": "BrockLoseloop", "heroScreenIdleAnim": "BrockIdle", "heroScreenAnim": "BrockWin", "heroScreenLoopAnim": "BrockWinloop", "signatureAnim": "BrockWin", "enterAnim": "BrockIdle", "profileAnim": "BrockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Brock004Projectile", "ultiProjectile": "Brock004UltiProjectile", "mainAttackEffect": "beach_brock_def_atk", "ultiAttackEffect": "beach_brock_def_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": "BurnMainAttackWater", "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntGuyDefault", "character": "TntDude", "model": "dynamike_geo.scw", "cameraModel": "dynamike_base_cam.scw", "idleAnim": "TntguyIdle", "walkAnim": "TntguyWalk", "primarySkillAnim": "TntguyPrimary", "secondarySkillAnim": "TntguySecondary", "primarySkillRecoilAnim": "TntguyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TntguyUlti", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TntguyReload", "pushbackAnim": "TntguyPushback", "happyAnim": "TntguyWin", "happyLoopAnim": "TntguyWinloop", "sadAnim": "TntguyLose", "sadLoopAnim": "TntguyLoseloop", "heroScreenIdleAnim": "TntguyIdle", "heroScreenAnim": "TntguyWin", "heroScreenLoopAnim": "TntguyWinloop", "signatureAnim": "TntguyWin", "enterAnim": "TntguyIdle", "profileAnim": "TntguyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "LuchadorDefault", "character": "Luchador", "model": "primo_geo.scw", "cameraModel": "primo_portrait.scw", "idleAnim": "LouchadorIdle", "walkAnim": "LouchadorWalk", "primarySkillAnim": "LouchadorPrimary", "secondarySkillAnim": "LouchadorSecondary", "primarySkillRecoilAnim": "LouchadorRecoil", "primarySkillRecoilAnim2": "LouchadorRecoil2", "secondarySkillRecoilAnim": "LouchadorRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "LouchadorPushback", "happyAnim": "LouchadorWin", "happyLoopAnim": "LouchadorWinloop", "sadAnim": "LouchadorLose", "sadLoopAnim": "LouchadorLoseloop", "heroScreenIdleAnim": "LouchadorIdle", "heroScreenAnim": "LouchadorWin", "heroScreenLoopAnim": "LouchadorWinloop", "signatureAnim": "LouchadorWin", "enterAnim": "LouchadorIdle", "profileAnim": "LouchadorProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TurretDefault", "character": "MechanicTurret", "model": "turret_jessie_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "Turret", "walkAnim": "Turret", "primarySkillAnim": "Turret", "secondarySkillAnim": "Turret", "primarySkillRecoilAnim": "TurretAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "Turret", "secondarySkillRecoilAnim2": null, "reloadingAnim": "Turret", "pushbackAnim": "TurretIdle", "happyAnim": "TurretSpawn", "happyLoopAnim": "TurretIdle", "sadAnim": null, "sadLoopAnim": "TurretIdle", "heroScreenIdleAnim": "Turret", "heroScreenAnim": "TurretSpawn", "heroScreenLoopAnim": "TurretIdle", "signatureAnim": null, "enterAnim": "TurretIdle", "profileAnim": "Turret", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Barley002Projectile", "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TrickshotDefault", "character": "TrickshotDude", "model": "rico_geo.scw", "cameraModel": "rico_base_cam.scw", "idleAnim": "RicoIdle", "walkAnim": "RicoWalk", "primarySkillAnim": "RicoPrimary", "secondarySkillAnim": "RicoSecondary", "primarySkillRecoilAnim": "RicoRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "RicoRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "RicoReload", "pushbackAnim": "RicoPushback", "happyAnim": "RicoWin", "happyLoopAnim": "RicoWinloop", "sadAnim": "RicoLose", "sadLoopAnim": "RicoLoseloop", "heroScreenIdleAnim": "RicoIdle", "heroScreenAnim": "RicoWin", "heroScreenLoopAnim": "RicoWinloop", "signatureAnim": "RicoWin", "enterAnim": "RicoIdle", "profileAnim": "RicoProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CactusDefault", "character": "Cactus", "model": "spike_geo.scw", "cameraModel": "spike_base_cam.scw", "idleAnim": "SpikeIdle", "walkAnim": "SpikeWalk", "primarySkillAnim": "SpikePrimary", "secondarySkillAnim": "SpikeSecondary", "primarySkillRecoilAnim": "SpikeRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SpikeRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SpikeReload", "pushbackAnim": "SpikeIdle", "happyAnim": "SpikeWin", "happyLoopAnim": "SpikeWinloop", "sadAnim": "SpikeLose", "sadLoopAnim": "SpikeLoseloop", "heroScreenIdleAnim": "SpikeIdle", "heroScreenAnim": "SpikeWin", "heroScreenLoopAnim": "SpikeWinloop", "signatureAnim": "SpikeWin", "enterAnim": "SpikeIdle", "profileAnim": "SpikeProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CactusPink", "character": "Cactus", "model": "spike_blossom_geo.scw", "cameraModel": "spike_base_cam.scw", "idleAnim": "SpikeIdle", "walkAnim": "SpikeWalk", "primarySkillAnim": "SpikePrimary", "secondarySkillAnim": "SpikeSecondary", "primarySkillRecoilAnim": "SpikeRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SpikeRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SpikeReload", "pushbackAnim": "SpikeIdle", "happyAnim": "SpikeWin", "happyLoopAnim": "SpikeWinloop", "sadAnim": "SpikeLose", "sadLoopAnim": "SpikeLoseloop", "heroScreenIdleAnim": "SpikeIdle", "heroScreenAnim": "SpikeWin", "heroScreenLoopAnim": "SpikeWinloop", "signatureAnim": "SpikeWin", "enterAnim": "SpikeIdle", "profileAnim": "SpikeProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Spike002Projectile", "ultiProjectile": "Spike002UltiProjectile", "mainAttackEffect": "spike_002_atk", "ultiAttackEffect": "spike_002_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarkeepDefault", "character": "Barkeep", "model": "barkeep_geo.scw", "cameraModel": "barley_base_cam.scw", "idleAnim": "BarkeepIdle", "walkAnim": "BarkeepWalk", "primarySkillAnim": "BarkeepPrimary", "secondarySkillAnim": "BarkeepSecondary", "primarySkillRecoilAnim": "BarkeepRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BarkeepRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BarkeepReload", "pushbackAnim": "BarkeepPushback", "happyAnim": "BarkeepWin", "happyLoopAnim": "BarkeepWinloop", "sadAnim": "BarkeepLose", "sadLoopAnim": "BarkeepLoseloop", "heroScreenIdleAnim": "BarkeepWinidleloop", "heroScreenAnim": "BarkeepWin", "heroScreenLoopAnim": "BarkeepWinidleloop", "signatureAnim": "BarkeepWin", "enterAnim": "BarkeepIdle", "profileAnim": "BarkeepProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MechanicDefault", "character": "Mechanic", "model": "jessie_geo.scw:jessie_main+jessie_gun+jessie_hat+jessie_backpack", "cameraModel": "jessie_base_cam.scw", "idleAnim": "JunkerIdle", "walkAnim": "JunkerWalk", "primarySkillAnim": "JunkerPrimary", "secondarySkillAnim": "JunkerUltiAttack", "primarySkillRecoilAnim": "JunkerRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "JunkerUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "JunkerReload", "pushbackAnim": "JunkerPushback", "happyAnim": "JunkerWin", "happyLoopAnim": "JunkerWinloop", "sadAnim": "JunkerLose", "sadLoopAnim": "JunkerLoseloop", "heroScreenIdleAnim": "JunkerIdle", "heroScreenAnim": "JunkerWin", "heroScreenLoopAnim": "JunkerWinloop", "signatureAnim": "JunkerWin", "enterAnim": "JunkerIdle", "profileAnim": "JunkerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "JunkerFace", "walkFace": "JunkerFace", "happyFace": "JunkerFace", "happyLoopFace": "JunkerDreamyFace", "sadFace": "JunkerDreamyFace", "sadLoopFace": "JunkerDreamyFace", "heroScreenIdleFace": "JunkerFace", "heroScreenFace": "JunkerFace", "heroScreenLoopFace": "JunkerDreamyFace", "signatureFace": "JunkerFace", "profileFace": "JunkerStillFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanDefault", "character": "Shaman", "model": "nita_geo.scw", "cameraModel": "nita_base_cam.scw", "idleAnim": "ShamanIdle", "walkAnim": "ShamanWalk", "primarySkillAnim": "ShamanAttack", "secondarySkillAnim": "ShamanSecondary", "primarySkillRecoilAnim": "ShamanRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShamanRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShamanReload", "pushbackAnim": "ShamanPushback", "happyAnim": "ShamanWin", "happyLoopAnim": "ShamanWinloop", "sadAnim": "ShamanLose", "sadLoopAnim": "ShamanLoseloop", "heroScreenIdleAnim": "ShamanIdle", "heroScreenAnim": "ShamanWin", "heroScreenLoopAnim": "ShamanWinloop", "signatureAnim": "ShamanWin", "enterAnim": "ShamanIdle", "profileAnim": "ShamanProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanPanda", "character": "Shaman", "model": "nita_geo.scw", "cameraModel": "nita_base_cam.scw", "idleAnim": "ShamanIdle", "walkAnim": "ShamanWalk", "primarySkillAnim": "ShamanAttack", "secondarySkillAnim": "ShamanSecondary", "primarySkillRecoilAnim": "ShamanRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShamanRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShamanReload", "pushbackAnim": "ShamanPushback", "happyAnim": "ShamanWin", "happyLoopAnim": "ShamanWinloop", "sadAnim": "ShamanLose", "sadLoopAnim": "ShamanLoseloop", "heroScreenIdleAnim": "ShamanIdle", "heroScreenAnim": "ShamanWin", "heroScreenLoopAnim": "ShamanWinloop", "signatureAnim": "ShamanWin", "enterAnim": "ShamanIdle", "profileAnim": "ShamanProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanBearDefault", "character": "ShamanPet", "model": "nita_bear_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "BearShibaIdle", "walkAnim": "BearWalk", "primarySkillAnim": "BearAttack", "secondarySkillAnim": "BearShibaIdle", "primarySkillRecoilAnim": "BearRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BearShibaIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BearShibaIdle", "pushbackAnim": "BearPushback", "happyAnim": "BearShibaIdle", "happyLoopAnim": "BearShibaIdle", "sadAnim": "BearShibaIdle", "sadLoopAnim": "BearShibaIdle", "heroScreenIdleAnim": "BearShibaIdle", "heroScreenAnim": "BearShibaIdle", "heroScreenLoopAnim": "BearShibaIdle", "signatureAnim": "BearShibaIdle", "enterAnim": "BearShibaIdle", "profileAnim": "BearShibaIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanBearPanda", "character": "ShamanPet", "model": "nita_bear_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "BearShibaIdle", "walkAnim": "BearWalk", "primarySkillAnim": "BearAttack", "secondarySkillAnim": "BearShibaIdle", "primarySkillRecoilAnim": "BearRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BearShibaIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BearShibaIdle", "pushbackAnim": "BearPushback", "happyAnim": "BearShibaIdle", "happyLoopAnim": "BearShibaIdle", "sadAnim": "BearShibaIdle", "sadLoopAnim": "BearShibaIdle", "heroScreenIdleAnim": "BearShibaIdle", "heroScreenAnim": "BearShibaIdle", "heroScreenLoopAnim": "BearShibaIdle", "signatureAnim": "BearShibaIdle", "enterAnim": "BearShibaIdle", "profileAnim": "BearShibaIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "UndertakerDefault", "character": "Undertaker", "model": "mortis_geo.scw:headGeo+hairGeo+cloakGeo+armsGeo+torsoGeo+capeGeo+capeGeo1+legsGeo+shoesGeo+lanternGeo+shovelGeo+shovelsmearGeo", "cameraModel": "mortis_base_cam.scw", "idleAnim": "UndertakerIdle", "walkAnim": "UndertakerWalk", "primarySkillAnim": "UndertakerAttack", "secondarySkillAnim": "UndertakerUltiAttack", "primarySkillRecoilAnim": "UndertakerRecoil1", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "UndertakerUltiRecoil1", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "UndertakerPushback", "happyAnim": "UndertakerWin", "happyLoopAnim": "UndertakerWinloop", "sadAnim": "UndertakerLose", "sadLoopAnim": "UndertakerLoseloop", "heroScreenIdleAnim": "UndertakerIdle", "heroScreenAnim": "UndertakerWin", "heroScreenLoopAnim": "UndertakerWinloop", "signatureAnim": "UndertakerWin", "enterAnim": "UndertakerIdle", "profileAnim": "UndertakerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "MortisWinloop", "walkFace": "MortisFace", "happyFace": "MortisWin", "happyLoopFace": "MortisWinloop", "sadFace": "MortisFace", "sadLoopFace": "MortisFace", "heroScreenIdleFace": "MortisFace", "heroScreenFace": "MortisWin", "heroScreenLoopFace": "MortisWinloop", "signatureFace": "MortisFace", "profileFace": "MortisFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CrowDefault", "character": "Crow", "model": "crow_geo.scw:crow_accessories1+crow_body1+crow_boots1+crow_hands1+crow_head1", "cameraModel": "crow_base_cam.scw", "idleAnim": "CrowIdle", "walkAnim": "CrowWalk", "primarySkillAnim": "CrowPrimary", "secondarySkillAnim": "CrowSecondary", "primarySkillRecoilAnim": "CrowRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CrowIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CrowReload", "pushbackAnim": "CrowPushback", "happyAnim": "CrowWin", "happyLoopAnim": "CrowWinloop", "sadAnim": "CrowLose", "sadLoopAnim": "CrowLoseloop", "heroScreenIdleAnim": "CrowIdle", "heroScreenAnim": "CrowWin", "heroScreenLoopAnim": "CrowWinloop", "signatureAnim": "CrowWin", "enterAnim": "CrowIdle", "profileAnim": "CrowProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CrowFace", "walkFace": "CrowFace", "happyFace": "CrowFace", "happyLoopFace": "CrowFace", "sadFace": "CrowFace", "sadLoopFace": "CrowFace", "heroScreenIdleFace": "CrowFace", "heroScreenFace": "CrowFace", "heroScreenLoopFace": "CrowFace", "signatureFace": "CrowFace", "profileFace": "CrowFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CrowWhite", "character": "Crow", "model": "crow_geo.scw:crow_accessories1+crow_body1+crow_boots1+crow_hands1+crow_head1", "cameraModel": "crow_base_cam.scw", "idleAnim": "CrowIdle", "walkAnim": "CrowWalk", "primarySkillAnim": "CrowPrimary", "secondarySkillAnim": "CrowSecondary", "primarySkillRecoilAnim": "CrowRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CrowIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CrowReload", "pushbackAnim": "CrowPushback", "happyAnim": "CrowWin", "happyLoopAnim": "CrowWinloop", "sadAnim": "CrowLose", "sadLoopAnim": "CrowLoseloop", "heroScreenIdleAnim": "CrowIdle", "heroScreenAnim": "CrowWin", "heroScreenLoopAnim": "CrowWinloop", "signatureAnim": "CrowWin", "enterAnim": "CrowIdle", "profileAnim": "CrowProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CrowFace", "walkFace": "CrowFace", "happyFace": "CrowFace", "happyLoopFace": "CrowFace", "sadFace": "CrowFace", "sadLoopFace": "CrowFace", "heroScreenIdleFace": "CrowFace", "heroScreenFace": "CrowFace", "heroScreenLoopFace": "CrowFace", "signatureFace": "CrowFace", "profileFace": "CrowFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "DeadMariachiDefault", "character": "DeadMariachi", "model": "poco_geo.scw", "cameraModel": "poco_base_cam.scw", "idleAnim": "PocoIdle", "walkAnim": "PocoWalk", "primarySkillAnim": "PocoAttack", "secondarySkillAnim": "PocoSecondary", "primarySkillRecoilAnim": "PocoRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "PocoRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "PocoReload", "pushbackAnim": "PocoPushback", "happyAnim": "PocoWin", "happyLoopAnim": "PocoWinloop", "sadAnim": "PocoLose", "sadLoopAnim": "PocoLoseloop", "heroScreenIdleAnim": "PocoIdle", "heroScreenAnim": "PocoWin", "heroScreenLoopAnim": "PocoWinloop", "signatureAnim": "PocoWin", "enterAnim": "PocoIdle", "profileAnim": "PocoProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BowDudeDefault", "character": "BowDude", "model": "bo_geo.scw", "cameraModel": "bo_base_cam.scw", "idleAnim": "BowGuyIdle", "walkAnim": "BowGuyWalk", "primarySkillAnim": "BowGuyAttack", "secondarySkillAnim": "BowGuySecondary", "primarySkillRecoilAnim": "BowGuyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BowGuyRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "BowGuyIdle", "happyAnim": "BowGuyWin", "happyLoopAnim": "BowGuyWinloop", "sadAnim": "BowGuyLose", "sadLoopAnim": "BowGuyLoseloop", "heroScreenIdleAnim": "BowGuyIdle", "heroScreenAnim": "BowGuyWin", "heroScreenLoopAnim": "BowGuyWinloop", "signatureAnim": "BowGuyWin", "enterAnim": "BowGuyIdle", "profileAnim": "BowGuyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "SniperDefault", "character": "Sniper", "model": "piper_geo.scw", "cameraModel": "piper_portrait.scw", "idleAnim": "SniperIdle", "walkAnim": "SniperWalk", "primarySkillAnim": "SniperAttack", "secondarySkillAnim": "SniperSecondary", "primarySkillRecoilAnim": "SniperRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SniperRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SniperReload", "pushbackAnim": "SniperPushback", "happyAnim": "SniperWin", "happyLoopAnim": "SniperWinloop", "sadAnim": "SniperLose", "sadLoopAnim": "SniperLoseloop", "heroScreenIdleAnim": "SniperIdle", "heroScreenAnim": "SniperWin", "heroScreenLoopAnim": "SniperWinloop", "signatureAnim": "SniperWin", "enterAnim": "SniperIdle", "profileAnim": "SniperProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PiperIdleOpen", "walkFace": "PiperIdleOpen", "happyFace": "PiperWin", "happyLoopFace": "PiperWinLoop", "sadFace": "PiperIdleClosed", "sadLoopFace": "PiperIdleClosed", "heroScreenIdleFace": "PiperIdleClosed", "heroScreenFace": "PiperWin", "heroScreenLoopFace": "PiperWinLoop", "signatureFace": "PiperIdleClosed", "profileFace": "PiperIdleClosed", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MinigunDudeDefault", "character": "MinigunDude", "model": "minigunner_geo.scw:body+head+nozzle+hose+backpack", "cameraModel": "pam_base_cam.scw", "idleAnim": "MinigunnerIdle", "walkAnim": "MinigunnerWalk", "primarySkillAnim": "MinigunnerPrimary", "secondarySkillAnim": "MinigunnerSecondary", "primarySkillRecoilAnim": "MinigunnerRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "MinigunnerRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "MinigunnerReload", "pushbackAnim": "MinigunnerPushback", "happyAnim": "MinigunnerWin", "happyLoopAnim": "MinigunnerWinloop", "sadAnim": "MinigunnerLose", "sadLoopAnim": "MinigunnerLoseloop", "heroScreenIdleAnim": "MinigunnerIdle", "heroScreenAnim": "MinigunnerWin", "heroScreenLoopAnim": "MinigunnerWinloop", "signatureAnim": "MinigunnerWin", "enterAnim": "MinigunnerIdle", "profileAnim": "MinigunnerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PamFace", "walkFace": "PamFace", "happyFace": "PamFace", "happyLoopFace": "PamFace", "sadFace": "PamFace", "sadLoopFace": "PamFace", "heroScreenIdleFace": "PamFace", "heroScreenFace": "PamFace", "heroScreenLoopFace": "PamFace", "signatureFace": "PamFace", "profileFace": "PamFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BullGuyHair", "character": "BullDude", "model": "bull_viking_geo.scw", "cameraModel": "bull_base_cam.scw", "idleAnim": "BullVikingIdle", "walkAnim": "BullVikingWalk", "primarySkillAnim": "BullVikingPrimary", "secondarySkillAnim": "BullVikingSecondary", "primarySkillRecoilAnim": "BullVikingRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BullVikingRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BullVikingIdle", "pushbackAnim": "BullVikingPushback", "happyAnim": "BullVikingWin", "happyLoopAnim": "BullVikingWinloop", "sadAnim": "BullVikingLose", "sadLoopAnim": "BullVikingLoseloop", "heroScreenIdleAnim": "BullVikingIdle", "heroScreenAnim": "BullVikingWin", "heroScreenLoopAnim": "BullVikingWinloop", "signatureAnim": "BullVikingWin", "enterAnim": "BullVikingIdle", "profileAnim": "BullGuyHairProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TrickshotGold", "character": "TrickshotDude", "model": "rico_gold_geo.scw", "cameraModel": "rico_base_cam.scw", "idleAnim": "RicoGoldIdle", "walkAnim": "RicoGoldWalk", "primarySkillAnim": "RicoGoldPrimary", "secondarySkillAnim": "RicoGoldSecondary", "primarySkillRecoilAnim": "RicoGoldRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "RicoGoldRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "RicoGoldReload", "pushbackAnim": "RicoGoldPushback", "happyAnim": "RicoGoldWin", "happyLoopAnim": "RicoGoldWinloop", "sadAnim": "RicoGoldLose", "sadLoopAnim": "RicoGoldLoseloop", "heroScreenIdleAnim": "RicoGoldIdle", "heroScreenAnim": "RicoGoldWin", "heroScreenLoopAnim": "RicoGoldWinloop", "signatureAnim": "RicoGoldWin", "enterAnim": "RicoGoldIdle", "profileAnim": "RicoProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Rico003Projectile", "ultiProjectile": "Rico003UltiProjectile", "mainAttackEffect": "rico_003_atk", "ultiAttackEffect": "rico_003_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarkeepGold", "character": "Barkeep", "model": "barley_banker_geo.scw", "cameraModel": "barley_base_cam.scw", "idleAnim": "BarkeepBankerIdle", "walkAnim": "BarkeepBankerWalk", "primarySkillAnim": "BarkeepBankerPrimary", "secondarySkillAnim": "BarkeepBankerSecondary", "primarySkillRecoilAnim": "BarkeepBankerRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BarkeepBankerRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BarkeepBankerReload", "pushbackAnim": "BarkeepBankerPushback", "happyAnim": "BarkeepBankerWin", "happyLoopAnim": "BarkeepBankerWinloop", "sadAnim": "BarkeepBankerLose", "sadLoopAnim": "BarkeepBankerLoseloop", "heroScreenIdleAnim": "BarkeepBankerWinidleloop", "heroScreenAnim": "BarkeepBankerWin", "heroScreenLoopAnim": "BarkeepBankerWinidleloop", "signatureAnim": "BarkeepBankerWin", "enterAnim": "BarkeepBankerIdle", "profileAnim": "BarkeepBankerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Barley003Projectile", "ultiProjectile": "Barley003UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "LuchadorRudo", "character": "Luchador", "model": "primo_elrudo_geo.scw", "cameraModel": "primo_elrudo_portrait.scw", "idleAnim": "LouchadorIdle", "walkAnim": "LouchadorWalk", "primarySkillAnim": "LouchadorPrimary", "secondarySkillAnim": "LouchadorSecondary", "primarySkillRecoilAnim": "LouchadorRecoil", "primarySkillRecoilAnim2": "LouchadorRecoil2", "secondarySkillRecoilAnim": "LouchadorRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "LouchadorPushback", "happyAnim": "LuchadorRudoWin", "happyLoopAnim": "LuchadorRudoWinloop", "sadAnim": "LouchadorLose", "sadLoopAnim": "LouchadorLoseloop", "heroScreenIdleAnim": "LouchadorIdle", "heroScreenAnim": "LuchadorRudoWin", "heroScreenLoopAnim": "LuchadorRudoWinloop", "signatureAnim": "LuchadorRudoWin", "enterAnim": "LouchadorIdle", "profileAnim": "LouchadorRudoPortrait", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BanditGirlBandita", "character": "ShotgunGirl", "model": "shelly_bandita_geo.scw", "cameraModel": "shelly_base_cam.scw", "idleAnim": "ShellyBanditaIdle", "walkAnim": "ShellyBanditaWalk", "primarySkillAnim": "ShellyBanditaPrimary", "secondarySkillAnim": "ShellyBanditaSecondary", "primarySkillRecoilAnim": "ShellyBanditaRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShellyBanditaRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShellyBanditaReload", "pushbackAnim": "ShellyBanditaPushback", "happyAnim": "ShellyBanditaWin", "happyLoopAnim": "ShellyBanditaWinloop", "sadAnim": "ShellyBanditaLose", "sadLoopAnim": "ShellyBanditaLoseloop", "heroScreenIdleAnim": "ShellyBanditaIdle", "heroScreenAnim": "ShellyBanditaWin", "heroScreenLoopAnim": "ShellyBanditaWinloop", "signatureAnim": "ShellyBanditaWin", "enterAnim": "ShellyBanditaIdle", "profileAnim": "ShellyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "LuchadorRey", "character": "Luchador", "model": "primo_elrey_geo.scw", "cameraModel": "primo_portrait.scw", "idleAnim": "LuchadorReyIdle", "walkAnim": "LuchadorReyWalk", "primarySkillAnim": "LuchadorReyPrimary", "secondarySkillAnim": "LuchadorReySecondary", "primarySkillRecoilAnim": "LuchadorReyRecoil", "primarySkillRecoilAnim2": "LuchadorReyRecoil2", "secondarySkillRecoilAnim": "LuchadorReyRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "LouchadorPushback", "happyAnim": "LuchadorReyWin", "happyLoopAnim": "LuchadorReyWinloop", "sadAnim": "LuchadorReyLose", "sadLoopAnim": "LuchadorReyLoseloop", "heroScreenIdleAnim": "LuchadorReyIdle", "heroScreenAnim": "LuchadorReyWin", "heroScreenLoopAnim": "LuchadorReyWinloop", "signatureAnim": "LuchadorReyWin", "enterAnim": "LuchadorReyIdle", "profileAnim": "LouchadorProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PrimoElreyIdle", "walkFace": "PrimoElreyIdle", "happyFace": "PrimoElreyIdle", "happyLoopFace": "PrimoElreyIdle", "sadFace": "PrimoElreyIdle", "sadLoopFace": "PrimoElreyIdle", "heroScreenIdleFace": "PrimoElreyIdle", "heroScreenFace": "PrimoElreyIdle", "heroScreenLoopFace": "PrimoElreyIdle", "signatureFace": "PrimoElreyIdle", "profileFace": "PrimoElreyIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BallDefault", "character": null, "model": "brawl_ball.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BlackholeDefault", "character": "BlackHole", "model": "tara_geo.scw", "cameraModel": "tara_base_cam.scw", "idleAnim": "TaraIdle", "walkAnim": "TaraWalk", "primarySkillAnim": "TaraPrimary", "secondarySkillAnim": "TaraSecondary", "primarySkillRecoilAnim": "TaraRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TaraSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TaraReload", "pushbackAnim": "TaraIdle", "happyAnim": "TaraWin", "happyLoopAnim": "TaraWinloop", "sadAnim": "TaraLose", "sadLoopAnim": "TaraLoseloop", "heroScreenIdleAnim": "TaraIdle", "heroScreenAnim": "TaraWin", "heroScreenLoopAnim": "TaraWinloop", "signatureAnim": "TaraWin", "enterAnim": "TaraIdle", "profileAnim": "TaraProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "TaraFaceIdle", "walkFace": "TaraFaceIdle", "happyFace": "TaraFaceWin", "happyLoopFace": "TaraFaceWinLoop", "sadFace": "TaraFaceLose", "sadLoopFace": "TaraFaceLoseloop", "heroScreenIdleFace": "TaraFaceIdle", "heroScreenFace": "TaraFaceIdle", "heroScreenLoopFace": "TaraFaceIdle", "signatureFace": "TaraFaceIdle", "profileFace": "TaraFaceIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "HealstationDefault", "character": "HealingStation", "model": "healstation_geo.scw:body+healy", "cameraModel": "portrait_cam.scw", "idleAnim": "HealingStation", "walkAnim": "HealingStation", "primarySkillAnim": "HealingStation", "secondarySkillAnim": "HealingStation", "primarySkillRecoilAnim": "HealingStation", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "HealingStation", "secondarySkillRecoilAnim2": null, "reloadingAnim": "HealingStation", "pushbackAnim": "HealingStation", "happyAnim": null, "happyLoopAnim": "HealingStation", "sadAnim": null, "sadLoopAnim": "HealingStation", "heroScreenIdleAnim": "HealingStation", "heroScreenAnim": null, "heroScreenLoopAnim": "HealingStation", "signatureAnim": null, "enterAnim": "HealingStation", "profileAnim": "HealingStation", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarrelbotDefault", "character": "BarrelBot", "model": "darryl_geo.scw", "cameraModel": "darryl_base_cam.scw", "idleAnim": "DarrylIdle", "walkAnim": "DarrylWalk", "primarySkillAnim": "DarrylPrimary", "secondarySkillAnim": "BarrelbotSecondary", "primarySkillRecoilAnim": "DarrylRecoil", "primarySkillRecoilAnim2": "DarrylRecoil2", "secondarySkillRecoilAnim": "DarrylRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "DarrylReload", "pushbackAnim": "DarrylPushback", "happyAnim": "BarrelbotWin", "happyLoopAnim": "BarrelbotWinloop", "sadAnim": "BarrelbotLose", "sadLoopAnim": "BarrelbotLoseloop", "heroScreenIdleAnim": "DarrylIdle", "heroScreenAnim": "BarrelbotWin", "heroScreenLoopAnim": "BarrelbotWinloop", "signatureAnim": "BarrelbotWinloop", "enterAnim": "DarrylHide", "profileAnim": "DarrylProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BlackholePetDefault", "character": "BlackHolePet", "model": "tara_geo.scw", "cameraModel": "tara_base_cam.scw", "idleAnim": "TaraIdle", "walkAnim": "TaraWalk", "primarySkillAnim": "TaraPrimary", "secondarySkillAnim": "TaraSecondary", "primarySkillRecoilAnim": "TaraRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TaraSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TaraReload", "pushbackAnim": "TaraIdle", "happyAnim": "TaraWin", "happyLoopAnim": "TaraWinloop", "sadAnim": "TaraLose", "sadLoopAnim": "TaraLoseloop", "heroScreenIdleAnim": "TaraIdle", "heroScreenAnim": "TaraWin", "heroScreenLoopAnim": "TaraWinloop", "signatureAnim": "TaraWin", "enterAnim": "TaraIdle", "profileAnim": "TaraWin", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntPetDefault", "character": "TntPet", "model": "nita_bear_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "BearShibaIdle", "walkAnim": "BearWalk", "primarySkillAnim": "BearAttack", "secondarySkillAnim": "BearShibaIdle", "primarySkillRecoilAnim": "BearRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BearShibaIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BearShibaIdle", "pushbackAnim": "BearPushback", "happyAnim": "BearShibaIdle", "happyLoopAnim": "BearShibaIdle", "sadAnim": "BearShibaIdle", "sadLoopAnim": "BearShibaIdle", "heroScreenIdleAnim": "BearShibaIdle", "heroScreenAnim": "BearShibaIdle", "heroScreenLoopAnim": "BearShibaIdle", "signatureAnim": "BearShibaIdle", "enterAnim": "BearShibaIdle", "profileAnim": "BearShibaIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RangedBotDefault", "character": null, "model": "rangedbot_geo.scw:head+body+Gun", "cameraModel": "portrait_cam.scw", "idleAnim": "RangedBotIdle", "walkAnim": "RangedBotWalk", "primarySkillAnim": "RangedBotPrimary", "secondarySkillAnim": "RangedBotSecondary", "primarySkillRecoilAnim": "RangedBotRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "RangedBotRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "RangedBotReload", "pushbackAnim": "RangedBotPushback", "happyAnim": "RangedBotWin", "happyLoopAnim": "RangedBotWinloop", "sadAnim": "RangedBotLose", "sadLoopAnim": "RangedBotLoseloop", "heroScreenIdleAnim": "RangedBotIdle", "heroScreenAnim": "RangedBotWin", "heroScreenLoopAnim": "RangedBotWinloop", "signatureAnim": "RangedBotWin", "enterAnim": "RangedBotIdle", "profileAnim": "RangedBotIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MeleeFastBotDefault", "character": null, "model": "fastmeleebot_geo.scw:robo_geo", "cameraModel": "portrait_cam.scw", "idleAnim": "FastMeleeBotIdle", "walkAnim": "FastMeleeBotWalk", "primarySkillAnim": "FastMeleeBotIdle", "secondarySkillAnim": "FastMeleeBotIdle", "primarySkillRecoilAnim": "FastMeleeBotRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "FastMeleeBotRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "FastMeleeBotPushback", "happyAnim": "FastMeleeBotWin", "happyLoopAnim": "FastMeleeBotWinloop", "sadAnim": "FastMeleeBotLose", "sadLoopAnim": "FastMeleeBotLoseloop", "heroScreenIdleAnim": "FastMeleeBotIdle", "heroScreenAnim": "FastMeleeBotWin", "heroScreenLoopAnim": "FastMeleeBotWinloop", "signatureAnim": "FastMeleeBotWin", "enterAnim": "FastMeleeBotIdle", "profileAnim": "FastMeleeBotIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MeleeBotDefault", "character": null, "model": "meleebot_geo.scw:body+head", "cameraModel": "portrait_cam.scw", "idleAnim": "MeleeBotIdle", "walkAnim": "MeleeBotWalk", "primarySkillAnim": "MeleeBotIdle", "secondarySkillAnim": "MeleeBotIdle", "primarySkillRecoilAnim": "MeleeBotRecoil", "primarySkillRecoilAnim2": "MeleeBotRecoil2", "secondarySkillRecoilAnim": "MeleeBotRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "MeleeBotPushback", "happyAnim": "MeleeBotWin", "happyLoopAnim": "MeleeBotWinloop", "sadAnim": "MeleeBotLose", "sadLoopAnim": "MeleeBotLoseloop", "heroScreenIdleAnim": "MeleeBotIdle", "heroScreenAnim": "MeleeBotWin", "heroScreenLoopAnim": "MeleeBotWinloop", "signatureAnim": "MeleeBotWin", "enterAnim": "MeleeBotIdle", "profileAnim": "MeleeBotIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BossBotDefault", "character": null, "model": "bossbot_geo.scw:body+head+hands", "cameraModel": "portrait_cam.scw", "idleAnim": "BossBotIdle", "walkAnim": "BossBotWalk", "primarySkillAnim": "BossBotIdle", "secondarySkillAnim": "BossBotIdle", "primarySkillRecoilAnim": "BossBotIdle", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BossBotIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "BossBotPushback", "happyAnim": "BossBotWin", "happyLoopAnim": "BossBotWinloop", "sadAnim": "BossBotLose", "sadLoopAnim": "BossBotLoseloop", "heroScreenIdleAnim": "BossBotIdle", "heroScreenAnim": "BossBotWin", "heroScreenLoopAnim": "BossBotWinloop", "signatureAnim": "BossBotWin", "enterAnim": "BossBotIdle", "profileAnim": "BossBotIdle", "bossAutoAttackAnim": "BossBotIdle", "bossAutoAttackRecoilAnim": "BossBotRecoil", "bossAutoAttackRecoilAnim2": "BossBotRecoil2", "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArtilleryGalDefault", "character": "ArtilleryDude", "model": "mari_geo.scw", "cameraModel": "penny_base_cam.scw", "idleAnim": "ArtilleryGalIdle", "walkAnim": "ArtilleryGalWalk", "primarySkillAnim": "ArtilleryGalPrimary", "secondarySkillAnim": "ArtilleryGalUltiAttack", "primarySkillRecoilAnim": "ArtilleryGalRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ArtilleryGalUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ArtilleryGalReload", "pushbackAnim": "ArtilleryGalPushback", "happyAnim": "ArtilleryGalWin", "happyLoopAnim": "ArtilleryGalWinloop", "sadAnim": "ArtilleryGalLose", "sadLoopAnim": "ArtilleryGalLoseloop", "heroScreenIdleAnim": "ArtilleryGalIdle", "heroScreenAnim": "ArtilleryGalWin", "heroScreenLoopAnim": "ArtilleryGalWinloop", "signatureAnim": "ArtilleryGalWin", "enterAnim": "ArtilleryGalIdle", "profileAnim": "ArtilleryGalProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PennyFace", "walkFace": "PennyFace", "happyFace": "PennyFace", "happyLoopFace": "PennyFace", "sadFace": "PennyFace", "sadLoopFace": "PennyFace", "heroScreenIdleFace": "PennyFace", "heroScreenFace": "PennyFace", "heroScreenLoopFace": "PennyFace", "signatureFace": "PennyFace", "profileFace": "PennyFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "FrankDefault", "character": "HammerDude", "model": "frank_geo.scw", "cameraModel": "frank_base_cam.scw", "idleAnim": "FrankIdle", "walkAnim": "FrankWalk", "primarySkillAnim": "FrankPrimary", "secondarySkillAnim": "FrankSecondary", "primarySkillRecoilAnim": "FrankRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "FrankRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "FrankReloading", "pushbackAnim": "FrankPushback", "happyAnim": "FrankWin", "happyLoopAnim": "FrankWinloop", "sadAnim": "FrankLose", "sadLoopAnim": "FrankLoseloop", "heroScreenIdleAnim": "FrankIdle", "heroScreenAnim": "FrankWin", "heroScreenLoopAnim": "FrankWinloop", "signatureAnim": "FrankWin", "enterAnim": "FrankIdle", "profileAnim": "FrankProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "FrankIdle", "walkFace": "FrankIdle", "happyFace": "FrankIdle", "happyLoopFace": "FrankIdle", "sadFace": "FrankIdle", "sadLoopFace": "FrankIdle", "heroScreenIdleFace": "FrankIdle", "heroScreenFace": "FrankIdle", "heroScreenLoopFace": "FrankIdle", "signatureFace": "FrankIdle", "profileFace": "FrankIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArtilleryTurretDefault", "character": "ArtilleryDudeTurret", "model": "turret_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "ArtilleryIdle", "walkAnim": "ArtilleryIdle", "primarySkillAnim": "ArtilleryIdle", "secondarySkillAnim": "ArtilleryIdle", "primarySkillRecoilAnim": "ArtilleryAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ArtilleryIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ArtilleryIdle", "pushbackAnim": "ArtilleryIdle", "happyAnim": "ArtillerySpawn", "happyLoopAnim": "ArtilleryIdle", "sadAnim": null, "sadLoopAnim": "ArtilleryIdle", "heroScreenIdleAnim": "ArtilleryIdle", "heroScreenAnim": "ArtillerySpawn", "heroScreenLoopAnim": "ArtilleryIdle", "signatureAnim": null, "enterAnim": "ArtilleryIdle", "profileAnim": "ArtilleryIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MechanicKnight", "character": "Mechanic", "model": "jessie_knight_geo.scw", "cameraModel": "jessie_base_cam.scw", "idleAnim": "JunkerKnightIdle", "walkAnim": "JunkerKnightWalk", "primarySkillAnim": "JunkerKnightPrimary", "secondarySkillAnim": "JunkerKnightUltiAttack", "primarySkillRecoilAnim": "JunkerKnightRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "JunkerKnightUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "JunkerKnightReload", "pushbackAnim": "JunkerKnightPushback", "happyAnim": "JunkerKnightBattleWin", "happyLoopAnim": "JunkerKnightBattleWinloop", "sadAnim": "JunkerKnightLose", "sadLoopAnim": "JunkerKnightLoseloop", "heroScreenIdleAnim": "JunkerKnightWinloop", "heroScreenAnim": "JunkerKnightWin", "heroScreenLoopAnim": "JunkerKnightWinloop", "signatureAnim": "JunkerKnightBattleWin", "enterAnim": "JunkerKnightIdle", "profileAnim": "JunkerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "JunkerFace", "walkFace": "JunkerFace", "happyFace": "JunkerFace", "happyLoopFace": "JunkerFace", "sadFace": "JunkerDreamyFace", "sadLoopFace": "JunkerDreamyFace", "heroScreenIdleFace": "JunkerFace", "heroScreenFace": "JunkerFace", "heroScreenLoopFace": "JunkerFace", "signatureFace": "JunkerFace", "profileFace": "JunkerStillFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": true, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Jessie003Projectile1", "ultiProjectile": "Jessie003UltiProjectile", "mainAttackEffect": "jessie_003_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "FrankCaveman", "character": "HammerDude", "model": "frank_caveman_geo.scw", "cameraModel": "frank_base_cam.scw", "idleAnim": "FrankIdle", "walkAnim": "FrankWalk", "primarySkillAnim": "FrankPrimary", "secondarySkillAnim": "FrankSecondary", "primarySkillRecoilAnim": "FrankRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "FrankRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "FrankPushback", "happyAnim": "FrankWin", "happyLoopAnim": "FrankWinloop", "sadAnim": "FrankLose", "sadLoopAnim": "FrankLoseloop", "heroScreenIdleAnim": "FrankIdle", "heroScreenAnim": "FrankWin", "heroScreenLoopAnim": "FrankWinloop", "signatureAnim": "FrankWin", "enterAnim": "FrankIdle", "profileAnim": "FrankProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TurretDragon", "character": "MechanicTurret", "model": "turret_dragon_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "Turret", "walkAnim": "Turret", "primarySkillAnim": "Turret", "secondarySkillAnim": "Turret", "primarySkillRecoilAnim": "TurretAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "Turret", "secondarySkillRecoilAnim2": null, "reloadingAnim": "Turret", "pushbackAnim": "TurretIdle", "happyAnim": "TurretSpawn", "happyLoopAnim": "TurretIdle", "sadAnim": null, "sadLoopAnim": "TurretIdle", "heroScreenIdleAnim": "TurretWinloop", "heroScreenAnim": "TurretWin", "heroScreenLoopAnim": "TurretWinloop", "signatureAnim": null, "enterAnim": "TurretIdle", "profileAnim": "Turret", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": "jessie_003_turret_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": "JessieTurret003Projectile", "projectileForShockyStarPower": "Turret003Proj", "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MechanicSummer", "character": "Mechanic", "model": "jessie_summertime_geo.scw", "cameraModel": "jessie_base_cam.scw", "idleAnim": "JunkerKnightIdle", "walkAnim": "JunkerKnightWalk", "primarySkillAnim": "JunkerKnightPrimary", "secondarySkillAnim": "JunkerKnightUltiAttack", "primarySkillRecoilAnim": "JunkerKnightRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "JunkerKnightUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "JunkerKnightReload", "pushbackAnim": "JunkerKnightPushback", "happyAnim": "JunkerKnightBattleWin", "happyLoopAnim": "JunkerKnightBattleWinloop", "sadAnim": "JunkerKnightLose", "sadLoopAnim": "JunkerKnightLoseloop", "heroScreenIdleAnim": "JunkerKnightBattleWinloop", "heroScreenAnim": "JunkerKnightBattleWin", "heroScreenLoopAnim": "JunkerKnightBattleWinloop", "signatureAnim": "JunkerKnightBattleWin", "enterAnim": "JunkerKnightIdle", "profileAnim": "JunkerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "JunkerFace", "walkFace": "JunkerFace", "happyFace": "JunkerFace", "happyLoopFace": "JunkerDreamyFace", "sadFace": "JunkerDreamyFace", "sadLoopFace": "JunkerDreamyFace", "heroScreenIdleFace": "JunkerFace", "heroScreenFace": "JunkerFace", "heroScreenLoopFace": "JunkerDreamyFace", "signatureFace": "JunkerFace", "profileFace": "JunkerStillFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Jessie002Projectile1", "ultiProjectile": "Jessie002UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TurretSummertime", "character": "MechanicTurret", "model": "turret_summertime_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "Turret", "walkAnim": "Turret", "primarySkillAnim": "Turret", "secondarySkillAnim": "Turret", "primarySkillRecoilAnim": "TurretAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "Turret", "secondarySkillRecoilAnim2": null, "reloadingAnim": "Turret", "pushbackAnim": "TurretIdle", "happyAnim": "TurretSpawn", "happyLoopAnim": "TurretIdle", "sadAnim": null, "sadLoopAnim": "TurretIdle", "heroScreenIdleAnim": "Turret", "heroScreenAnim": "TurretIdle", "heroScreenLoopAnim": "TurretIdle", "signatureAnim": null, "enterAnim": "TurretIdle", "profileAnim": "Turret", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "JessieTurret002Projectile", "ultiProjectile": null, "mainAttackEffect": "jessie_002_turret_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": "JessieTurret002Projectile", "projectileForShockyStarPower": "TurretWaterProj", "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CrowPheonix", "character": "Crow", "model": "crow_pheonix_geo.scw", "cameraModel": "crow_pheonix_cam.scw", "idleAnim": "CrowPheonixIdle", "walkAnim": "CrowPheonixWalk", "primarySkillAnim": "CrowPheonixPrimary", "secondarySkillAnim": "CrowPheonixUltiAttack", "primarySkillRecoilAnim": "CrowPheonixRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CrowPheonixIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CrowPheonixReload", "pushbackAnim": "CrowPheonixPushback", "happyAnim": "CrowPheonixWin", "happyLoopAnim": "CrowPheonixWinloop", "sadAnim": "CrowPheonixLose", "sadLoopAnim": "CrowPheonixLoseloop", "heroScreenIdleAnim": "CrowPheonixIdle", "heroScreenAnim": "CrowPheonixWin", "heroScreenLoopAnim": "CrowPheonixWinloop", "signatureAnim": "CrowPheonixWin", "enterAnim": "CrowPheonixIdle", "profileAnim": "CrowPheonixProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CrowFace", "walkFace": "CrowFace", "happyFace": "CrowFace", "happyLoopFace": "CrowFace", "sadFace": "CrowFace", "sadLoopFace": "CrowFace", "heroScreenIdleFace": "CrowFace", "heroScreenFace": "CrowFace", "heroScreenLoopFace": "CrowFace", "signatureFace": "CrowFace", "profileFace": "CrowFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "CrowProjectileFlame", "ultiProjectile": "CrowUltiProjectileFlame", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": "Crow_bone_trail_1", "boneEffect2": "Crow_bone_trail_2", "boneEffect3": "Crow_bone_trail_3", "boneEffect4": "Crow_bone_trail_4", "boneEffectUse": "ulti", "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "UndertakerGreaser", "character": "Undertaker", "model": "mortis_greaser_geo.scw", "cameraModel": "mortis_base_cam.scw", "idleAnim": "UndertakerGreaserIdle", "walkAnim": "UndertakerWalk", "primarySkillAnim": "UndertakerAttack", "secondarySkillAnim": "UndertakerUltiAttack", "primarySkillRecoilAnim": "UndertakerRecoil1", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "UndertakerUltiRecoil1", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "UndertakerPushback", "happyAnim": "UndertakerGreaserWin", "happyLoopAnim": "UndertakerGreaserWinloop", "sadAnim": "UndertakerGreaserLose", "sadLoopAnim": "UndertakerGreaserLoseloop", "heroScreenIdleAnim": "UndertakerGreaserIdle", "heroScreenAnim": "UndertakerGreaserWin", "heroScreenLoopAnim": "UndertakerGreaserWinloop", "signatureAnim": "UndertakerGreaserWin", "enterAnim": "UndertakerGreaserIdle", "profileAnim": "UndertakerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "MortisWinloop", "walkFace": "MortisFace", "happyFace": "MortisWin", "happyLoopFace": "MortisWinloop", "sadFace": "MortisFace", "sadLoopFace": "MortisFace", "heroScreenIdleFace": "MortisFace", "heroScreenFace": "MortisWin", "heroScreenLoopFace": "MortisWinloop", "signatureFace": "MortisFace", "profileFace": "MortisFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BigBotDefault", "character": null, "model": "meleebot_geo.scw:body+head", "cameraModel": "portrait_cam.scw", "idleAnim": "MeleeBotIdle", "walkAnim": "MeleeBotWalk", "primarySkillAnim": "MeleeBotIdle", "secondarySkillAnim": "MeleeBotIdle", "primarySkillRecoilAnim": "MeleeBotRecoil", "primarySkillRecoilAnim2": "MeleeBotRecoil2", "secondarySkillRecoilAnim": "MeleeBotRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "MeleeBotPushback", "happyAnim": "MeleeBotWin", "happyLoopAnim": "MeleeBotWinloop", "sadAnim": "MeleeBotLose", "sadLoopAnim": "MeleeBotLoseloop", "heroScreenIdleAnim": "MeleeBotIdle", "heroScreenAnim": "MeleeBotWin", "heroScreenLoopAnim": "MeleeBotWinloop", "signatureAnim": "MeleeBotWin", "enterAnim": "MeleeBotIdle", "profileAnim": "MeleeBotIdle", "bossAutoAttackAnim": "MeleeBotIdle", "bossAutoAttackRecoilAnim": "MeleeBotRecoil", "bossAutoAttackRecoilAnim2": "MeleeBotRecoil2", "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BanditGirlPrereg", "character": "ShotgunGirl", "model": "shelly_prereg_geo.scw", "cameraModel": "shelly_base_cam.scw", "idleAnim": "ShellyPreregIdle", "walkAnim": "ShellyPreregWalk", "primarySkillAnim": "ShellyPreregPrimary", "secondarySkillAnim": "ShellyPreregSecondary", "primarySkillRecoilAnim": "ShellyPreregRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShellyPreregRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShellyPreregReload", "pushbackAnim": "ShellyPreregPushback", "happyAnim": "ShellyPreregWin", "happyLoopAnim": "ShellyPreregWinloop", "sadAnim": "ShellyPreregLose", "sadLoopAnim": "ShellyPreregLoseloop", "heroScreenIdleAnim": "ShellyPreregIdle", "heroScreenAnim": "ShellyPreregWin", "heroScreenLoopAnim": "ShellyPreregWinloop", "signatureAnim": "ShellyPreregWin", "enterAnim": "ShellyPreregIdle", "profileAnim": "ShellyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Shelly002Projectile", "ultiProjectile": "Shelly002UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "LootBox", "character": null, "model": "crate_powerup.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntBox", "character": null, "model": "crate_tnt.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "Safe", "character": null, "model": "heist_safe.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntGuySanta", "character": "TntDude", "model": "dynamike_santa_geo.scw", "cameraModel": "dynamike_base_cam.scw", "idleAnim": "TntguyIdle", "walkAnim": "TntguyWalk", "primarySkillAnim": "TntguyPrimary", "secondarySkillAnim": "TntguySecondary", "primarySkillRecoilAnim": "TntguyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TntguyUlti", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TntguyReload", "pushbackAnim": "TntguyPushback", "happyAnim": "TntguyWin", "happyLoopAnim": "TntguyWinloop", "sadAnim": "TntguyLose", "sadLoopAnim": "TntguyLoseloop", "heroScreenIdleAnim": "TntguyIdle", "heroScreenAnim": "TntguyWin", "heroScreenLoopAnim": "TntguyWinloop", "signatureAnim": "TntguyWin", "enterAnim": "TntguyIdle", "profileAnim": "TntguyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "TntDudeSantaProjectile", "ultiProjectile": "TntDudeSantaUltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntGuyChef", "character": "TntDude", "model": "dynamike_chef_geo.scw", "cameraModel": "dynamike_base_cam.scw", "idleAnim": "TntguyIdle", "walkAnim": "TntguyWalk", "primarySkillAnim": "TntguyPrimary", "secondarySkillAnim": "TntguySecondary", "primarySkillRecoilAnim": "TntguyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TntguyUlti", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TntguyReload", "pushbackAnim": "TntguyPushback", "happyAnim": "TntguyWin", "happyLoopAnim": "TntguyWinloop", "sadAnim": "TntguyLose", "sadLoopAnim": "TntguyLoseloop", "heroScreenIdleAnim": "TntguyIdle", "heroScreenAnim": "TntguyWin", "heroScreenLoopAnim": "TntguyWinloop", "signatureAnim": "TntguyWin", "enterAnim": "TntguyIdle", "profileAnim": "TntguyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "TntDudeChefProjectile", "ultiProjectile": "TntDudeChefUltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RocketGirlBoombox", "character": "RocketGirl", "model": "brock_boombox_geo.scw", "cameraModel": "brock_base_cam.scw", "idleAnim": "BrockBoomboxIdle", "walkAnim": "BrockBoomboxWalk", "primarySkillAnim": "BrockBoomboxPrimary", "secondarySkillAnim": "BrockBoomboxSecondary", "primarySkillRecoilAnim": "BrockBoomboxRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BrockBoomboxRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BrockBoomboxIdle", "pushbackAnim": "BrockPushback", "happyAnim": "BrockBoomboxWinIntro", "happyLoopAnim": "BrockBoomboxWin", "sadAnim": "BrockBoomboxLose", "sadLoopAnim": "BrockBoomboxLoseloop", "heroScreenIdleAnim": "BrockBoomboxIdle", "heroScreenAnim": "BrockBoomboxWinIntro", "heroScreenLoopAnim": "BrockBoomboxWin", "signatureAnim": "BrockBoomboxWin", "enterAnim": "BrockBoomboxIdle", "profileAnim": "BrockBoomboxProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarkeepWizard", "character": "Barkeep", "model": "barley_wizard_geo.scw", "cameraModel": "barley_wizard_cam.scw", "idleAnim": "BarkeepWizardIdle", "walkAnim": "BarkeepWizardWalk", "primarySkillAnim": "BarkeepWizardPrimary", "secondarySkillAnim": "BarkeepWizardSecondary", "primarySkillRecoilAnim": "BarkeepWizardRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BarkeepWizardRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BarkeepWizardReload", "pushbackAnim": "BarkeepWizardPushback", "happyAnim": "BarkeepWizardWin", "happyLoopAnim": "BarkeepWizardWinloop", "sadAnim": "BarkeepWizardLose", "sadLoopAnim": "BarkeepWizardLoseloop", "heroScreenIdleAnim": "BarkeepWizardIdle", "heroScreenAnim": "BarkeepWizardWin", "heroScreenLoopAnim": "BarkeepWizardWinloop", "signatureAnim": "BarkeepWizardWin", "enterAnim": "BarkeepWizardIdle", "profileAnim": "BarkeepWizardProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Barley002Projectile", "ultiProjectile": "Barley002UltiProjectile", "mainAttackEffect": "barkeep_wizard_attack", "ultiAttackEffect": "barkeep_wizard_attack_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanReindeer", "character": "Shaman", "model": "nita_reindeer_geo.scw", "cameraModel": "nita_base_cam.scw", "idleAnim": "ShamanIdle", "walkAnim": "ShamanWalk", "primarySkillAnim": "ShamanAttack", "secondarySkillAnim": "ShamanSecondary", "primarySkillRecoilAnim": "ShamanRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShamanRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShamanReload", "pushbackAnim": "ShamanPushback", "happyAnim": "ShamanWin", "happyLoopAnim": "ShamanWinloop", "sadAnim": "ShamanLose", "sadLoopAnim": "ShamanLoseloop", "heroScreenIdleAnim": "ShamanIdle", "heroScreenAnim": "ShamanWin", "heroScreenLoopAnim": "ShamanWinloop", "signatureAnim": "ShamanWin", "enterAnim": "ShamanIdle", "profileAnim": "ShamanProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArtilleryGalElf", "character": "ArtilleryDude", "model": "penny_elf_geo.scw", "cameraModel": "penny_base_cam.scw", "idleAnim": "ArtilleryGalIdle", "walkAnim": "ArtilleryGalWalk", "primarySkillAnim": "ArtilleryGalPrimary", "secondarySkillAnim": "ArtilleryGalUltiAttack", "primarySkillRecoilAnim": "ArtilleryGalRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ArtilleryGalUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ArtilleryGalReload", "pushbackAnim": "ArtilleryGalPushback", "happyAnim": "ArtilleryGalWin", "happyLoopAnim": "ArtilleryGalWinloop", "sadAnim": "ArtilleryGalLose", "sadLoopAnim": "ArtilleryGalLoseloop", "heroScreenIdleAnim": "ArtilleryGalIdle", "heroScreenAnim": "ArtilleryGalWin", "heroScreenLoopAnim": "ArtilleryGalWinloop", "signatureAnim": "ArtilleryGalWin", "enterAnim": "ArtilleryGalIdle", "profileAnim": "ArtilleryGalProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PennyFace", "walkFace": "PennyFace", "happyFace": "PennyFace", "happyLoopFace": "PennyFace", "sadFace": "PennyFace", "sadLoopFace": "PennyFace", "heroScreenIdleFace": "PennyFace", "heroScreenFace": "PennyFace", "heroScreenLoopFace": "PennyFace", "signatureFace": "PennyFace", "profileFace": "PennyFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Penny002Projectile", "ultiProjectile": "Penny002UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "NinjaDefault", "character": "Ninja", "model": "leon_geo.scw", "cameraModel": "leon_base_cam.scw", "idleAnim": "LeonIdle", "walkAnim": "LeonWalk", "primarySkillAnim": "LeonAttack", "secondarySkillAnim": "LeonSecondary", "primarySkillRecoilAnim": "LeonRecoil", "primarySkillRecoilAnim2": "LeonRecoil2", "secondarySkillRecoilAnim": "LeonRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "LeonReload", "pushbackAnim": "LeonPushback", "happyAnim": "LeonWin", "happyLoopAnim": "LeonWinloop", "sadAnim": "LeonLose", "sadLoopAnim": "LeonLoseloop", "heroScreenIdleAnim": "LeonIdle", "heroScreenAnim": "LeonWin", "heroScreenLoopAnim": "LeonWinloop", "signatureAnim": "LeonWin", "enterAnim": "LeonIdle", "profileAnim": "LeonProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "LeonIdle", "walkFace": "LeonIdle", "happyFace": "LeonWin", "happyLoopFace": "LeonWinLoop", "sadFace": "LeonLose", "sadLoopFace": "LeonLoseLoop", "heroScreenIdleFace": "LeonIdle", "heroScreenFace": "LeonWin", "heroScreenLoopFace": "LeonWinLoop", "signatureFace": "LeonIdle", "profileFace": "LeonIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "UndertakerHat", "character": "Undertaker", "model": "mortis_geo.scw:hatGeo+headGeo+hairGeo+cloakGeo+armsGeo+torsoGeo+capeGeo+capeGeo1+legsGeo+shoesGeo+lanternGeo+shovelGeo", "cameraModel": "mortis_base_cam.scw", "idleAnim": "UndertakerIdle", "walkAnim": "UndertakerWalk", "primarySkillAnim": "UndertakerAttack", "secondarySkillAnim": "UndertakerUltiAttack", "primarySkillRecoilAnim": "UndertakerRecoil1", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "UndertakerUltiRecoil1", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "UndertakerIdle", "happyAnim": "UndertakerWin", "happyLoopAnim": "UndertakerWinloop", "sadAnim": "UndertakerLose", "sadLoopAnim": "UndertakerLoseloop", "heroScreenIdleAnim": "UndertakerIdle", "heroScreenAnim": "UndertakerWin", "heroScreenLoopAnim": "UndertakerWinloop", "signatureAnim": "UndertakerWin", "enterAnim": "UndertakerIdle", "profileAnim": "UndertakerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "MortisWinloop", "walkFace": "MortisFace", "happyFace": "MortisWin", "happyLoopFace": "MortisWinloop", "sadFace": "MortisFace", "sadLoopFace": "MortisFace", "heroScreenIdleFace": "MortisFace", "heroScreenFace": "MortisWin", "heroScreenLoopFace": "MortisWinloop", "signatureFace": "MortisFace", "profileFace": "MortisFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BullGuyFootbull", "character": "BullDude", "model": "bull_footbull_geo.scw", "cameraModel": "bull_base_cam.scw", "idleAnim": "BullRockIdle", "walkAnim": "BullRockWalk", "primarySkillAnim": "BullRockPrimary", "secondarySkillAnim": "BullRockSecondary", "primarySkillRecoilAnim": "BullRockRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BullRockRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BullRockReload", "pushbackAnim": "BullRockPushback", "happyAnim": "BullFootbullWin", "happyLoopAnim": "BullFootbullWinloop", "sadAnim": "BullFootbullLose", "sadLoopAnim": "BullFootbullLoseloop", "heroScreenIdleAnim": "BullRockIdle", "heroScreenAnim": "BullFootbullWin", "heroScreenLoopAnim": "BullFootbullWinloop", "signatureAnim": "BullFootbullWin", "enterAnim": "BullRockIdle", "profileAnim": "BullRockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanBearReindeer", "character": "ShamanPet", "model": "bear_reindeer_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "BearReindeerIdle", "walkAnim": "BearReindeerWalk", "primarySkillAnim": "BearReindeerAttack", "secondarySkillAnim": "BearReindeerIdle", "primarySkillRecoilAnim": "BearReindeerRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BearReindeerIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BearReindeerIdle", "pushbackAnim": "BearReindeerPushback", "happyAnim": "BearReindeerIdle", "happyLoopAnim": "BearReindeerIdle", "sadAnim": "BearReindeerIdle", "sadLoopAnim": "BearReindeerIdle", "heroScreenIdleAnim": "BearReindeerIdle", "heroScreenAnim": "BearReindeerIdle", "heroScreenLoopAnim": "BearReindeerIdle", "signatureAnim": "BearReindeerIdle", "enterAnim": "BearReindeerIdle", "profileAnim": "BearShibaIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArtilleryTurretElf", "character": "ArtilleryDudeTurret", "model": "penny_elf_turret_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "ArtilleryIdle", "walkAnim": "ArtilleryIdle", "primarySkillAnim": "ArtilleryIdle", "secondarySkillAnim": "ArtilleryIdle", "primarySkillRecoilAnim": "ArtilleryAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ArtilleryIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ArtilleryIdle", "pushbackAnim": "ArtilleryIdle", "happyAnim": "ArtillerySpawn", "happyLoopAnim": "ArtilleryIdle", "sadAnim": null, "sadLoopAnim": "ArtilleryIdle", "heroScreenIdleAnim": "ArtilleryIdle", "heroScreenAnim": "ArtillerySpawn", "heroScreenLoopAnim": "ArtilleryIdle", "signatureAnim": null, "enterAnim": "ArtilleryIdle", "profileAnim": "ArtilleryIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": "penny_002_ulti_spawn", "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "HookDefault", "character": "HookDude", "model": "gene_geo.scw", "cameraModel": "gene_base_cam.scw", "idleAnim": "GeneIdle", "walkAnim": "GeneWalk", "primarySkillAnim": "GeneAttack", "secondarySkillAnim": "GeneSecondary", "primarySkillRecoilAnim": "GeneAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "GeneSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "GeneReload", "pushbackAnim": "GenePushback", "happyAnim": "GeneWin", "happyLoopAnim": "GeneWinloop", "sadAnim": "GeneLose", "sadLoopAnim": "GeneLoseloop", "heroScreenIdleAnim": "GeneIdle", "heroScreenAnim": "GeneWin", "heroScreenLoopAnim": "GeneWinloop", "signatureAnim": "GeneWin", "enterAnim": "GeneIdle", "profileAnim": "GeneProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TrickshotPopcorn", "character": "TrickshotDude", "model": "rico_popcorn_geo.scw", "cameraModel": "rico_base_cam.scw", "idleAnim": "RicoPopcornIdle", "walkAnim": "RicoWalk", "primarySkillAnim": "RicoPopcornPrimary", "secondarySkillAnim": "RicoPopcornSecondary", "primarySkillRecoilAnim": "RicoPopcornRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "RicoPopcornRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "RicoPopcornReload", "pushbackAnim": "RicoPopcornPushback", "happyAnim": "RicoPopcornWin", "happyLoopAnim": "RicoPopcornWinloop", "sadAnim": "RicoLose", "sadLoopAnim": "RicoLoseloop", "heroScreenIdleAnim": "RicoPopcornIdle", "heroScreenAnim": "RicoPopcornWin", "heroScreenLoopAnim": "RicoPopcornWinloop", "signatureAnim": "RicoPopcornWin", "enterAnim": "RicoPopcornIdle", "profileAnim": "RicoProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Rico002Projectile", "ultiProjectile": "Rico002UltiProjectile", "mainAttackEffect": "rico_002_atk", "ultiAttackEffect": "rico_002_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "GunSlingerHanbok", "character": "Gunslinger", "model": "colt_hanbok_geo.scw", "cameraModel": "colt_base_cam.scw", "idleAnim": "GunslingerIdle", "walkAnim": "GunslingerWalk", "primarySkillAnim": "GunslingerPrimary", "secondarySkillAnim": "GunslingerSecondary", "primarySkillRecoilAnim": "GunslingerRecoil", "primarySkillRecoilAnim2": "GunslingerRecoil2", "secondarySkillRecoilAnim": "GunslingerRecoil", "secondarySkillRecoilAnim2": "GunslingerRecoil2", "reloadingAnim": "GunslingerReload", "pushbackAnim": "GunslingerPushback", "happyAnim": "GunslingerWin", "happyLoopAnim": "GunslingerWinloop", "sadAnim": "GunslingerLose", "sadLoopAnim": "GunslingerLoseloop", "heroScreenIdleAnim": "GunslingerIdle", "heroScreenAnim": "GunslingerWin", "heroScreenLoopAnim": "GunslingerWinloop", "signatureAnim": "GunslingerWin", "enterAnim": "GunslingerIdle", "profileAnim": "GunslingerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Colt002Projectile", "ultiProjectile": "Colt002UltiProjectile", "mainAttackEffect": "colt_002_atk", "ultiAttackEffect": "colt_002_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": "colt_002_ulti_use", "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarrelbotCny", "character": "BarrelBot", "model": "darryl_cny_geo.scw", "cameraModel": "darryl_base_cam.scw", "idleAnim": "DarrylIdle", "walkAnim": "DarrylWalk", "primarySkillAnim": "DarrylPrimary", "secondarySkillAnim": "DarrylSecondary", "primarySkillRecoilAnim": "DarrylRecoil", "primarySkillRecoilAnim2": "DarrylRecoil2", "secondarySkillRecoilAnim": "DarrylRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "DarrylReload", "pushbackAnim": "DarrylPushback", "happyAnim": "DarrylWin", "happyLoopAnim": "DarrylWinloop", "sadAnim": "DarrylLose", "sadLoopAnim": "DarrylLoseloop", "heroScreenIdleAnim": "DarrylIdle", "heroScreenAnim": "DarrylWin", "heroScreenLoopAnim": "DarrylWinloop", "signatureAnim": "DarrylWinloop", "enterAnim": "DarrylHide", "profileAnim": "DarrylProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Darryl002Projectile", "ultiProjectile": null, "mainAttackEffect": "darryl_002_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "PocoValentine", "character": "DeadMariachi", "model": "poco_valentine_geo.scw", "cameraModel": "poco_base_cam.scw", "idleAnim": "PocoIdle", "walkAnim": "PocoWalk", "primarySkillAnim": "PocoAttack", "secondarySkillAnim": "PocoSecondary", "primarySkillRecoilAnim": "PocoRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "PocoRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "PocoReload", "pushbackAnim": "PocoPushback", "happyAnim": "PocoWin", "happyLoopAnim": "PocoWinloop", "sadAnim": "PocoLose", "sadLoopAnim": "PocoLoseloop", "heroScreenIdleAnim": "PocoIdle", "heroScreenAnim": "PocoWin", "heroScreenLoopAnim": "PocoWinloop", "signatureAnim": "PocoWin", "enterAnim": "PocoIdle", "profileAnim": "PocoProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Poco002Projectile", "ultiProjectile": "Poco002UltiProjectile", "mainAttackEffect": "poco_002_atk_direct", "ultiAttackEffect": "poco_002_atk_direct", "useBlueTextureInMenus": null, "mainAttackUseEffect": "poco_002_atk_root", "ultiUseEffect": "poco_002_atk_root", "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RocketGirlCny", "character": "RocketGirl", "model": "brock_cny_geo.scw", "cameraModel": "brock_base_cam.scw", "idleAnim": "BrockIdle", "walkAnim": "BrockWalk", "primarySkillAnim": "BrockPrimary", "secondarySkillAnim": "BrockSecondary", "primarySkillRecoilAnim": "BrockRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BrockRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BrockIdle", "pushbackAnim": "BrockPushback", "happyAnim": "BrockBoomboxWinIntro", "happyLoopAnim": "BrockBoomboxWin", "sadAnim": "BrockLose", "sadLoopAnim": "BrockLoseloop", "heroScreenIdleAnim": "BrockIdle", "heroScreenAnim": "BrockBoomboxWinIntro", "heroScreenLoopAnim": "BrockBoomboxWin", "signatureAnim": "BrockBoomboxWin", "enterAnim": "BrockIdle", "profileAnim": "BrockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Brock002Projectile", "ultiProjectile": "Brock002UltiProjectile", "mainAttackEffect": "brock_002_atk", "ultiAttackEffect": "brock_002_atk", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "WhirlwindDefault", "character": "Whirlwind", "model": "carl_geo.scw", "cameraModel": "carl_base_cam.scw", "idleAnim": "CarlIdle", "walkAnim": "CarlWalk", "primarySkillAnim": "CarlAttack", "secondarySkillAnim": "CarlSecondary", "primarySkillRecoilAnim": "CarlAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CarlSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CarlReload", "pushbackAnim": "CarlIdle", "happyAnim": "CarlWin", "happyLoopAnim": "CarlWinloop", "sadAnim": "CarlLose", "sadLoopAnim": "CarlLoseloop", "heroScreenIdleAnim": "CarlIdle", "heroScreenAnim": "CarlWin", "heroScreenLoopAnim": "CarlWinloop", "signatureAnim": "CarlWin", "enterAnim": "CarlIdle", "profileAnim": "CarlProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CarlIdle", "walkFace": "CarlIdle", "happyFace": "CarlIdle", "happyLoopFace": "CarlIdle", "sadFace": "CarlAngry", "sadLoopFace": "CarlAngryloop", "heroScreenIdleFace": "CarlIdle", "heroScreenFace": "CarlIdle", "heroScreenLoopFace": "CarlIdle", "signatureFace": "CarlIdle", "profileFace": "CarlProfile", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RoboWarsBox", "character": null, "model": "item_bolt_crate.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "UndertakerNightwitch", "character": "Undertaker", "model": "mortis_nightwitch_geo.scw", "cameraModel": "mortis_base_cam.scw", "idleAnim": "UndertakerIdle", "walkAnim": "UndertakerWalk", "primarySkillAnim": "UndertakerAttack", "secondarySkillAnim": "UndertakerUltiAttack", "primarySkillRecoilAnim": "UndertakerRecoil1", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "UndertakerUltiRecoil1", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "UndertakerPushback", "happyAnim": "UndertakerNightwitchWin", "happyLoopAnim": "UndertakerNightwitchWinloop", "sadAnim": "UndertakerLose", "sadLoopAnim": "UndertakerLoseloop", "heroScreenIdleAnim": "UndertakerIdle", "heroScreenAnim": "UndertakerNightwitchWin", "heroScreenLoopAnim": "UndertakerNightwitchWinloop", "signatureAnim": "UndertakerNightwitchWin", "enterAnim": "UndertakerIdle", "profileAnim": "UndertakerProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "MortisNightwitchFace", "walkFace": "MortisNightwitchFace", "happyFace": "MortisNightwitchWin", "happyLoopFace": "MortisNightwitchWinloop", "sadFace": "MortisNightwitchFace", "sadLoopFace": "MortisNightwitchFace", "heroScreenIdleFace": "MortisNightwitchFace", "heroScreenFace": "MortisNightwitchWin", "heroScreenLoopFace": "MortisNightwitchWinloop", "signatureFace": "MortisNightwitchFace", "profileFace": "MortisNightwitchFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": "mortis_002_ulti_direct", "useBlueTextureInMenus": null, "mainAttackUseEffect": "mortis_002_atk", "ultiUseEffect": "mortis_002_ulti", "ultiEndEffect": null, "meleeHitEffect": "mortis_002_atk_hit", "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RoboWarsBaseDefault", "character": "RoboWarsBase", "model": "siege_base.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "RoboWarsBaseIdle", "walkAnim": "RoboWarsBaseIdle", "primarySkillAnim": "RoboWarsBaseAttack", "secondarySkillAnim": "RoboWarsBaseIdle", "primarySkillRecoilAnim": "RoboWarsBaseAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "RoboWarsBaseIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "RoboWarsBaseIdle", "pushbackAnim": "RoboWarsBaseIdle", "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RosaDefault", "character": "Rosa", "model": "rosa_geo.scw", "cameraModel": "rosa_base_cam.scw", "idleAnim": "RosaIdle", "walkAnim": "RosaWalk", "primarySkillAnim": "RosaAttack", "secondarySkillAnim": "RosaIdle", "primarySkillRecoilAnim": "RosaAttackRecoil", "primarySkillRecoilAnim2": "RosaAttackRecoil2", "secondarySkillRecoilAnim": "RosaUltRecoil", "secondarySkillRecoilAnim2": "RosaUltRecoil2", "reloadingAnim": null, "pushbackAnim": "RosaIdle", "happyAnim": "RosaWin", "happyLoopAnim": "RosaWinloop", "sadAnim": "RosaLose", "sadLoopAnim": "RosaLoseloop", "heroScreenIdleAnim": "RosaIdle", "heroScreenAnim": "RosaWin", "heroScreenLoopAnim": "RosaWinloop", "signatureAnim": "RosaWin", "enterAnim": "RosaIdle", "profileAnim": "RosaProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MineCart", "character": "Train0", "model": "mine_cart.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanShiba", "character": "Shaman", "model": "nita_shiba_geo.scw", "cameraModel": "nita_base_cam.scw", "idleAnim": "ShamanShibaIdle", "walkAnim": "ShamanShibaWalk", "primarySkillAnim": "ShamanAttack", "secondarySkillAnim": "ShamanSecondary", "primarySkillRecoilAnim": "ShamanRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShamanRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShamanReload", "pushbackAnim": "ShamanPushback", "happyAnim": "ShamanShibaWin", "happyLoopAnim": "ShamanShibaWinloop", "sadAnim": "ShamanLose", "sadLoopAnim": "ShamanLoseloop", "heroScreenIdleAnim": "ShamanIdle", "heroScreenAnim": "ShamanShibaWin", "heroScreenLoopAnim": "ShamanShibaWinloop", "signatureAnim": "ShamanShibaWin", "enterAnim": "ShamanShibaIdle", "profileAnim": "ShamanProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShamanBearShiba", "character": "ShamanPet", "model": "bear_shiba_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "BearShibaIdle", "walkAnim": "BearWalk", "primarySkillAnim": "BearAttack", "secondarySkillAnim": "BearShibaIdle", "primarySkillRecoilAnim": "BearRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BearShibaIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BearIdle", "pushbackAnim": "BearPushback", "happyAnim": "BearShibaIdle", "happyLoopAnim": "BearShibaIdle", "sadAnim": "BearShibaIdle", "sadLoopAnim": "BearShibaIdle", "heroScreenIdleAnim": "BearShibaIdle", "heroScreenAnim": "BearShibaIdle", "heroScreenLoopAnim": "BearShibaIdle", "signatureAnim": "BearShibaIdle", "enterAnim": "BearShibaIdle", "profileAnim": "BearShibaIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": "nita_003_ulti_spawn", "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BaseballDefault", "character": "Baseball", "model": "bibi_geo.scw", "cameraModel": "bibi_base_cam.scw", "idleAnim": "BibiIdle", "walkAnim": "BibiWalk", "primarySkillAnim": "BibiPrimary", "secondarySkillAnim": "BibiSecondary", "primarySkillRecoilAnim": "BibiRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BibiRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "BibiPushback", "happyAnim": "BibiWin", "happyLoopAnim": "BibiWinloop", "sadAnim": "BibiLose", "sadLoopAnim": "BibiLoseloop", "heroScreenIdleAnim": "BibiIdle", "heroScreenAnim": "BibiWin", "heroScreenLoopAnim": "BibiWinloop", "signatureAnim": "BibiWin", "enterAnim": "BibiIdle", "profileAnim": "BibiProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "Bibi_Idle", "walkFace": "Bibi_Idle", "happyFace": "Bibi_Win", "happyLoopFace": "Bibi_Idle", "sadFace": "Bibi_Idle", "sadLoopFace": "Bibi_Idle", "heroScreenIdleFace": "Bibi_Idle", "heroScreenFace": "Bibi_Win", "heroScreenLoopFace": "Bibi_Idle", "signatureFace": "Bibi_Idle", "profileFace": "Bibi_Idle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MineCartB", "character": "Train1", "model": "mine_cart_b.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MineCartC", "character": "Train2", "model": "mine_cart_c.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MineCartD", "character": "Train3", "model": "mine_cart_d.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MineCartE", "character": "Train4", "model": "mine_cart_e.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ClusterBombDefault", "character": "ClusterBombDude", "model": "tick_geo.scw", "cameraModel": "tick_base_cam.scw", "idleAnim": "TickIdle", "walkAnim": "TickWalk", "primarySkillAnim": "TickPrimary", "secondarySkillAnim": "TickSecondary", "primarySkillRecoilAnim": "TickRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TickUltRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TickIdle", "pushbackAnim": "TickIdle", "happyAnim": "TickWin", "happyLoopAnim": "TickWinloop", "sadAnim": "TickLose", "sadLoopAnim": "TickLoseloop", "heroScreenIdleAnim": "TickIdle", "heroScreenAnim": "TickWin", "heroScreenLoopAnim": "TickWinloop", "signatureAnim": "TickWin", "enterAnim": "TickIdle", "profileAnim": "TickProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ClusterBombPetDefault", "character": "ClusterBombPet", "model": "bombhead_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "BombheadIdle", "walkAnim": "BombheadIdle", "primarySkillAnim": "BombheadIdle", "secondarySkillAnim": "BombheadIdle", "primarySkillRecoilAnim": "BombheadIdle", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BombheadIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BombheadIdle", "pushbackAnim": "BombheadIdle", "happyAnim": "BombheadIdle", "happyLoopAnim": "BombheadIdle", "sadAnim": "BombheadIdle", "sadLoopAnim": "BombheadIdle", "heroScreenIdleAnim": "BombheadIdle", "heroScreenAnim": "BombheadIdle", "heroScreenLoopAnim": "BombheadIdle", "signatureAnim": "BombheadIdle", "enterAnim": "BombheadIdle", "profileAnim": "BombheadIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArtilleryGalBunny", "character": "ArtilleryDude", "model": "penny_bunny_geo.scw", "cameraModel": "penny_base_cam.scw", "idleAnim": "ArtilleryGalIdle", "walkAnim": "ArtilleryGalBunnyWalk", "primarySkillAnim": "ArtilleryGalPrimary", "secondarySkillAnim": "ArtilleryGalUltiAttack", "primarySkillRecoilAnim": "ArtilleryGalRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ArtilleryGalUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ArtilleryGalReload", "pushbackAnim": "ArtilleryGalPushback", "happyAnim": "ArtilleryGalBunnyWin", "happyLoopAnim": "ArtilleryGalBunnyWinloop", "sadAnim": "ArtilleryGalLose", "sadLoopAnim": "ArtilleryGalBunnyLoseloop", "heroScreenIdleAnim": "ArtilleryGalIdle", "heroScreenAnim": "ArtilleryGalBunnyWin", "heroScreenLoopAnim": "ArtilleryGalBunnyWinloop", "signatureAnim": "ArtilleryGalBunnyWin", "enterAnim": "ArtilleryGalIdle", "profileAnim": "ArtilleryGalProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PennyFace", "walkFace": "PennyFace", "happyFace": "PennyFace", "happyLoopFace": "PennyFace", "sadFace": "PennyFace", "sadLoopFace": "PennyFace", "heroScreenIdleFace": "PennyFace", "heroScreenFace": "PennyFace", "heroScreenLoopFace": "PennyFace", "signatureFace": "PennyFace", "profileFace": "PennyFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Penny003Projectile", "ultiProjectile": "Penny003UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArtilleryTurretBunny", "character": "ArtilleryDudeTurret", "model": "bunny_turret_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "ArtilleryBunnyIdle", "walkAnim": "ArtilleryBunnyIdle", "primarySkillAnim": "ArtilleryBunnyIdle", "secondarySkillAnim": "ArtilleryBunnyIdle", "primarySkillRecoilAnim": "ArtilleryBunnyAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ArtilleryBunnyIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ArtilleryBunnyIdle", "pushbackAnim": "ArtilleryBunnyIdle", "happyAnim": "ArtilleryBunnySpawn", "happyLoopAnim": "ArtilleryBunnyIdle", "sadAnim": null, "sadLoopAnim": "ArtilleryBunnyIdleMenu", "heroScreenIdleAnim": "ArtilleryBunnyIdleMenu", "heroScreenAnim": "ArtilleryBunnyIdleMenu", "heroScreenLoopAnim": "ArtilleryBunnyIdleMenu", "signatureAnim": null, "enterAnim": "ArtilleryBunnyIdleMenu", "profileAnim": "ArtilleryIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": "penny_003_ulti_spawn", "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarkeepMs", "character": "Barkeep", "model": "barley_ms_geo.scw", "cameraModel": "barley_base_cam.scw", "idleAnim": "BarkeepMsIdle", "walkAnim": "BarkeepMsWalk", "primarySkillAnim": "BarkeepMsPrimary", "secondarySkillAnim": "BarkeepMsSecondary", "primarySkillRecoilAnim": "BarkeepMsPrimary", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BarkeepMsPrimary", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BarkeepMsReload", "pushbackAnim": "BarkeepPushback", "happyAnim": "BarkeepMsWin", "happyLoopAnim": "BarkeepMsIdle", "sadAnim": "BarkeepMsLose", "sadLoopAnim": "BarkeepMsLoseloop", "heroScreenIdleAnim": "BarkeepMsIdle", "heroScreenAnim": "BarkeepMsWin", "heroScreenLoopAnim": "BarkeepMsIdle", "signatureAnim": "BarkeepMsWin", "enterAnim": "BarkeepMsIdle", "profileAnim": "BarkeepMsProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "BarleyMsFace", "walkFace": "BarleyMsFace", "happyFace": "BarleyMsFace", "happyLoopFace": "BarleyMsFace", "sadFace": "BarleyMsLose", "sadLoopFace": "BarleyMsLoseloop", "heroScreenIdleFace": "BarleyMsFace", "heroScreenFace": "BarleyMsFace", "heroScreenLoopFace": "BarleyMsFace", "signatureFace": "BarleyMsFace", "profileFace": "BarleyMsFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Barley005Projectile", "ultiProjectile": "Barley005UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "RocketGirlHotrod", "character": "RocketGirl", "model": "brock_hotrod_geo.scw", "cameraModel": "brock_base_cam.scw", "idleAnim": "BrockHotrodIdle", "walkAnim": "BrockHotrodWalk", "primarySkillAnim": "BrockHotrodPrimary", "secondarySkillAnim": "BrockHotrodSecondary", "primarySkillRecoilAnim": "BrockHotrodRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BrockHotrodRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BrockHotrodIdle", "pushbackAnim": "BrockHotrodPushback", "happyAnim": "BrockHotrodWin", "happyLoopAnim": "BrockHotrodWinloop", "sadAnim": "BrockHotrodLose", "sadLoopAnim": "BrockHotrodLoseloop", "heroScreenIdleAnim": "BrockHotrodIdle", "heroScreenAnim": "BrockHotrodWin", "heroScreenLoopAnim": "BrockHotrodWinloop", "signatureAnim": "BrockHotrodIdle", "enterAnim": "BrockHotrodIdle", "profileAnim": "BrockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Brock003Projectile", "ultiProjectile": "Brock003UltiProjectile", "mainAttackEffect": "brock_003_atk", "ultiAttackEffect": "brock_003_atk", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "WhirlwindHotrod", "character": "Whirlwind", "model": "carl_hotrod_geo.scw", "cameraModel": "carl_hotrod_cam.scw", "idleAnim": "CarlHotrodIdle", "walkAnim": "CarlHotrodWalk", "primarySkillAnim": "CarlHotrodAttack", "secondarySkillAnim": "CarlHotrodSecondary", "primarySkillRecoilAnim": "CarlHotrodAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CarlHotrodSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CarlHotrodReload", "pushbackAnim": "CarlHotrodIdle", "happyAnim": "CarlHotrodWin", "happyLoopAnim": "CarlHotrodWinloop", "sadAnim": "CarlHotrodLose", "sadLoopAnim": "CarlHotrodLoseloop", "heroScreenIdleAnim": "CarlHotrodIdle", "heroScreenAnim": "CarlHotrodWin", "heroScreenLoopAnim": "CarlHotrodWinloop", "signatureAnim": "CarlHotrodWin", "enterAnim": "CarlHotrodIdle", "profileAnim": "CarlHotrodProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CarlHotrodIdle", "walkFace": "CarlHotrodIdle", "happyFace": "CarlHotrodIdle", "happyLoopFace": "CarlHotrodIdle", "sadFace": "CarlHotrodAngry", "sadLoopFace": "CarlHotrodAngryloop", "heroScreenIdleFace": "CarlHotrodIdle", "heroScreenFace": "CarlHotrodIdle", "heroScreenLoopFace": "CarlHotrodIdle", "signatureFace": "CarlHotrodIdle", "profileFace": "CarlHotrodIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Carl002Projectile", "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": "carl_002_ulti_loop", "ultiLoopEffect2": "carl_002_ulti_ground", "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarkeepLumberjack", "character": "Barkeep", "model": "barley_lumberjack_geo.scw", "cameraModel": "barley_base_cam.scw", "idleAnim": "BarkeepLumberjackIdle", "walkAnim": "BarkeepLumberjackWalk", "primarySkillAnim": "BarkeepLumberjackPrimary", "secondarySkillAnim": "BarkeepLumberjackSecondary", "primarySkillRecoilAnim": "BarkeepLumberjackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BarkeepLumberjackRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BarkeepLumberjackReload", "pushbackAnim": "BarkeepLumberjackPushback", "happyAnim": "BarkeepLumberjackWin", "happyLoopAnim": "BarkeepLumberjackWinloop", "sadAnim": "BarkeepLumberjackLose", "sadLoopAnim": "BarkeepLumberjackLoseloop", "heroScreenIdleAnim": "BarkeepLumberjackIdle", "heroScreenAnim": "BarkeepLumberjackWin", "heroScreenLoopAnim": "BarkeepLumberjackIdle", "signatureAnim": "BarkeepLumberjackWin", "enterAnim": "BarkeepLumberjackIdle", "profileAnim": "BarkeepLumberjackProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Barley004Projectile", "ultiProjectile": "Barley004UltiProjectile", "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BoMecha", "character": "BowDude", "model": "bo_mecha_geo.scw", "cameraModel": "bo_mecha_cam.scw", "idleAnim": "BoMechaIdle", "walkAnim": "BoMechaWalk", "primarySkillAnim": "BoMechaAttack", "secondarySkillAnim": "BoMechaSecondary", "primarySkillRecoilAnim": "BoMechaRecoil", "primarySkillRecoilAnim2": "BoMechaRecoil", "secondarySkillRecoilAnim": "BoMechaRecoil2", "secondarySkillRecoilAnim2": "BoMechaRecoil2", "reloadingAnim": "BoMechaIdle", "pushbackAnim": "BoMechaPushback", "happyAnim": "BoMechaWin", "happyLoopAnim": "BoMechaWinloop", "sadAnim": "BoMechaLose", "sadLoopAnim": "BoMechaLoseloop", "heroScreenIdleAnim": "BoMechaIdle", "heroScreenAnim": "BoMechaWin", "heroScreenLoopAnim": "BoMechaWinloop", "signatureAnim": "BoMechaWin", "enterAnim": "BoMechaIdle", "profileAnim": "BoMechaProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": true, "mainAttackProjectile": "Bow002Projectile", "ultiProjectile": "Bow002UltiProjectile", "mainAttackEffect": "bo_002_atk", "ultiAttackEffect": "bo_002_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": "MineMecha", "killCelebrationSoundVO": "Mech_Bo_kill", "inLeadCelebrationSoundVO": "Mech_Bo_lead", "startSoundVO": "Mech_Bo_start", "useUltiSoundVO": "Mech_Bo_ulti_vo", "takeDamageSoundVO": "Mech_Bo_hurt", "deathSoundVO": "Mech_Bo_die", "attackSoundVO": "Mech_Bo_atk_vo", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CrowMecha", "character": "Crow", "model": "crow_mecha_geo.scw", "cameraModel": "crow_mecha_cam.scw", "idleAnim": "CrowMechaIdle", "walkAnim": "CrowMechaWalk", "primarySkillAnim": "CrowMechaPrimary", "secondarySkillAnim": "CrowMechaSecondary", "primarySkillRecoilAnim": "CrowMechaRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CrowMechaIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CrowMechaReload", "pushbackAnim": "CrowMechaPushback", "happyAnim": "CrowMechaWin", "happyLoopAnim": "CrowMechaWinloop", "sadAnim": "CrowMechaLose", "sadLoopAnim": "CrowMechaLoseloop", "heroScreenIdleAnim": "CrowMechaIdle", "heroScreenAnim": "CrowMechaWin", "heroScreenLoopAnim": "CrowMechaWinloop", "signatureAnim": "CrowMechaWin", "enterAnim": "CrowMechaIdle", "profileAnim": "CrowMechaProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Crow002Projectile", "ultiProjectile": "Crow002UltiProjectile", "mainAttackEffect": "crow_002_attack", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": "crow_002_ulti", "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": "RoboCrow_Kill", "inLeadCelebrationSoundVO": "RoboCrow_Lead", "startSoundVO": "RoboCrow_Start", "useUltiSoundVO": "RoboCrow_Ulti_vo", "takeDamageSoundVO": "RoboCrow_Takedamage", "deathSoundVO": "RoboCrow_Die", "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "Cactusmecha", "character": "Cactus", "model": "spike_mecha_geo.scw", "cameraModel": "spike_base_cam.scw", "idleAnim": "SpikeIdle", "walkAnim": "SpikeMechaWalk", "primarySkillAnim": "SpikePrimary", "secondarySkillAnim": "SpikeSecondary", "primarySkillRecoilAnim": "SpikeRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SpikeRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SpikeReload", "pushbackAnim": "SpikeIdle", "happyAnim": "SpikeMechaWin", "happyLoopAnim": "SpikeMechaWinloop", "sadAnim": "SpikeMechaLose", "sadLoopAnim": "SpikeMechaLoseloop", "heroScreenIdleAnim": "SpikeIdle", "heroScreenAnim": "SpikeMechaWin", "heroScreenLoopAnim": "SpikeMechaWinloop", "signatureAnim": "SpikeMechaWin", "enterAnim": "SpikeIdle", "profileAnim": "SpikeProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Spike003Projectile", "ultiProjectile": "Spike003UltiProjectile", "mainAttackEffect": "cactus_003_attack", "ultiAttackEffect": "cactus_003_attack_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntDudeMecha", "character": "TntDude", "model": "dynamike_mecha_geo.scw", "cameraModel": "dynamike_base_cam.scw", "idleAnim": "TntDudeMechaIdle", "walkAnim": "TntDudeMechaWalk", "primarySkillAnim": "TntDudeMechaPrimary", "secondarySkillAnim": "TntDudeMechaSecondary", "primarySkillRecoilAnim": "TntDudeMechaRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TntDudeMechaSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TntDudeMechaIdle", "pushbackAnim": "TntguyPushback", "happyAnim": "TntDudeMechaWin", "happyLoopAnim": "TntDudeMechaWinloop", "sadAnim": "TntDudeMechaLose", "sadLoopAnim": "TntDudeMechaLoseloop", "heroScreenIdleAnim": "TntDudeMechaIdle", "heroScreenAnim": "TntDudeMechaWin", "heroScreenLoopAnim": "TntDudeMechaWinloop", "signatureAnim": "TntDudeMechaWin", "enterAnim": "TntDudeMechaIdle", "profileAnim": "TntDudeMechaProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "DynamikeRoboFace", "walkFace": "DynamikeRoboFace", "happyFace": "DynamikeRoboFace", "happyLoopFace": "DynamikeRoboFace", "sadFace": "DynamikeRoboLose", "sadLoopFace": "DynamikeRoboLoseloop", "heroScreenIdleFace": "DynamikeRoboFace", "heroScreenFace": "DynamikeRoboFace", "heroScreenLoopFace": "DynamikeRoboFace", "signatureFace": "DynamikeRoboFace", "profileFace": "DynamikeRoboFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": "Mike003Projectile", "ultiProjectile": "Mike003UltiProjectile", "mainAttackEffect": "mech_mike_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": "dynamike_003_ulti_use", "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": "Mech_Mike_kill_vo", "inLeadCelebrationSoundVO": "Mech_Mike_lead_vo", "startSoundVO": "Mech_Mike_start_vo", "useUltiSoundVO": "Mech_Mike_ulti_vo", "takeDamageSoundVO": "Mech_Mike_hurt_vo", "deathSoundVO": "Mech_Mike_die_vo", "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "WhirlwindHogrider", "character": "Whirlwind", "model": "carl_hogrider_geo.scw", "cameraModel": "carl_hogrider_cam.scw", "idleAnim": "CarlHogriderIdle", "walkAnim": "CarlHogriderWalk", "primarySkillAnim": "CarlHogriderAttack", "secondarySkillAnim": "CarlHogriderSecondary", "primarySkillRecoilAnim": "CarlHogriderAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CarlHogriderSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CarlHogriderReload", "pushbackAnim": "CarlHogriderIdle", "happyAnim": "CarlHogriderWin", "happyLoopAnim": "CarlHogriderWinloop", "sadAnim": "CarlHogriderLose", "sadLoopAnim": "CarlHogriderLoseloop", "heroScreenIdleAnim": "CarlHogriderIdle", "heroScreenAnim": "CarlHogriderWin", "heroScreenLoopAnim": "CarlHogriderWinloop", "signatureAnim": "CarlHogriderWin", "enterAnim": "CarlHogriderIdle", "profileAnim": "CarlHogriderProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CarlIdle", "walkFace": "CarlIdle", "happyFace": "CarlIdle", "happyLoopFace": "CarlIdle", "sadFace": "CarlAngry", "sadLoopFace": "CarlAngryloop", "heroScreenIdleFace": "CarlIdle", "heroScreenFace": "CarlIdle", "heroScreenLoopFace": "CarlIdle", "signatureFace": "CarlIdle", "profileFace": "CarlProfile", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Carl003Projectile", "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BallBeach", "character": null, "model": "brawl_ball_beach.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArcadeDefault", "character": "Arcade", "model": "8bit_geo.scw", "cameraModel": "8bit_base_cam.scw", "idleAnim": "8bitIdle", "walkAnim": "8BitWalk", "primarySkillAnim": "8bitAttack", "secondarySkillAnim": "8bitIdle", "primarySkillRecoilAnim": "8bitRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "8bitIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "8bitReload", "pushbackAnim": "8bitPushback", "happyAnim": "8bitWin", "happyLoopAnim": "8bitWinloop", "sadAnim": "8bitLose", "sadLoopAnim": "8bitLoseloop", "heroScreenIdleAnim": "8bitWinloop", "heroScreenAnim": "8bitWin", "heroScreenLoopAnim": "8bitWinloop", "signatureAnim": "8bitWin", "enterAnim": "8bitIdle", "profileAnim": "8bitProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "8bitFace", "walkFace": "8bitFace", "happyFace": "8bitFace", "happyLoopFace": "8bitFace", "sadFace": "8bitLose", "sadLoopFace": "8bitLooseloop", "heroScreenIdleFace": "8bitFace", "heroScreenFace": "8bitFace", "heroScreenLoopFace": "8bitFace", "signatureFace": null, "profileFace": "8bitFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "DamageBoosterDefault", "character": "DamageBooster", "model": "8bit_turret_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "8bitTurretIdle", "walkAnim": "8bitTurretIdle", "primarySkillAnim": "8bitTurretIdle", "secondarySkillAnim": "8bitTurretIdle", "primarySkillRecoilAnim": "8bitTurretIdle", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "8bitTurretIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "8bitTurretIdle", "pushbackAnim": "8bitTurretIdle", "happyAnim": "8bitTurretSpawn", "happyLoopAnim": "8bitTurretIdle", "sadAnim": null, "sadLoopAnim": "8bitTurretIdle", "heroScreenIdleAnim": "8bitTurretIdle", "heroScreenAnim": null, "heroScreenLoopAnim": "8bitTurretIdle", "signatureAnim": null, "enterAnim": "8bitTurretIdle", "profileAnim": "8bitTurretIdle", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "SniperPink", "character": "Sniper", "model": "piper_geo.scw", "cameraModel": "piper_portrait.scw", "idleAnim": "SniperIdle", "walkAnim": "SniperWalk", "primarySkillAnim": "SniperAttack", "secondarySkillAnim": "SniperSecondary", "primarySkillRecoilAnim": "SniperRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SniperRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SniperReload", "pushbackAnim": "SniperPushback", "happyAnim": "SniperWin", "happyLoopAnim": "SniperWinloop", "sadAnim": "SniperLose", "sadLoopAnim": "SniperLoseloop", "heroScreenIdleAnim": "SniperIdle", "heroScreenAnim": "SniperWin", "heroScreenLoopAnim": "SniperWinloop", "signatureAnim": "SniperWin", "enterAnim": "SniperIdle", "profileAnim": "SniperProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PiperIdleOpen", "walkFace": "PiperIdleOpen", "happyFace": "PiperWin", "happyLoopFace": "PiperWinLoop", "sadFace": "PiperIdleClosed", "sadLoopFace": "PiperIdleClosed", "heroScreenIdleFace": "PiperIdleClosed", "heroScreenFace": "PiperWin", "heroScreenLoopFace": "PiperWinLoop", "signatureFace": "PiperIdleClosed", "profileFace": "PiperIdleClosed", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ArcadeClassic", "character": "Arcade", "model": "8bit_classic_geo.scw", "cameraModel": "8bit_base_cam.scw", "idleAnim": "8bitIdle", "walkAnim": "8BitWalk", "primarySkillAnim": "8bitAttack", "secondarySkillAnim": "8bitIdle", "primarySkillRecoilAnim": "8bitRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "8bitIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": "8bitReload", "pushbackAnim": "8bitPushback", "happyAnim": "8bitWin", "happyLoopAnim": "8bitWinloop", "sadAnim": "8bitLose", "sadLoopAnim": "8bitLoseloop", "heroScreenIdleAnim": "8bitWinloop", "heroScreenAnim": "8bitWin", "heroScreenLoopAnim": "8bitWinloop", "signatureAnim": "8bitWin", "enterAnim": "8bitIdle", "profileAnim": "8bitProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "8bitClassicFace", "walkFace": "8bitClassicFace", "happyFace": "8bitClassicFace", "happyLoopFace": "8bitClassicFace", "sadFace": "8bitLose", "sadLoopFace": "8bitLooseloop", "heroScreenIdleFace": "8bitClassicFace", "heroScreenFace": "8bitClassicFace", "heroScreenLoopFace": "8bitClassicFace", "signatureFace": null, "profileFace": "8bitClassicFace", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "NinjaShark", "character": "Ninja", "model": "shark_leon_geo.scw", "cameraModel": "leon_base_cam.scw", "idleAnim": "LeonIdle", "walkAnim": "LeonWalk", "primarySkillAnim": "LeonAttack", "secondarySkillAnim": "LeonSecondary", "primarySkillRecoilAnim": "LeonRecoil", "primarySkillRecoilAnim2": "LeonRecoil2", "secondarySkillRecoilAnim": "LeonRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "LeonReload", "pushbackAnim": "LeonPushback", "happyAnim": "LeonWin", "happyLoopAnim": "LeonWinloop", "sadAnim": "LeonLose", "sadLoopAnim": "LeonLoseloop", "heroScreenIdleAnim": "LeonIdle", "heroScreenAnim": "LeonWin", "heroScreenLoopAnim": "LeonWinloop", "signatureAnim": "LeonWin", "enterAnim": "LeonIdle", "profileAnim": "LeonProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "LeonIdle", "walkFace": "LeonIdle", "happyFace": "LeonWin", "happyLoopFace": "LeonWinLoop", "sadFace": "LeonLose", "sadLoopFace": "LeonLoseLoop", "heroScreenIdleFace": "LeonIdle", "heroScreenFace": "LeonWin", "heroScreenLoopFace": "LeonWinLoop", "signatureFace": "LeonIdle", "profileFace": "LeonIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BlackHoleBlue", "character": "BlackHole", "model": "tara_blue_geo.scw", "cameraModel": "tara_base_cam.scw", "idleAnim": "TaraIdle", "walkAnim": "TaraWalk", "primarySkillAnim": "TaraPrimary", "secondarySkillAnim": "TaraSecondary", "primarySkillRecoilAnim": "TaraRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "TaraSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "TaraReload", "pushbackAnim": "TaraIdle", "happyAnim": "TaraWin", "happyLoopAnim": "TaraWinloop", "sadAnim": "TaraLose", "sadLoopAnim": "TaraLoseloop", "heroScreenIdleAnim": "TaraIdle", "heroScreenAnim": "TaraWin", "heroScreenLoopAnim": "TaraWinloop", "signatureAnim": "TaraWin", "enterAnim": "TaraIdle", "profileAnim": "TaraProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "TaraFaceIdle", "walkFace": "TaraFaceIdle", "happyFace": "TaraFaceWin", "happyLoopFace": "TaraFaceWinLoop", "sadFace": "TaraFaceLose", "sadLoopFace": "TaraFaceLoseloop", "heroScreenIdleFace": "TaraFaceIdle", "heroScreenFace": "TaraFaceIdle", "heroScreenLoopFace": "TaraFaceIdle", "signatureFace": "TaraFaceIdle", "profileFace": "TaraFaceIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": true, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "LootBoxMoonFestival", "character": null, "model": "crate_powerup_moon_festival.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "SandstormDefault", "character": "Sandstorm", "model": "sandy_geo.scw", "cameraModel": "sandy_base_cam.scw", "idleAnim": "SandyIdle", "walkAnim": "SandyWalk", "primarySkillAnim": "SandyAttack", "secondarySkillAnim": "SandyAttack", "primarySkillRecoilAnim": "SandyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SandyRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SandyReload", "pushbackAnim": "SandyPushBack", "happyAnim": "SandyWin", "happyLoopAnim": "SandyWinloop", "sadAnim": "SandyLose", "sadLoopAnim": "SandyLose", "heroScreenIdleAnim": "SandyIdle", "heroScreenAnim": "SandyWin", "heroScreenLoopAnim": "SandyWinloop", "signatureAnim": "SandyWin", "enterAnim": "SandyIdle", "profileAnim": "SandyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "SandyIdle", "walkFace": "SandyWalk", "happyFace": "SandyWin", "happyLoopFace": "SandyWinloop", "sadFace": "SandyWinloop", "sadLoopFace": "SandyWinloop", "heroScreenIdleFace": "SandyIdle", "heroScreenFace": "SandyWin", "heroScreenLoopFace": "SandyWinloop", "signatureFace": "SandyIdle", "profileFace": "SandyProfile", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BeeSniperDefault", "character": "BeeSniper", "model": "bea_geo.scw", "cameraModel": "bea_portrait.scw", "idleAnim": "BeaIdle", "walkAnim": "BeaWalk", "primarySkillAnim": "BeaAttack", "secondarySkillAnim": "BeaAttack", "primarySkillRecoilAnim": "BeaRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BeaRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BeaReload", "pushbackAnim": "BeaPushback", "happyAnim": "BeaWin", "happyLoopAnim": "BeaWinloop", "sadAnim": "BeaLose", "sadLoopAnim": "BeaLoseloop", "heroScreenIdleAnim": "BeaIdle", "heroScreenAnim": "BeaWin", "heroScreenLoopAnim": "BeaWinloop", "signatureAnim": "BeaWin", "enterAnim": "BeaIdle", "profileAnim": "BeaPortrait", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "BeaIdle", "walkFace": null, "happyFace": "BeaHappy", "happyLoopFace": "BeaIdle", "sadFace": "BeaLose", "sadLoopFace": "BeaLoseloop", "heroScreenIdleFace": "BeaIdle", "heroScreenFace": "BeaHappy", "heroScreenLoopFace": "BeaIdle", "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": "bea_def_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": "bea_def_atk_charged"}, {"name": "BossRaceBossDefault", "character": null, "model": "bossbot_geo.scw:body+head+hands", "cameraModel": "portrait_cam.scw", "idleAnim": "BossBotIdle", "walkAnim": "BossBotWalk", "primarySkillAnim": "BossBotIdle", "secondarySkillAnim": "BossBotIdle", "primarySkillRecoilAnim": "BossBotIdle", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BossBotIdle", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "BossBotPushback", "happyAnim": "BossBotWin", "happyLoopAnim": "BossBotWinloop", "sadAnim": "BossBotLose", "sadLoopAnim": "BossBotLoseloop", "heroScreenIdleAnim": "BossBotIdle", "heroScreenAnim": "BossBotWin", "heroScreenLoopAnim": "BossBotWinloop", "signatureAnim": "BossBotWin", "enterAnim": "BossBotIdle", "profileAnim": "BossBotIdle", "bossAutoAttackAnim": "BossBotIdle", "bossAutoAttackRecoilAnim": "BossBotRecoil", "bossAutoAttackRecoilAnim2": "BossBotRecoil2", "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BarkeepWizardRed", "character": "Barkeep", "model": "barley_wizard_geo.scw", "cameraModel": "barley_wizard_cam.scw", "idleAnim": "BarkeepWizardIdle", "walkAnim": "BarkeepWizardWalk", "primarySkillAnim": "BarkeepWizardPrimary", "secondarySkillAnim": "BarkeepWizardSecondary", "primarySkillRecoilAnim": "BarkeepWizardRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BarkeepWizardRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BarkeepWizardReload", "pushbackAnim": "BarkeepWizardPushback", "happyAnim": "BarkeepWizardWin", "happyLoopAnim": "BarkeepWizardWinloop", "sadAnim": "BarkeepWizardLose", "sadLoopAnim": "BarkeepWizardLoseloop", "heroScreenIdleAnim": "BarkeepWizardIdle", "heroScreenAnim": "BarkeepWizardWin", "heroScreenLoopAnim": "BarkeepWizardWinloop", "signatureAnim": "BarkeepWizardWin", "enterAnim": "BarkeepWizardIdle", "profileAnim": "BarkeepWizardProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Barley002Projectile", "ultiProjectile": "Barley002UltiProjectile", "mainAttackEffect": "barkeep_wizard_attack", "ultiAttackEffect": "barkeep_wizard_attack_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "HookPirate", "character": "HookDude", "model": "gene_pirate_geo.scw", "cameraModel": "gene_base_cam.scw", "idleAnim": "GenePirateIdle", "walkAnim": "GenePirateWalk", "primarySkillAnim": "GenePirateAttack", "secondarySkillAnim": "GenePirateSecondary", "primarySkillRecoilAnim": "GenePirateAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "GenePirateSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "GenePirateReload", "pushbackAnim": "GenePushback", "happyAnim": "GenePirateWin", "happyLoopAnim": "GenePirateWinloop", "sadAnim": "GenePirateLose", "sadLoopAnim": "GenePirateLoseloop", "heroScreenIdleAnim": "GenePirateIdle", "heroScreenAnim": "GenePirateWin", "heroScreenLoopAnim": "GenePirateWinloop", "signatureAnim": "GenePirateWin", "enterAnim": "GenePirateIdle", "profileAnim": "GeneProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "Sandstormsleepy", "character": "Sandstorm", "model": "sleepy_sandy.scw", "cameraModel": "sandy_base_cam.scw", "idleAnim": "SandyIdle", "walkAnim": "SandyWalk", "primarySkillAnim": "SandyAttack", "secondarySkillAnim": "SandyAttack", "primarySkillRecoilAnim": "SandyRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SandyRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SandyReload", "pushbackAnim": "SandyPushBack", "happyAnim": "SandyWin", "happyLoopAnim": "SandyWinloop", "sadAnim": "SandyLose", "sadLoopAnim": "SandyLose", "heroScreenIdleAnim": "SandyIdle", "heroScreenAnim": "SandyWin", "heroScreenLoopAnim": "SandyWinloop", "signatureAnim": "SandyWin", "enterAnim": "SandyIdle", "profileAnim": "SandyProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "SandyIdle", "walkFace": "SandyWalk", "happyFace": "SandyWin", "happyLoopFace": "SandyWinloop", "sadFace": "SandyWinloop", "sadLoopFace": "SandyWinloop", "heroScreenIdleFace": "SandyIdle", "heroScreenFace": "SandyWin", "heroScreenLoopFace": "SandyWinloop", "signatureFace": "SandyIdle", "profileFace": "SandyProfile", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MummyDefault", "character": "Mummy", "model": "emz_geo.scw", "cameraModel": "emz_base_cam.scw", "idleAnim": "EmzIdle", "walkAnim": "EmzWalk", "primarySkillAnim": "EmzPrimary", "secondarySkillAnim": "EmzPrimary", "primarySkillRecoilAnim": "EmzRecoil", "primarySkillRecoilAnim2": "EmzSecondary", "secondarySkillRecoilAnim": "EmzRecoil", "secondarySkillRecoilAnim2": "EmzSecondaryRecoil", "reloadingAnim": "EmzReload", "pushbackAnim": "EmzPushback", "happyAnim": "EmzWin", "happyLoopAnim": "EmzWinloop", "sadAnim": "EmzLose", "sadLoopAnim": "EmzLoseloop", "heroScreenIdleAnim": "EmzIdle", "heroScreenAnim": "EmzWin", "heroScreenLoopAnim": "EmzWinloop", "signatureAnim": "EmzWin", "enterAnim": "EmzIdle", "profileAnim": "EmzProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "EmzIdle", "walkFace": "EmzFront", "happyFace": "EmzWin", "happyLoopFace": "EmzWinLoop", "sadFace": "EmzLose", "sadLoopFace": "EmzLoseLoop", "heroScreenIdleFace": "EmzIdle", "heroScreenFace": "EmzWin", "heroScreenLoopFace": "EmzWinLoop", "signatureFace": "EmzIdle", "profileFace": "EmzFront", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "Sniperrose", "character": "Sniper", "model": "piper_rose_geo.scw", "cameraModel": "piper_portrait.scw", "idleAnim": "SniperIdle", "walkAnim": "SniperWalk", "primarySkillAnim": "SniperAttack", "secondarySkillAnim": "SniperSecondary", "primarySkillRecoilAnim": "SniperRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SniperRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SniperReload", "pushbackAnim": "SniperPushback", "happyAnim": "SniperWin", "happyLoopAnim": "SniperWinloop", "sadAnim": "SniperLose", "sadLoopAnim": "SniperLoseloop", "heroScreenIdleAnim": "SniperIdle", "heroScreenAnim": "SniperWin", "heroScreenLoopAnim": "SniperWinloop", "signatureAnim": "SniperWin", "enterAnim": "SniperIdle", "profileAnim": "SniperProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "PiperRoseIdleOpen", "walkFace": "PiperRoseIdleOpen", "happyFace": "PiperRoseWin", "happyLoopFace": "PiperRoseWinLoop", "sadFace": "PiperRoseIdleClosed", "sadLoopFace": "PiperRoseIdleClosed", "heroScreenIdleFace": "PiperRoseIdleClosed", "heroScreenFace": "PiperRoseWin", "heroScreenLoopFace": "PiperRoseWinLoop", "signatureFace": "PiperRoseIdleClosed", "profileFace": "PiperRoseIdleClosed", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "SpawnerDudeDefault", "character": "SpawnerDude", "model": "brock_hotrod_geo.scw", "cameraModel": "brock_base_cam.scw", "idleAnim": "BrockHotrodIdle", "walkAnim": "BrockHotrodWalk", "primarySkillAnim": "BrockHotrodPrimary", "secondarySkillAnim": "BrockHotrodSecondary", "primarySkillRecoilAnim": "BrockHotrodRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BrockHotrodRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BrockHotrodIdle", "pushbackAnim": "BrockHotrodPushback", "happyAnim": "BrockHotrodWin", "happyLoopAnim": "BrockHotrodWinloop", "sadAnim": "BrockHotrodLose", "sadLoopAnim": "BrockHotrodLoseloop", "heroScreenIdleAnim": "BrockHotrodIdle", "heroScreenAnim": "BrockHotrodWin", "heroScreenLoopAnim": "BrockHotrodWinloop", "signatureAnim": "BrockHotrodIdle", "enterAnim": "BrockHotrodIdle", "profileAnim": "BrockProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": "brock_003_atk", "ultiAttackEffect": "brock_003_atk", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "ShotgunGirlWitch", "character": "ShotgunGirl", "model": "shelly_witch_geo.scw", "cameraModel": "shelly_base_cam.scw", "idleAnim": "ShellyWitchIdle", "walkAnim": "ShellyWitchWalk", "primarySkillAnim": "ShellyWitchPrimarySkill", "secondarySkillAnim": "ShellyWitchPrimarySkill", "primarySkillRecoilAnim": "ShellyWitchRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "ShellyWitchRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "ShellyWitchReload", "pushbackAnim": "ShellyPushback", "happyAnim": "ShellyWitchHappy", "happyLoopAnim": "ShellyWitchHappyLoop", "sadAnim": "ShellyWitchLose", "sadLoopAnim": "ShellyWitchLoseloop", "heroScreenIdleAnim": "ShellyWitchIdle", "heroScreenAnim": "ShellyWitchHappy", "heroScreenLoopAnim": "ShellyWitchHappyLoop", "signatureAnim": "ShellyWitchHappy", "enterAnim": "ShellyWitchHappy", "profileAnim": "ShellyWitchProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": "Shelly003Projectile", "ultiProjectile": "Shelly003UltiProjectile", "mainAttackEffect": "shelly_003_atk", "ultiAttackEffect": "shelly_003_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "MechanicKnightDark", "character": "Mechanic", "model": "jessie_knight_geo.scw", "cameraModel": "jessie_base_cam.scw", "idleAnim": "JunkerKnightDarkIdle", "walkAnim": "JunkerKnightWalk", "primarySkillAnim": "JunkerKnightDarkPrimary", "secondarySkillAnim": "JunkerKnightDarkUltiAttack", "primarySkillRecoilAnim": "JunkerKnightDarkRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "JunkerKnightDarkUltiRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "JunkerKnightDarkReload", "pushbackAnim": "JunkerKnightDarkPushback", "happyAnim": "JunkerKnightDarkBattleWin", "happyLoopAnim": "JunkerKnightDarkBattleWinloop", "sadAnim": "JunkerKnightDarkLose", "sadLoopAnim": "JunkerKnightDarkLoseloop", "heroScreenIdleAnim": "JunkerKnightDarkWinloop", "heroScreenAnim": "JunkerKnightDarkWin", "heroScreenLoopAnim": "JunkerKnightDarkWinloop", "signatureAnim": "JunkerKnightDarkBattleWin", "enterAnim": "JunkerKnightDarkIdle", "profileAnim": "JunkerKnightDarkPortrait", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "JunkerKnightDarkIdle", "walkFace": "JunkerKnightDarkIdle", "happyFace": "JunkerKnightDarkIdle", "happyLoopFace": "JunkerKnightDarkIdle", "sadFace": "JunkerDreamyFace", "sadLoopFace": "JunkerDreamyFace", "heroScreenIdleFace": "JunkerKnightDarkIdle", "heroScreenFace": "JunkerKnightDarkIdle", "heroScreenLoopFace": "JunkerKnightDarkIdle", "signatureFace": "JunkerKnightDarkIdle", "profileFace": "JunkerKnightDarkStill", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": true, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Jessie004Projectile1", "ultiProjectile": "Jessie004UltiProjectile", "mainAttackEffect": "jessie_003_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TurretDragonDark", "character": "MechanicTurret", "model": "turret_dragon_geo.scw", "cameraModel": "portrait_cam.scw", "idleAnim": "Turret", "walkAnim": "Turret", "primarySkillAnim": "Turret", "secondarySkillAnim": "Turret", "primarySkillRecoilAnim": "TurretAttack", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "Turret", "secondarySkillRecoilAnim2": null, "reloadingAnim": "Turret", "pushbackAnim": "TurretIdle", "happyAnim": "TurretSpawn", "happyLoopAnim": "TurretIdle", "sadAnim": null, "sadLoopAnim": "TurretIdle", "heroScreenIdleAnim": "TurretWinloop", "heroScreenAnim": "TurretWin", "heroScreenLoopAnim": "TurretWinloop", "signatureAnim": null, "enterAnim": "TurretIdle", "profileAnim": "Turret", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": "jessie_004_turret_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": "JessieTurret004Projectile", "projectileForShockyStarPower": "Turret004Proj", "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "HammerDudeDJ", "character": "HammerDude", "model": "frank_dj_geo.scw", "cameraModel": "frank_base_cam.scw", "idleAnim": "FrankIdle", "walkAnim": "FrankWalk", "primarySkillAnim": "FrankPrimary", "secondarySkillAnim": "FrankSecondary", "primarySkillRecoilAnim": "FrankRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "FrankRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "FrankReloading", "pushbackAnim": "FrankPushback", "happyAnim": "FrankWin", "happyLoopAnim": "FrankWinloop", "sadAnim": "FrankLose", "sadLoopAnim": "FrankLoseloop", "heroScreenIdleAnim": "FrankIdle", "heroScreenAnim": "FrankWin", "heroScreenLoopAnim": "FrankWinloop", "signatureAnim": "FrankWin", "enterAnim": "FrankIdle", "profileAnim": "FrankProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "FrankDJIdle", "walkFace": "FrankDJIdle", "happyFace": "FrankDJWin", "happyLoopFace": "FrankDJWinLoop", "sadFace": "FrankDJIdle", "sadLoopFace": "FrankDJIdle", "heroScreenIdleFace": "FrankDJIdle", "heroScreenFace": "FrankDJIdle", "heroScreenLoopFace": "FrankDJIdle", "signatureFace": "FrankDJIdle", "profileFace": "FrankDJIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "NinjaWolf", "character": "Ninja", "model": "leon_wolf_geo.scw", "cameraModel": "leon_wolf_portrait.scw", "idleAnim": "LeonWolfIdle", "walkAnim": "LeonWolfWalk", "primarySkillAnim": "LeonWolfAttack", "secondarySkillAnim": "LeonWolfSecondary", "primarySkillRecoilAnim": "LeonWolfRecoil", "primarySkillRecoilAnim2": "LeonWolfRecoil2", "secondarySkillRecoilAnim": "LeonWolfRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "LeonWolfReload", "pushbackAnim": "LeonWolfPushBack", "happyAnim": "LeonWolfWin", "happyLoopAnim": "LeonWolfHappyLoop", "sadAnim": "LeonWolfLose", "sadLoopAnim": "LeonWolfLoseLoop", "heroScreenIdleAnim": "LeonWolfIdle", "heroScreenAnim": "LeonWolfWin", "heroScreenLoopAnim": "LeonWolfHappyLoop", "signatureAnim": "LeonWolfWin", "enterAnim": "LeonWolfIdle", "profileAnim": "LeonWolfProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "LeonWolfIdle", "walkFace": "LeonWolfIdle", "happyFace": "LeonWolfWin", "happyLoopFace": "LeonWolfIdle", "sadFace": "LeonWolfIdle", "sadLoopFace": "LeonWolfIdle", "heroScreenIdleFace": "LeonWolfIdle", "heroScreenFace": "LeonWolfWin", "heroScreenLoopFace": "LeonWolfIdle", "signatureFace": "LeonIdle", "profileFace": "LeonWolfIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Leon002Projectile", "ultiProjectile": null, "mainAttackEffect": "leon_002_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": "Leon_wolf_ulti_vo", "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "SpeedyDefault", "character": "Speedy", "model": "max_geo.scw", "cameraModel": "max_portrait.scw", "idleAnim": "MaxIdle", "walkAnim": "MaxWalk", "primarySkillAnim": "MaxPrimary", "secondarySkillAnim": "MaxSecondary", "primarySkillRecoilAnim": "MaxRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "MaxSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "MaxReload", "pushbackAnim": "MaxPushback", "happyAnim": "MaxWin", "happyLoopAnim": "MaxWinloop", "sadAnim": "MaxLose", "sadLoopAnim": "MaxLoseloop", "heroScreenIdleAnim": "MaxIdle", "heroScreenAnim": "MaxWin", "heroScreenLoopAnim": "MaxWinloop", "signatureAnim": "MaxWin", "enterAnim": "MaxIdle", "profileAnim": "MaxPortrait", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "MaxIdle", "walkFace": "MaxIdle", "happyFace": "MaxIdle", "happyLoopFace": "MaxIdle", "sadFace": "MaxLose", "sadLoopFace": "MaxLoseloop", "heroScreenIdleFace": "MaxIdle", "heroScreenFace": "MaxIdle", "heroScreenLoopFace": "MaxIdle", "signatureFace": null, "profileFace": "MaxIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": "max_def_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "LuchadorBrown", "character": "Luchador", "model": "primo_brown_geo.scw", "cameraModel": "primo_brown_portrait.scw", "idleAnim": "LuchadorBrownIdle", "walkAnim": "LuchadorBrownWalk", "primarySkillAnim": "LuchadorBrownPrimary", "secondarySkillAnim": "LuchadorBrownSecondary", "primarySkillRecoilAnim": "LuchadorBrownRecoil1", "primarySkillRecoilAnim2": "LuchadorBrownRecoil2", "secondarySkillRecoilAnim": "LuchadorBrownRecoil1", "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": "LuchadorBrownPushback", "happyAnim": "LuchadorBrownWin", "happyLoopAnim": "LuchadorBrownWinloop", "sadAnim": "LuchadorBrownLose", "sadLoopAnim": "LuchadorBrownLoseloop", "heroScreenIdleAnim": "LuchadorBrownIdle", "heroScreenAnim": "LuchadorBrownWin", "heroScreenLoopAnim": "LuchadorBrownWinloop", "signatureAnim": "LuchadorBrownWin", "enterAnim": "LuchadorBrownIdle", "profileAnim": "LuchadorBrownProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "BrownIdle", "walkFace": "BrownIdle", "happyFace": "BrownWin", "happyLoopFace": "BrownWinLoop", "sadFace": "BrownLose", "sadLoopFace": "BrownLoseLoop", "heroScreenIdleFace": "BrownIdle", "heroScreenFace": "BrownHS", "heroScreenLoopFace": "BrownIdle", "signatureFace": "BrownIdle", "profileFace": "BrownIdle", "happyEffect": "primo_003_win", "sadEffect": "primo_003_lose", "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Primo003Projectile", "ultiProjectile": null, "mainAttackEffect": "primo_003_atk_use", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": "primo_003_ulti_trail", "ultiEndEffect": "primo_003_ulti_ground_hit", "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": "LL_Kill", "inLeadCelebrationSoundVO": "No_vo", "startSoundVO": "LL_Start", "useUltiSoundVO": "No_vo", "takeDamageSoundVO": "LL_Hurt", "deathSoundVO": "LL_Die", "attackSoundVO": "No_vo", "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "HomerDefault", "character": "Homer", "model": "spike_geo.scw", "cameraModel": "spike_base_cam.scw", "idleAnim": "SpikeIdle", "walkAnim": "SpikeWalk", "primarySkillAnim": "SpikePrimary", "secondarySkillAnim": "SpikeSecondary", "primarySkillRecoilAnim": "SpikeRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "SpikeRecoil2", "secondarySkillRecoilAnim2": null, "reloadingAnim": "SpikeReload", "pushbackAnim": "SpikeIdle", "happyAnim": "SpikeWin", "happyLoopAnim": "SpikeWinloop", "sadAnim": "SpikeLose", "sadLoopAnim": "SpikeLoseloop", "heroScreenIdleAnim": "SpikeIdle", "heroScreenAnim": "SpikeWin", "heroScreenLoopAnim": "SpikeWinloop", "signatureAnim": "SpikeWin", "enterAnim": "SpikeIdle", "profileAnim": "SpikeProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TrickshotDudeTotal", "character": "TrickshotDude", "model": "rico_og_geo.scw", "cameraModel": "rico_base_cam.scw", "idleAnim": "RicoIdle", "walkAnim": "RicoWalk", "primarySkillAnim": "RicoPrimary", "secondarySkillAnim": "RicoSecondary", "primarySkillRecoilAnim": "RicoRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "RicoRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "RicoReload", "pushbackAnim": "RicoPushback", "happyAnim": "RicoWin", "happyLoopAnim": "RicoWinloop", "sadAnim": "RicoLose", "sadLoopAnim": "RicoLoseloop", "heroScreenIdleAnim": "RicoIdle", "heroScreenAnim": "RicoWin", "heroScreenLoopAnim": "RicoWinloop", "signatureAnim": "RicoWin", "enterAnim": "RicoIdle", "profileAnim": "RicoProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "NinjaSally", "character": "Ninja", "model": "leon_sally_geo.scw", "cameraModel": "leon_base_cam.scw", "idleAnim": "LeonIdle", "walkAnim": "LeonWalk", "primarySkillAnim": "LeonAttack", "secondarySkillAnim": "LeonSecondary", "primarySkillRecoilAnim": "LeonRecoil", "primarySkillRecoilAnim2": "LeonRecoil2", "secondarySkillRecoilAnim": "LeonRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "LeonReload", "pushbackAnim": "LeonPushback", "happyAnim": "LeonSallyWin", "happyLoopAnim": "LeonSallyWinloop", "sadAnim": "LeonLose", "sadLoopAnim": "LeonLoseloop", "heroScreenIdleAnim": "LeonIdle", "heroScreenAnim": "LeonSallyWin", "heroScreenLoopAnim": "LeonSallyWinloop", "signatureAnim": "LeonSallyWin", "enterAnim": "LeonIdle", "profileAnim": "LeonProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "LeonIdle", "walkFace": "LeonIdle", "happyFace": "LeonWin", "happyLoopFace": "LeonWinLoop", "sadFace": "LeonLose", "sadLoopFace": "LeonLoseLoop", "heroScreenIdleFace": "LeonIdle", "heroScreenFace": "LeonWin", "heroScreenLoopFace": "LeonWinLoop", "signatureFace": "LeonIdle", "profileFace": "LeonIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Leon003Projectile", "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": "leon_003_atk", "ultiUseEffect": "leon_003_ulti", "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "WhirlwindLeonard", "character": "Whirlwind", "model": "carl_leonard_geo.scw", "cameraModel": "carl_leonard_cam.scw", "idleAnim": "CarlIdle", "walkAnim": "CarlWalk", "primarySkillAnim": "CarlAttack", "secondarySkillAnim": "CarlSecondary", "primarySkillRecoilAnim": "CarlAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CarlSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CarlReload", "pushbackAnim": "CarlIdle", "happyAnim": "CarlWin", "happyLoopAnim": "CarlWinloop", "sadAnim": "CarlLose", "sadLoopAnim": "CarlLoseloop", "heroScreenIdleAnim": "CarlIdle", "heroScreenAnim": "CarlWin", "heroScreenLoopAnim": "CarlWinloop", "signatureAnim": "CarlWin", "enterAnim": "CarlIdle", "profileAnim": "CarlProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CarlLeonardIdle", "walkFace": "CarlLeonardIdle", "happyFace": "CarlLeonardHappy", "happyLoopFace": "CarlLeonardIdle", "sadFace": "CarlLeonardSad", "sadLoopFace": "CarlLeonardSadLoop", "heroScreenIdleFace": "CarlLeonardIdle", "heroScreenFace": "CarlLeonardIdle", "heroScreenLoopFace": "CarlLeonardIdle", "signatureFace": "CarlLeonardIdle", "profileFace": "CarlLeonardIdle", "happyEffect": null, "sadEffect": "carl_004_lose", "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Carl004Projectile", "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": "carl_004_atk", "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "TntDudeSantaRope", "character": null, "model": "dynamike_santa_rope_geo.scw", "cameraModel": "dynamike_base_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "WhirlwindPirate", "character": "Whirlwind", "model": "carl_pirate_geo.scw", "cameraModel": "carl_base_cam.scw", "idleAnim": "CarlPirateIdle", "walkAnim": "CarlPirateWalk", "primarySkillAnim": "CarlPirateAttack", "secondarySkillAnim": "CarlPirateSecondary", "primarySkillRecoilAnim": "CarlPirateAttackRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "CarlPirateSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "CarlPirateReload", "pushbackAnim": "CarlPiratePushback", "happyAnim": "CarlPirateWin", "happyLoopAnim": "CarlPirateWinloop", "sadAnim": "CarlPirateLose", "sadLoopAnim": "CarlPirateLoseloop", "heroScreenIdleAnim": "CarlPirateIdle", "heroScreenAnim": "CarlPirateWin", "heroScreenLoopAnim": "CarlPirateWinloop", "signatureAnim": "CarlPirateWin", "enterAnim": "CarlPirateIdle", "profileAnim": "CarlPirateProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "CarlPirateIdle", "walkFace": "CarlPirateIdle", "happyFace": "CarlPirateIdle", "happyLoopFace": "CarlPirateIdle", "sadFace": "CarlPirateAngry", "sadLoopFace": "CarlPirateAngryloop", "heroScreenIdleFace": "CarlPirateIdle", "heroScreenFace": "CarlPirateIdle", "heroScreenLoopFace": "CarlPirateIdle", "signatureFace": "CarlPirateIdle", "profileFace": "CarlPirateProfile", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Carl005Projectile", "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": "carl_005_ulti_ground", "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": "carl_005_moving", "stillEffect": "carl_005_still", "chargedShotEffect": null}, {"name": "GunslingerPirate", "character": "Gunslinger", "model": "colt_pirate_geo.scw", "cameraModel": "colt_base_cam.scw", "idleAnim": "GunslingerPirateIdle", "walkAnim": "GunslingerPirateWalk", "primarySkillAnim": "GunslingerPiratePrimary", "secondarySkillAnim": "GunslingerPiratePrimary", "primarySkillRecoilAnim": "GunslingerPirateRecoil", "primarySkillRecoilAnim2": "GunslingerPirateRecoil2", "secondarySkillRecoilAnim": "GunslingerPirateRecoil", "secondarySkillRecoilAnim2": "GunslingerPirateRecoil2", "reloadingAnim": "GunslingerPirateReload", "pushbackAnim": "GunslingerPiratePushBack", "happyAnim": "GunslingerPirateWin", "happyLoopAnim": "GunslingerPirateWinloop", "sadAnim": "GunslingerPirateLose", "sadLoopAnim": "GunslingerPirateLoseloop", "heroScreenIdleAnim": "GunslingerPirateIdle", "heroScreenAnim": "GunslingerPirateWin", "heroScreenLoopAnim": "GunslingerPirateWinloop", "signatureAnim": "GunslingerPirateWin", "enterAnim": "GunslingerPirateIdle", "profileAnim": "GunslingerPirateProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Colt003Projectile", "ultiProjectile": "Colt003UltiProjectile", "mainAttackEffect": "colt_003_atk", "ultiAttackEffect": "colt_003_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "CtfGift", "character": null, "model": "item_present_red.scw", "cameraModel": "portrait_cam.scw", "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "SpeedyGT", "character": "Speedy", "model": "max_geo.scw", "cameraModel": "max_portrait.scw", "idleAnim": "MaxIdle", "walkAnim": "MaxWalk", "primarySkillAnim": "MaxPrimary", "secondarySkillAnim": "MaxSecondary", "primarySkillRecoilAnim": "MaxRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "MaxSecondaryRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "MaxReload", "pushbackAnim": "MaxPushback", "happyAnim": "MaxWin", "happyLoopAnim": "MaxWinloop", "sadAnim": "MaxLose", "sadLoopAnim": "MaxLoseloop", "heroScreenIdleAnim": "MaxIdle", "heroScreenAnim": "MaxWin", "heroScreenLoopAnim": "MaxWinloop", "signatureAnim": "MaxWin", "enterAnim": "MaxIdle", "profileAnim": "MaxPortrait", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "MaxIdle", "walkFace": "MaxIdle", "happyFace": "MaxIdle", "happyLoopFace": "MaxIdle", "sadFace": "MaxLose", "sadLoopFace": "MaxLoseloop", "heroScreenIdleFace": "MaxIdle", "heroScreenFace": "MaxIdle", "heroScreenLoopFace": "MaxIdle", "signatureFace": null, "profileFace": "MaxIdle", "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": "max_def_atk", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BeeDefault", "character": null, "model": "bee_geo.scw", "cameraModel": null, "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": null, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BeeSniperLadyBug", "character": "BeeSniper", "model": "bea_ladybug_geo.scw", "cameraModel": "bea_portrait.scw", "idleAnim": "BeaIdle", "walkAnim": "BeaWalk", "primarySkillAnim": "BeaAttack", "secondarySkillAnim": "BeaAttack", "primarySkillRecoilAnim": "BeaRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "BeaRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "BeaReload", "pushbackAnim": "BeaPushback", "happyAnim": "BeaWin", "happyLoopAnim": "BeaWinloop", "sadAnim": "BeaLose", "sadLoopAnim": "BeaLoseloop", "heroScreenIdleAnim": "BeaIdle", "heroScreenAnim": "BeaWin", "heroScreenLoopAnim": "BeaWinloop", "signatureAnim": "BeaWin", "enterAnim": "BeaIdle", "profileAnim": "BeaPortrait", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": "BeaIdle", "walkFace": null, "happyFace": "BeaHappy", "happyLoopFace": "BeaIdle", "sadFace": "BeaLose", "sadLoopFace": "BeaLoseloop", "heroScreenIdleFace": "BeaIdle", "heroScreenFace": "BeaHappy", "heroScreenLoopFace": "BeaIdle", "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": true, "ultiLocksAttackAngle": true, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": "bea_def_ulti", "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": "bea_def_atk_charged"}, {"name": "PocoPirate", "character": "DeadMariachi", "model": "poco_pirate_geo.scw", "cameraModel": "poco_base_cam.scw", "idleAnim": "PocoPirateIdle", "walkAnim": "PocoPirateWalk", "primarySkillAnim": "PocoAttack", "secondarySkillAnim": "PocoSecondary", "primarySkillRecoilAnim": "PocoRecoil", "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": "PocoRecoil", "secondarySkillRecoilAnim2": null, "reloadingAnim": "PocoReload", "pushbackAnim": "PocoPushback", "happyAnim": "PocoPirateHappy", "happyLoopAnim": "PocoPirateHappyLoop", "sadAnim": "PocoPirateLose", "sadLoopAnim": "PocoPirateLoseloop", "heroScreenIdleAnim": "PocoPirateIdle", "heroScreenAnim": "PocoPirateHappy", "heroScreenLoopAnim": "PocoPirateHappyLoop", "signatureAnim": "PocoPirateHappy", "enterAnim": "PocoPirateIdle", "profileAnim": "PocoPirateProfile", "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": 100, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": "Poco003Projectile", "ultiProjectile": "Poco003UltiProjectile", "mainAttackEffect": "poco_003_atk_direct", "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": "poco_003_atk_root", "ultiUseEffect": "poco_003_atk_root", "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}, {"name": "BeeLadyBug", "character": null, "model": "bee_ladybug_geo.scw", "cameraModel": null, "idleAnim": null, "walkAnim": null, "primarySkillAnim": null, "secondarySkillAnim": null, "primarySkillRecoilAnim": null, "primarySkillRecoilAnim2": null, "secondarySkillRecoilAnim": null, "secondarySkillRecoilAnim2": null, "reloadingAnim": null, "pushbackAnim": null, "happyAnim": null, "happyLoopAnim": null, "sadAnim": null, "sadLoopAnim": null, "heroScreenIdleAnim": null, "heroScreenAnim": null, "heroScreenLoopAnim": null, "signatureAnim": null, "enterAnim": null, "profileAnim": null, "bossAutoAttackAnim": null, "bossAutoAttackRecoilAnim": null, "bossAutoAttackRecoilAnim2": null, "idleFace": null, "walkFace": null, "happyFace": null, "happyLoopFace": null, "sadFace": null, "sadLoopFace": null, "heroScreenIdleFace": null, "heroScreenFace": null, "heroScreenLoopFace": null, "signatureFace": null, "profileFace": null, "happyEffect": null, "sadEffect": null, "headRotationIngame": null, "hatScaleIngame": null, "petInSameSprite": null, "attackLocksAttackAngle": null, "ultiLocksAttackAngle": null, "mainAttackProjectile": null, "ultiProjectile": null, "mainAttackEffect": null, "ultiAttackEffect": null, "useBlueTextureInMenus": null, "mainAttackUseEffect": null, "ultiUseEffect": null, "ultiEndEffect": null, "meleeHitEffect": null, "spawnEffect": null, "ultiLoopEffect": null, "ultiLoopEffect2": null, "spawnedItem": null, "killCelebrationSoundVO": null, "inLeadCelebrationSoundVO": null, "startSoundVO": null, "useUltiSoundVO": null, "takeDamageSoundVO": null, "deathSoundVO": null, "attackSoundVO": null, "boneEffect1": null, "boneEffect2": null, "boneEffect3": null, "boneEffect4": null, "boneEffectUse": null, "autoAttackProjectile": null, "projectileForShockyStarPower": null, "incendiaryStarPowerAreaEffect": null, "moveEffect": null, "stillEffect": null, "chargedShotEffect": null}], "themes": [{"name": "Default", "fileName": "sc/background_basic.sc", "exportName": "bgr", "particleFileName": "sc/ui.sc", "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "MenuMusic", "useInLevelSelection": true}, {"name": "Winter", "fileName": "sc/background_basic.sc", "exportName": "bgr", "particleFileName": "sc/ui.sc", "particleExportName": "particle_snow_", "particleStyle": "Snow", "particleVariations": 2, "themeMusic": "Snow_brawl", "useInLevelSelection": true}, {"name": "LNY", "fileName": "sc/background_lny.sc", "exportName": "bgr_cny", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "Cnymenu_music", "useInLevelSelection": true}, {"name": "CR", "fileName": "sc/background_basic.sc", "exportName": "bgr_royale", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "Brawl_royale_menu_music", "useInLevelSelection": true}, {"name": "Easter", "fileName": "sc/background_basic.sc", "exportName": "bgr", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "MenuMusic", "useInLevelSelection": true}, {"name": "GoldenWeek", "fileName": "sc/background_golden_week.sc", "exportName": "bgr_golden_week", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "Brawl_dawgs_menu", "useInLevelSelection": true}, {"name": "Retropolis", "fileName": "sc/background_retropolis.sc", "exportName": "bgr_retropolis", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "Retropolis_menu", "useInLevelSelection": true}, {"name": "Mecha", "fileName": "sc/background_mecha.sc", "exportName": "bgr_mecha", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "MechMenuMusic", "useInLevelSelection": true}, {"name": "Halloween", "fileName": "sc/background_brawloween.sc", "exportName": "bgr_brawloween", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "Halloween_menu", "useInLevelSelection": true}, {"name": "Brawlidays", "fileName": "sc/background_brawlidays.sc", "exportName": "bgr_brawlidays", "particleFileName": null, "particleExportName": null, "particleStyle": null, "particleVariations": null, "themeMusic": "Xmas_Pirate_Menu", "useInLevelSelection": true}], "tiles": [{"name": "Open", "tileCode": ".", "blocksMovement": null, "blocksProjectiles": null, "isDestructible": null, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": null, "baseExplosionEffect": null, "baseHitEffect": null, "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": null, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 27}, {"name": "Blocking1", "tileCode": "M", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "blocking1", "baseExplosionEffect": "Rock_explo_fx", "baseHitEffect": "Rock_hit_fx", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 28}, {"name": "Blocking2", "tileCode": "X", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "blocking2", "baseExplosionEffect": "blocking2_explosion", "baseHitEffect": "blocking2_hit", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": -1, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 29}, {"name": "Blocking3", "tileCode": "Y", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "blocking3", "baseExplosionEffect": "crate_explosion", "baseHitEffect": "crate_hit", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 30}, {"name": "Blocking4", "tileCode": "C", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "blocking4", "baseExplosionEffect": "barrel_explosion", "baseHitEffect": "barrel_hit", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 31}, {"name": "DecoDestructible", "tileCode": "D", "blocksMovement": null, "blocksProjectiles": null, "isDestructible": null, "isDestructibleNormalWeapon": true, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "destructable", "baseExplosionEffect": null, "baseHitEffect": null, "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 32}, {"name": "Indestructible", "tileCode": "I", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": null, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "indestructible", "baseExplosionEffect": null, "baseHitEffect": "Solid_hit_fx", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": 1, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 33}, {"name": "Forest", "tileCode": "F", "blocksMovement": null, "blocksProjectiles": null, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": true, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "forest", "baseExplosionEffect": "Grass_explo_fx_yellow", "baseHitEffect": "Grass_hit_fx_yellow", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": -1, "hasHitAnim": true, "hasWindAnim": true, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 34}, {"name": "RespawningForest", "tileCode": "R", "blocksMovement": null, "blocksProjectiles": null, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": true, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "respawningforest", "baseExplosionEffect": "Grass_explo_fx", "baseHitEffect": "Grass_hit_fx", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": -1, "hasHitAnim": true, "hasWindAnim": true, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 35}, {"name": "Water", "tileCode": "W", "blocksMovement": true, "blocksProjectiles": null, "isDestructible": null, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "water_tile", "baseExplosionEffect": null, "baseHitEffect": null, "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": null, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 36}, {"name": "RespawningWall", "tileCode": "T", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "respawningwall", "baseExplosionEffect": "Green_explo_fx", "baseHitEffect": "Green_hit_fx", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": -1, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 37}, {"name": "InvisibleWater", "tileCode": "V", "blocksMovement": true, "blocksProjectiles": null, "isDestructible": null, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": null, "baseExplosionEffect": null, "baseHitEffect": null, "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": null, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 38}, {"name": "BlockingDestroyableWithWeapon", "tileCode": "B", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": true, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "fragile", "baseExplosionEffect": "fragile_explo_debris", "baseHitEffect": null, "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 39}, {"name": "Fence", "tileCode": "N", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "fence_tile", "baseExplosionEffect": "fence_explosion", "baseHitEffect": "fence_hit", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": null, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 30, "shadowSkew": 25, "id": 40}, {"name": "InvisibleIndestructible", "tileCode": "J", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": null, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": null, "baseExplosionEffect": null, "baseHitEffect": null, "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": null, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 41}, {"name": "Bench1", "tileCode": "A", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "bench_tile_1", "baseExplosionEffect": "bench_explosion", "baseHitEffect": "bench_hit", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 42}, {"name": "Bench2", "tileCode": "E", "blocksMovement": true, "blocksProjectiles": true, "isDestructible": true, "isDestructibleNormalWeapon": null, "hidesHero": null, "respawnSeconds": null, "collisionMargin": null, "baseExportName": "bench_tile_2", "baseExplosionEffect": "bench_explosion", "baseHitEffect": "bench_hit", "baseWindEffect": null, "baseBulletHole1": null, "baseBulletHole2": null, "baseCrack1": null, "baseCrack2": null, "sortOffset": null, "hasHitAnim": true, "hasWindAnim": null, "shadowScaleX": 100, "shadowScaleY": 60, "shadowX": -10, "shadowY": 60, "shadowSkew": 25, "id": 43}], "tid": {"LFG_POPUP_TITLE_MEMBER": "LOOK FOR A MEMBER", "LFG_POPUP_TITLE_TEAM": "LOOK FOR A TEAM", "LFG_POPUP_INFO_MEMBER": "Look for players to team up with you", "LFG_POPUP_INFO_TEAM": "Look for a player to join your current team", "LFG_POPUP_EVENT_LABEL_MEMBER": "Event criteria (tap to change)", "LFG_POPUP_EVENT_LABEL_TEAM": "I want to play (tap to change)", "LFG_POPUP_START_SEARCH": "GO!", "LOOKING_FOR_A_TEAM": "LOOKING FOR A TEAM", "LOOKING_FOR_A_MEMBER": "LOOKING FOR A MEMBER", "BRAWLER_WIN_INFO": "Win with this Brawler and you will gain extra Star Token", "BRAWLER_WIN": "Win with ", "BRAWLER_WIN_EXPIRES_IN": "