diff --git a/.github/workflows/dev-image-builder.yml b/.github/workflows/dev-image-builder.yml new file mode 100644 index 00000000..b47c58f7 --- /dev/null +++ b/.github/workflows/dev-image-builder.yml @@ -0,0 +1,49 @@ +name: Dev API Image Builder + +on: + pull_request: + branches: + - master + types: + - opened + - synchronize + - reopened + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GH_TOKEN }} + + - name: Set environment variables + run: | + echo "APP_ENV=development" >> $GITHUB_ENV + echo "IMAGE_NAME=ghcr.io/clashkinginc/clashkingapi-dev" >> $GITHUB_ENV + + - name: Sanitize branch name + id: sanitize + run: echo "SANITIZED_BRANCH=$(echo '${{ github.event.pull_request.head.ref }}' | sed 's/[^a-zA-Z0-9_.-]/-/g')" >> $GITHUB_ENV + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: | + ${{ env.IMAGE_NAME }}:${{ env.SANITIZED_BRANCH }} + ${{ env.IMAGE_NAME }}:latest + build-args: APP_ENV=${{ env.APP_ENV }} + diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 793c76ac..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Image Builder - -on: - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - ref: ${{ github.ref_name }} # Automatically checkout the triggering branch - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GH_TOKEN }} - - - name: Sanitize branch name - id: sanitize - run: echo "SANITIZED_BRANCH=$(echo '${{ github.ref_name }}' | sed 's/[^a-zA-Z0-9_.-]/-/g')" >> $GITHUB_ENV - - - name: Build and push Docker image - uses: docker/build-push-action@v5 - with: - context: . - push: true - tags: | - ghcr.io/clashkinginc/clashkingapi:${{ github.ref_name == 'master' && 'latest' || env.SANITIZED_BRANCH }} \ No newline at end of file diff --git a/.github/workflows/prod-image-builder.yml b/.github/workflows/prod-image-builder.yml new file mode 100644 index 00000000..7b0aa09b --- /dev/null +++ b/.github/workflows/prod-image-builder.yml @@ -0,0 +1,51 @@ +name: Production API Image Builder + +on: + push: + branches: + - master # Trigger only on push to master + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + ref: ${{ github.ref_name }} # Automatically checkout the triggering branch + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GH_TOKEN }} + + - name: Set environment variables + run: | + echo "APP_ENV=production" >> $GITHUB_ENV + echo "IMAGE_NAME=ghcr.io/clashkinginc/clashkingapi" >> $GITHUB_ENV + + - name: Sanitize branch name + id: sanitize + run: echo "SANITIZED_BRANCH=$(echo '${{ github.event.pull_request.head.ref }}' | sed 's/[^a-zA-Z0-9_.-]/-/g')" >> $GITHUB_ENV + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: true + tags: | + ${{ env.IMAGE_NAME }}:latest + ${{ env.IMAGE_NAME }}:${{ github.sha }} + build-args: APP_ENV=${{ env.APP_ENV }} + + - name: Verify pushed images + run: | + echo "Pushed image: ${{ env.IMAGE_NAME }}:latest" + echo "Pushed image: ${{ env.IMAGE_NAME }}:${{ github.sha }}" diff --git a/.gitignore b/.gitignore index 46f82e46..4722b4a0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,9 @@ -# created by virtualenv automatically -.env -*.xml -*.idea -.idea/ -*pycache* -.venv/ \ No newline at end of file +# created by virtualenv automatically +.env +*.xml +*.idea +.idea/ +*pycache* +.venv/ +.claude/* +CLAUDE.md \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index f26c037f..36ca320f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,30 @@ -FROM python:3.11-bookworm - -LABEL org.opencontainers.image.source=https://github.com/ClashKingInc/ClashKingAPI -LABEL org.opencontainers.image.description="Image for the ClashKing API" -LABEL org.opencontainers.image.licenses=MIT - -RUN apt-get update && apt-get install -y libsnappy-dev - -WORKDIR /app - -COPY requirements.txt . - -RUN pip install --no-cache-dir -r requirements.txt - -COPY . . - -EXPOSE 6000 - -CMD ["python", "main.py"] \ No newline at end of file +# Use the official Python 3.11 image +FROM python:3.11-bookworm + +# Metadata labels for the image +LABEL org.opencontainers.image.source="https://github.com/ClashKingInc/ClashKingAPI" +LABEL org.opencontainers.image.description="Image for the ClashKing API" +LABEL org.opencontainers.image.licenses="MIT" + +# Install system dependencies +RUN apt-get update && apt-get install -y libsnappy-dev + +# Set the working directory +WORKDIR /app + +# Copy and install Python dependencies +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +# Copy application files +COPY . . + +# Define the environment variable for auth mode (default to development) +ARG APP_ENV=development +ENV APP_ENV=${APP_ENV} + +# Expose the ports used by different environments +EXPOSE 6000 8073 8010 + +# Dynamically set the correct port based on APP_ENV +CMD ["sh", "-c", "python main.py --port=$( [ \"$APP_ENV\" = \"development\" ] && echo 8073 || ( [ \"$APP_ENV\" = \"local\" ] && echo 8000 || echo 8010 ) )"] diff --git a/README.md b/README.md index a6cc9088..0a48548f 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,38 @@ -# ClashKing API (api.clashk.ing) - -Welcome to the [ClashKing API](https://api.clashk.ing)! This is a public API designed to provide extra & historical **Clash of Clans** data for others. ---- - -## Key -- **Public Access**: No authentication required. -- **No Rate Limits**: Fetch data freely, but please use responsibly. -- **Cloudflare**: Cached & Protected by. -- **Infra**: Backed by three instances with a load balancer. -- **Caching**: Responses are cached for 5 minutes. - -### Respecting Data and Credit -Due to the resource-intensive nature of this data - it requires considerable CPU, Storage, Internet Bandwidth, and in turn cost, please: -1. **Credit the source**: We ask you to credit the ClashKing API where this data is used to ensure clarity and fairness. -2. **No impression of self-collection**: Do not create the impression that your application collects this data independently. - -There is no strict requirement for credit format, but we appreciate a visible mention or link to [ClashKing](https://clashk.ing) in your project. - ---- - -## Collaboration and Standards - -The ClashKing API is open to contributions! You can suggest new features, fixes, or updates. Contributions should follow proper formatting and standards. - ---- - -## Assets - -ClashKing also hosts a public CDN for Clash of Clans assets at **assets.clashk.ing**. These include game icons, images, and other resources. For more details, visit the [ClashKingAssets repository](https://github.com/ClashKingInc/ClashKingAssets). - ---- - -## Notice - -This project is **not affiliated with, endorsed, sponsored, or specifically approved by Supercell**. For more information, see [Supercell’s Fan Content Policy](https://supercell.com/en/fan-content-policy/). - -By using this API, you agree to use it responsibly and in compliance with Supercell’s Terms of Service and Fan Content Policy. +# ClashKing API (api.clashk.ing) + +Welcome to the [ClashKing API](https://api.clashk.ing)! This is a public API designed to provide extra & historical **Clash of Clans** data for others. +--- + +## Key +- **Public Access**: No authentication required. +- **No Rate Limits**: Fetch data freely, but please use responsibly. +- **Cloudflare**: Cached & Protected by. +- **Infra**: Backed by three instances with a load balancer. +- **Caching**: Responses are cached for 5 minutes. + +### Respecting Data and Credit +Due to the resource-intensive nature of this data - it requires considerable CPU, Storage, Internet Bandwidth, and in turn cost, please: +1. **Credit the source**: We ask you to credit the ClashKing API where this data is used to ensure clarity and fairness. +2. **No impression of self-collection**: Do not create the impression that your application collects this data independently. + +There is no strict requirement for credit format, but we appreciate a visible mention or link to [ClashKing](https://clashk.ing) in your project. + +--- + +## Collaboration and Standards + +The ClashKing API is open to contributions! You can suggest new features, fixes, or updates. Contributions should follow proper formatting and standards. + +--- + +## Assets + +ClashKing also hosts a public CDN for Clash of Clans assets at **assets.clashk.ing**. These include game icons, images, and other resources. For more details, visit the [ClashKingAssets repository](https://github.com/ClashKingInc/ClashKingAssets). + +--- + +## Notice + +This project is **not affiliated with, endorsed, sponsored, or specifically approved by Supercell**. For more information, see [Supercell’s Fan Content Policy](https://supercell.com/en/fan-content-policy/). + +By using this API, you agree to use it responsibly and in compliance with Supercell’s Terms of Service and Fan Content Policy. diff --git a/assets/json/builder_league.json b/assets/json/builder_league.json index 7907bd66..dc13fe0c 100644 --- a/assets/json/builder_league.json +++ b/assets/json/builder_league.json @@ -1,172 +1,172 @@ -{ - "items": [ - { - "id": 44000000, - "name": "Wood League V" - }, - { - "id": 44000001, - "name": "Wood League IV" - }, - { - "id": 44000002, - "name": "Wood League III" - }, - { - "id": 44000003, - "name": "Wood League II" - }, - { - "id": 44000004, - "name": "Wood League I" - }, - { - "id": 44000005, - "name": "Clay League V" - }, - { - "id": 44000006, - "name": "Clay League IV" - }, - { - "id": 44000007, - "name": "Clay League III" - }, - { - "id": 44000008, - "name": "Clay League II" - }, - { - "id": 44000009, - "name": "Clay League I" - }, - { - "id": 44000010, - "name": "Stone League V" - }, - { - "id": 44000011, - "name": "Stone League IV" - }, - { - "id": 44000012, - "name": "Stone League III" - }, - { - "id": 44000013, - "name": "Stone League II" - }, - { - "id": 44000014, - "name": "Stone League I" - }, - { - "id": 44000015, - "name": "Copper League V" - }, - { - "id": 44000016, - "name": "Copper League IV" - }, - { - "id": 44000017, - "name": "Copper League III" - }, - { - "id": 44000018, - "name": "Copper League II" - }, - { - "id": 44000019, - "name": "Copper League I" - }, - { - "id": 44000020, - "name": "Brass League III" - }, - { - "id": 44000021, - "name": "Brass League II" - }, - { - "id": 44000022, - "name": "Brass League I" - }, - { - "id": 44000023, - "name": "Iron League III" - }, - { - "id": 44000024, - "name": "Iron League II" - }, - { - "id": 44000025, - "name": "Iron League I" - }, - { - "id": 44000026, - "name": "Steel League III" - }, - { - "id": 44000027, - "name": "Steel League II" - }, - { - "id": 44000028, - "name": "Steel League I" - }, - { - "id": 44000029, - "name": "Titanium League III" - }, - { - "id": 44000030, - "name": "Titanium League II" - }, - { - "id": 44000031, - "name": "Titanium League I" - }, - { - "id": 44000032, - "name": "Platinum League III" - }, - { - "id": 44000033, - "name": "Platinum League II" - }, - { - "id": 44000034, - "name": "Platinum League I" - }, - { - "id": 44000035, - "name": "Emerald League III" - }, - { - "id": 44000036, - "name": "Emerald League II" - }, - { - "id": 44000037, - "name": "Emerald League I" - }, - { - "id": 44000038, - "name": "Ruby League III" - }, - { - "id": 44000039, - "name": "Ruby League II" - }, - { - "id": 44000040, - "name": "Ruby League I" - }, - { - "id": 44000041, - "name": "Diamond League" - } - ] +{ + "items": [ + { + "id": 44000000, + "name": "Wood League V" + }, + { + "id": 44000001, + "name": "Wood League IV" + }, + { + "id": 44000002, + "name": "Wood League III" + }, + { + "id": 44000003, + "name": "Wood League II" + }, + { + "id": 44000004, + "name": "Wood League I" + }, + { + "id": 44000005, + "name": "Clay League V" + }, + { + "id": 44000006, + "name": "Clay League IV" + }, + { + "id": 44000007, + "name": "Clay League III" + }, + { + "id": 44000008, + "name": "Clay League II" + }, + { + "id": 44000009, + "name": "Clay League I" + }, + { + "id": 44000010, + "name": "Stone League V" + }, + { + "id": 44000011, + "name": "Stone League IV" + }, + { + "id": 44000012, + "name": "Stone League III" + }, + { + "id": 44000013, + "name": "Stone League II" + }, + { + "id": 44000014, + "name": "Stone League I" + }, + { + "id": 44000015, + "name": "Copper League V" + }, + { + "id": 44000016, + "name": "Copper League IV" + }, + { + "id": 44000017, + "name": "Copper League III" + }, + { + "id": 44000018, + "name": "Copper League II" + }, + { + "id": 44000019, + "name": "Copper League I" + }, + { + "id": 44000020, + "name": "Brass League III" + }, + { + "id": 44000021, + "name": "Brass League II" + }, + { + "id": 44000022, + "name": "Brass League I" + }, + { + "id": 44000023, + "name": "Iron League III" + }, + { + "id": 44000024, + "name": "Iron League II" + }, + { + "id": 44000025, + "name": "Iron League I" + }, + { + "id": 44000026, + "name": "Steel League III" + }, + { + "id": 44000027, + "name": "Steel League II" + }, + { + "id": 44000028, + "name": "Steel League I" + }, + { + "id": 44000029, + "name": "Titanium League III" + }, + { + "id": 44000030, + "name": "Titanium League II" + }, + { + "id": 44000031, + "name": "Titanium League I" + }, + { + "id": 44000032, + "name": "Platinum League III" + }, + { + "id": 44000033, + "name": "Platinum League II" + }, + { + "id": 44000034, + "name": "Platinum League I" + }, + { + "id": 44000035, + "name": "Emerald League III" + }, + { + "id": 44000036, + "name": "Emerald League II" + }, + { + "id": 44000037, + "name": "Emerald League I" + }, + { + "id": 44000038, + "name": "Ruby League III" + }, + { + "id": 44000039, + "name": "Ruby League II" + }, + { + "id": 44000040, + "name": "Ruby League I" + }, + { + "id": 44000041, + "name": "Diamond League" + } + ] } \ No newline at end of file diff --git a/assets/json/buildings.json b/assets/json/buildings.json index 4f7cde42..3e67a572 100644 --- a/assets/json/buildings.json +++ b/assets/json/buildings.json @@ -1,20344 +1,20344 @@ -{ - "Army Camp": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_HOUSING", - "InfoTID": "TID_HOUSING2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_fireplace_lvl1_3x3", - "ExportNameConstruction": "basic_turret_const", - "ExportNameLocked": "adv_fireplace_broken_3x3", - "BuildResource": "Elixir2", - "BuildCost": 0, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "ArmySlotType": "Normal", - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_none", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "adv_fireplace_lvl1_base", - "PickUpEffect": "Troop Housing Pickup", - "PlacingEffect": "Troop Housing Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 750 - } - }, - "Town Hall": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl1", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 0, - "TownHallLevel": 0, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 1000, - "MaxStoredElixir": 1000, - "MaxStoredDarkElixir": 2500, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 450, - "RegenTime": 20, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 1, - "StartingHomeCount": 1, - "IsRed": true, - "ActivateCombatOnDamageTaken": 1, - "ActivatedCombatAddBuildingClass": "Defense", - "CombatActivationDelay": 500, - "Weapon": "Townhall12", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl2", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 10, - "BuildResource": "Gold", - "BuildCost": 1000, - "TownHallLevel": 1, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2500, - "MaxStoredElixir": 2500, - "MaxStoredDarkElixir": 5000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 1600, - "RegenTime": 21, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 2, - "StartingHomeCount": 1, - "IsRed": true, - "ActivateCombatOnDamageTaken": 1, - "ActivatedCombatAddBuildingClass": "Defense", - "CombatActivationDelay": 500, - "Weapon": "Townhall13", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl3", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 4000, - "TownHallLevel": 2, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 10000, - "MaxStoredElixir": 10000, - "MaxStoredDarkElixir": 10000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 1850, - "RegenTime": 22, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 3, - "StartingHomeCount": 1, - "IsRed": true, - "ActivateCombatOnDamageTaken": 1, - "ActivatedCombatAddBuildingClass": "Defense", - "CombatActivationDelay": 500, - "Weapon": "Townhall14", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl4", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 25000, - "TownHallLevel": 3, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 50000, - "MaxStoredElixir": 50000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 2100, - "RegenTime": 23, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 4, - "StartingHomeCount": 1, - "IsRed": true, - "ActivateCombatOnDamageTaken": 1, - "ActivatedCombatAddBuildingClass": "Defense", - "CombatActivationDelay": 500, - "Weapon": "Townhall15", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl5", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 150000, - "TownHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 100000, - "MaxStoredElixir": 100000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 2400, - "RegenTime": 24, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 5, - "StartingHomeCount": 1, - "IsRed": true, - "ActivateCombatOnDamageTaken": 1, - "ActivatedCombatAddBuildingClass": "Defense", - "CombatActivationDelay": 500, - "Weapon": "Townhall16", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl6", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 750000, - "TownHallLevel": 5, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 300000, - "MaxStoredElixir": 300000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 2800, - "RegenTime": 25, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 6, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl7", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1000000, - "TownHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 500000, - "MaxStoredElixir": 500000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 3300, - "RegenTime": 26, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 7, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl8", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2000000, - "TownHallLevel": 7, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 750000, - "MaxStoredElixir": 750000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 3900, - "RegenTime": 27, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 8, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl9", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3000000, - "TownHallLevel": 8, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 1000000, - "MaxStoredElixir": 1000000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 4600, - "RegenTime": 28, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_grey", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 9, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl10", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3500000, - "TownHallLevel": 9, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 1500000, - "MaxStoredElixir": 1500000, - "MaxStoredDarkElixir": 20000, - "PercentageStoredDarkElixir": 20, - "LootOnDestruction": true, - "Hitpoints": 5500, - "RegenTime": 29, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_grey", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_lvl10_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 10, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl11", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 2, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 4000000, - "TownHallLevel": 10, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2000000, - "MaxStoredElixir": 2000000, - "LootOnDestruction": true, - "Hitpoints": 6800, - "RegenTime": 30, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 11, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl12_t1", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 4, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 6000000, - "TownHallLevel": 11, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2000000, - "MaxStoredElixir": 2000000, - "LootOnDestruction": true, - "Hitpoints": 7500, - "RegenTime": 31, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_blue", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base_th12", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 12, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "13": { - "BuildingLevel": 13, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl13_t1", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 7, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 9000000, - "TownHallLevel": 12, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2000000, - "MaxStoredElixir": 2000000, - "LootOnDestruction": true, - "Hitpoints": 8200, - "RegenTime": 31, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_blue", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base_th12", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 13, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "14": { - "BuildingLevel": 14, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl14_t1", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 13, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 15000000, - "TownHallLevel": 13, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2000000, - "MaxStoredElixir": 2000000, - "LootOnDestruction": true, - "Hitpoints": 8900, - "RegenTime": 31, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base_th12", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 14, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "15": { - "BuildingLevel": 15, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl15_t1", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 18000000, - "TownHallLevel": 14, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2000000, - "MaxStoredElixir": 2000000, - "LootOnDestruction": true, - "Hitpoints": 9600, - "RegenTime": 31, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_darkpurple", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base_th12", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 15, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - }, - "16": { - "BuildingLevel": 16, - "TID": "TID_BUILDING_TOWN_HALL", - "InfoTID": "TID_TOWN_HALL_INFO", - "BuildingClass": "Town Hall", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "town_hall_lvl16", - "ExportNameNpc": "goblin_townhall_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20000000, - "TownHallLevel": 15, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold": 2000000, - "MaxStoredElixir": 2000000, - "LootOnDestruction": true, - "Hitpoints": 10000, - "RegenTime": 32, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_darkpurple", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base_th12", - "PickUpEffect": "Town Hall Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 16, - "StartingHomeCount": 1, - "IsRed": true, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 100, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Elixir Collector": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl1_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 10, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 100000, - "ResourceMax": 24000, - "ResourceIconLimit": 30, - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl2_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 20, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 120000, - "ResourceMax": 28800, - "ResourceIconLimit": 40, - "Hitpoints": 350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl3_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 40, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 10000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 150000, - "ResourceMax": 36000, - "ResourceIconLimit": 50, - "Hitpoints": 400, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl4_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 30000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 180000, - "ResourceMax": 43200, - "ResourceIconLimit": 60, - "Hitpoints": 460, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl5_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 60000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 210000, - "ResourceMax": 50400, - "ResourceIconLimit": 70, - "Hitpoints": 550, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_lvl5_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl6_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 100000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 250000, - "ResourceMax": 60000, - "ResourceIconLimit": 80, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_lvl5_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl7_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 200000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 300000, - "ResourceMax": 72000, - "ResourceIconLimit": 100, - "Hitpoints": 750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_lvl5_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl8_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 300000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 350000, - "ResourceMax": 84000, - "ResourceIconLimit": 120, - "Hitpoints": 850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_lvl5_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl9_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 400000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 400000, - "ResourceMax": 96000, - "ResourceIconLimit": 140, - "Hitpoints": 1000, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_lvl5_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_ELIXIR_PUMP", - "InfoTID": "TID_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_pump_lvl10_v2", - "ExportNameConstruction": "elixir_pump_const", - "ExportNameLocked": "elixir_pump_broken", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 800000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_pump_upg", - "ProducesResource": "Elixir2", - "ResourcePer100Hours": 450000, - "ResourceMax": 108000, - "ResourceIconLimit": 160, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_lvl5_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - } - }, - "Elixir Storage": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level1_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 30, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 20000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "elixir_storage_upg", - "MaxStoredElixir2": 70000, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl1_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level2_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 80000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "MaxStoredElixir2": 150000, - "Hitpoints": 800, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl2_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level3_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 200000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "MaxStoredElixir2": 250000, - "Hitpoints": 975, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl3_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level4_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "MaxStoredElixir2": 350000, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl4_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level5_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 600000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "MaxStoredElixir2": 600000, - "Hitpoints": 1350, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl5_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level6_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredElixir2": 800000, - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl6_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level7_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredElixir2": 1200000, - "Hitpoints": 1850, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl7_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level8_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredElixir2": 1600000, - "Hitpoints": 2150, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl8_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level9_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredElixir2": 2000000, - "Hitpoints": 2450, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl9_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_ELIXIR_STORAGE", - "InfoTID": "TID_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "elixir_storage_level10_v2", - "ExportNameConstruction": "elixir_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3200000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredElixir2": 2500000, - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "elixir_destructed_state3", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_storage_lvl9_base", - "PickUpEffect": "Elixir Storage Pickup", - "PlacingEffect": "Elixir Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - } - }, - "Gold Mine": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl1", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 10, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 100000, - "ResourceMax": 24000, - "ResourceIconLimit": 30, - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl2", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 20, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 5000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 120000, - "ResourceMax": 28800, - "ResourceIconLimit": 40, - "Hitpoints": 350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl3", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 40, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 10000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 150000, - "ResourceMax": 36000, - "ResourceIconLimit": 50, - "Hitpoints": 400, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl4", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 30000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 180000, - "ResourceMax": 43200, - "ResourceIconLimit": 60, - "Hitpoints": 460, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl5", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 60000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 210000, - "ResourceMax": 50400, - "ResourceIconLimit": 70, - "Hitpoints": 550, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl6", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 100000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 250000, - "ResourceMax": 60000, - "ResourceIconLimit": 80, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl7", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 200000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 300000, - "ResourceMax": 72000, - "ResourceIconLimit": 100, - "Hitpoints": 750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl8", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 300000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 350000, - "ResourceMax": 84000, - "ResourceIconLimit": 120, - "Hitpoints": 850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl9", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 400000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 400000, - "ResourceMax": 96000, - "ResourceIconLimit": 140, - "Hitpoints": 1000, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_GOLD_MINE", - "InfoTID": "TID_GOLD_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "goldmine_lvl10", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "goldmine_broken", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 800000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ProducesResource": "Gold2", - "ResourcePer100Hours": 450000, - "ResourceMax": 108000, - "ResourceIconLimit": 160, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 250 - } - }, - "Gold Storage": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl1_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 30, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 20000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 70000, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl1_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl2_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 80000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 150000, - "Hitpoints": 800, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl2_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl3_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 200000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 250000, - "Hitpoints": 975, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl3_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl4_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 350000, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl4_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl5_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 600000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 600000, - "Hitpoints": 1350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl5_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl6_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 800000, - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl6_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl7_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 1200000, - "Hitpoints": 1850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl7_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl8_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 1600000, - "Hitpoints": 2150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl8_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl9_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 2000000, - "Hitpoints": 2450, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl9_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_GOLD_STORAGE", - "InfoTID": "TID_GOLD_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "gold_storage_lvl10_v2", - "ExportNameConstruction": "gold_storage_const", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 3200000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredGold2": 2500000, - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "gold_storage_lvl9_base", - "PickUpEffect": "Gold Storage Pickup", - "PlacingEffect": "Gold Storage Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 200 - } - }, - "Barracks": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl1", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 10, - "BuildResource": "Elixir", - "BuildCost": 100, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 20, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 250, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl2", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 1, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 500, - "TownHallLevel": 2, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 25, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 290, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl3", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 10, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2500, - "TownHallLevel": 2, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 30, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 330, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl4", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 5000, - "TownHallLevel": 2, - "CapitalHallLevel": 2, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 35, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 370, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl5", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 20000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 40, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 420, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl6", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 120000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 45, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 470, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl7", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 270000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 50, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 520, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl8", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 800000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 55, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 580, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl9", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 60, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 650, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl10", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1400000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 75, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 730, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl11", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2600000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 80, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 810, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl12", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 5, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3700000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 85, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 900, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "13": { - "BuildingLevel": 13, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl13", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 7, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 6500000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 90, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 980, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "14": { - "BuildingLevel": 14, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl14", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 8000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 95, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 1050, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "15": { - "BuildingLevel": 15, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl15", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 9, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 10000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 100, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1150, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "16": { - "BuildingLevel": 16, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl16", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 12000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 105, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1250, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "17": { - "BuildingLevel": 17, - "TID": "TID_BUILDING_BARRACK", - "InfoTID": "TID_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "barracks_lvl17", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 16000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 110, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1350, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Laboratory": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl1", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 1, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 5000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 500, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl2", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 25000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 550, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl3", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 50000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 600, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl4", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 0, - "BuildTimeH": 4, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 100000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 650, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl5", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 200000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 700, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl6", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 0, - "BuildTimeH": 16, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 400000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 750, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl7", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 800000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 830, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl8", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 1, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1300000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 950, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl9", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 2, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2100000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1070, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl10", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3800000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1140, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl11", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 5500000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1210, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl12", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 11, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 8100000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1280, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "13": { - "BuildingLevel": 13, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl13", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 12500000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1350, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "14": { - "BuildingLevel": 14, - "TID": "TID_BUILDING_LABORATORY", - "InfoTID": "TID_LABORATORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "laboratory_lvl14", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 16, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 13500000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1400, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Cannon": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_CANNON", - "InfoTID": "TID_BASIC_TURRET_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "basic_turret_lvl1", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 10, - "BuildResource": "Gold", - "BuildCost": 250, - "TownHallLevel": 1000, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "basic_turret_upg", - "Hitpoints": 420, - "RegenTime": 15, - "AttackRange": 900, - "AttackSpeed": 800, - "DPS": 9, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "Cannonball", - "AltProjectile": "Cannonball", - "ExportNameDamaged": "destroyedBuilding_3s_pit_none", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true - } - }, - "Archer Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl1", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 5, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 12000, - "TownHallLevel": 2, - "CapitalHallLevel": 2, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 500, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 40, - "AltDPS": 89, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Generic Hit", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer", - "DefenderCount": 1, - "DefenderZ": 150, - "AltDefenderZ": 58, - "StrengthWeight": 254, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl2", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 15, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 30000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 575, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 44, - "AltDPS": 98, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Generic Hit", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer", - "DefenderCount": 1, - "DefenderZ": 150, - "AltDefenderZ": 58, - "StrengthWeight": 260, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl3", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 60000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 660, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 48, - "AltDPS": 107, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Generic Hit", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer", - "DefenderCount": 1, - "DefenderZ": 150, - "AltDefenderZ": 58, - "StrengthWeight": 266, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl4", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 250000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 760, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 53, - "AltDPS": 118, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Generic Hit", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer2", - "DefenderCount": 1, - "DefenderZ": 150, - "AltDefenderZ": 58, - "StrengthWeight": 272, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl5", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 800000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 875, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 59, - "AltDPS": 131, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Generic Hit", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer2", - "DefenderCount": 1, - "DefenderZ": 150, - "AltDefenderZ": 58, - "StrengthWeight": 280, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl6", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1050, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 64, - "AltDPS": 142, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Generic Hit", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer3", - "DefenderCount": 1, - "DefenderZ": 150, - "AltDefenderZ": 58, - "StrengthWeight": 288, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl7", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1250, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 71, - "AltDPS": 158, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Explosive Arrow", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer3", - "DefenderCount": 1, - "DefenderZ": 160, - "AltDefenderZ": 68, - "StrengthWeight": 296, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl8", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2800000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1450, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 78, - "AltDPS": 173, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Explosive Arrow", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer6", - "DefenderCount": 1, - "DefenderZ": 160, - "AltDefenderZ": 68, - "StrengthWeight": 304, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl9", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3600000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1650, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 86, - "AltDPS": 191, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Explosive Arrow", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer6", - "DefenderCount": 1, - "DefenderZ": 160, - "AltDefenderZ": 68, - "StrengthWeight": 312, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_ARCHER_TOWER2", - "InfoTID": "TID_ARCHER_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_archer_tower_lvl10", - "ExportNameConstruction": "tower_turret_const", - "ExportNameLocked": "adv_archer_tower_broken", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4600000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1850, - "RegenTime": 1, - "AttackRange": 1000, - "AltAttackMode": true, - "AltAttackRange": 700, - "AttackSpeed": 1000, - "AltAttackSpeed": 450, - "DPS": 94, - "AltDPS": 209, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Archer Attack", - "HitEffect": "Explosive Arrow", - "Projectile": "Tower Arrow HIGH", - "AltProjectile": "Tower Arrow LOW", - "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer6", - "DefenderCount": 1, - "DefenderZ": 160, - "AltDefenderZ": 68, - "StrengthWeight": 320, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirAndGroundDefense2" - } - }, - "Wall": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl1", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000, - "TownHallLevel": 2, - "CapitalHallLevel": 2, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 900, - "RegenTime": 1, - "DestroyEffect": "wall_lvl1_destroyed", - "ExportNameDamaged": "wall_destructed_lvl1", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "AltBuildResource": "Elixir2", - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl2", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000, - "TownHallLevel": 3, - "CapitalHallLevel": 2, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 1100, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "AltBuildResource": "Elixir2", - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl3", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 10000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 1300, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "AltBuildResource": "Elixir2", - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl4", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 50000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "AltBuildResource": "Elixir2", - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl5", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 150000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 1900, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl6", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 240000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 2200, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl7", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 400000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 2500, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "VillageType": 1, - "StartUpgradeBoosterCost": 1, - "HintPriority": 50 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl8", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 600000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "VillageType": 1, - "StartUpgradeBoosterCost": 2, - "HintPriority": 50 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl9", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 800000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 3050, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Looping", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "VillageType": 1, - "StartUpgradeBoosterCost": 2, - "HintPriority": 50 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_WALL", - "InfoTID": "TID_WALL_INFO", - "BuildingClass": "Wall", - "SWF": "sc/buildings2.sc", - "ExportName": "secondVillage_wall_lvl10", - "ExportNameConstruction": "generic_construction_state1", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 1, - "Height": 1, - "ExportNameBuildAnim": "dummy_particle", - "Hitpoints": 3350, - "RegenTime": 1, - "DestroyEffect": "wall_lvl2_destroyed", - "ExportNameDamaged": "wall_destructed_lvl2", - "WallCornerPieces": "Synced", - "StartingHomeCount": 10, - "StrengthWeight": 100, - "VillageType": 1, - "StartUpgradeBoosterCost": 2, - "HintPriority": 50 - } - }, - "Wizard Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl1", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 120000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 620, - "RegenTime": 15, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 11, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 450, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl4", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 220000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 650, - "RegenTime": 16, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 13, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 420, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl7", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 400000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 680, - "RegenTime": 17, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 16, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard2", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 390, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl8", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 540000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 730, - "RegenTime": 18, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 20, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard2", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 360, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl9", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 700000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 840, - "RegenTime": 19, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 24, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack2", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile2", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystal", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard3", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 330, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl10", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 960, - "RegenTime": 20, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 32, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack2", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile2", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystal", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard3", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 300, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl11", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 1200, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 40, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack2", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile2", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard6", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 270, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl12", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2200000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 1440, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 45, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile3", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard6", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl13", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2800000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 1680, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 50, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile3", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard7", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl14", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 4000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 2000, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 62, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard7", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl15", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 7200000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 2240, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 70, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard8", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl16", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 9200000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 2480, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 78, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard8", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "13": { - "BuildingLevel": 13, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl17", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 10200000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 2700, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 84, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard9", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "14": { - "BuildingLevel": 14, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl18", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 2900, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 90, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard10", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 240, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "15": { - "BuildingLevel": 15, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl19", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 19200000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 3000, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 95, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard11", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 250, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "16": { - "BuildingLevel": 16, - "TID": "TID_BUILDING_WIZARD_TOWER", - "InfoTID": "TID_WIZARD_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "wizard_tower_lvl20", - "ExportNameConstruction": "wizard_tower_const", - "BuildTimeD": 14, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20200000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "wizard_tower_upg", - "Hitpoints": 3150, - "RegenTime": 21, - "AttackRange": 700, - "AttackSpeed": 1300, - "DPS": 102, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "WizardTower_attack3", - "HitEffect": "Wizard Tower hit", - "Projectile": "wizardTower_projectile4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "wizard_tower_base", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 100, - "PickUpEffect": "Wizard Tower Pickup", - "PlacingEffect": "Wizard Tower Placing", - "DefenderCharacter": "Wizard12", - "DefenderCount": 1, - "DefenderZ": 135, - "StrengthWeight": 250, - "HintPriority": 150, - "PreviewScenario": "Defense" - } - }, - "Air Defense": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl1", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 22000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "fireworks_tower_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl1_upgrade", - "Hitpoints": 800, - "RegenTime": 15, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 80, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit1", - "Projectile": "Firework", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl2", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 90000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "fireworks_tower_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl2_upgrade", - "Hitpoints": 850, - "RegenTime": 16, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 110, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit1", - "Projectile": "Firework2", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl3", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 270000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "fireworks_tower_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl3_upgrade", - "Hitpoints": 900, - "RegenTime": 17, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 140, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit2", - "Projectile": "Firework3", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl4", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "fireworks_tower_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl4_upgrade", - "Hitpoints": 950, - "RegenTime": 18, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 160, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit2", - "Projectile": "Firework4", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl5", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 800000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "fireworks_tower_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl5_upgrade", - "Hitpoints": 1000, - "RegenTime": 19, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 190, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework5", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl6", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "fireworks_tower_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl6_upgrade", - "Hitpoints": 1050, - "RegenTime": 20, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 230, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework6", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl7", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1750000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl7_upgrade", - "Hitpoints": 1100, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 280, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework7", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl8", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2300000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl8_upgrade", - "Hitpoints": 1210, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 320, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework8", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl9", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3400000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl9_upgrade", - "Hitpoints": 1300, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 360, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl10", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 8, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 5800000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl10_upgrade", - "Hitpoints": 1400, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 400, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl11", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 8400000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl11_upgrade", - "Hitpoints": 1500, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 440, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl12", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 11900000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl12_upgrade", - "Hitpoints": 1650, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 500, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "13": { - "BuildingLevel": 13, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl13", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 19500000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl13_upgrade", - "Hitpoints": 1750, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 540, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - }, - "14": { - "BuildingLevel": 14, - "TID": "TID_BUILDING_AIR_DEFENSE", - "InfoTID": "TID_AIR_DEFENSE_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "fireworks_tower_lvl14", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 15, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20500000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "fireworks_tower_lvl14_upgrade", - "Hitpoints": 1850, - "RegenTime": 21, - "AttackRange": 1000, - "AttackSpeed": 1000, - "DPS": 600, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Attack", - "HitEffect": "Air Defence hit3", - "Projectile": "Firework9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_tower_base", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 50, - "HintPriority": 150, - "PreviewScenario": "AirDefense" - } - }, - "Mortar": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl1", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 5000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 400, - "RegenTime": 20, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 4, - "AltDPS": 8, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit", - "Projectile": "Mortar Ammo1", - "AltProjectile": "Mortar Ammo1", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 450, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl2", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 25000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 450, - "RegenTime": 21, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 5, - "AltDPS": 9, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit", - "Projectile": "Mortar Ammo2", - "AltProjectile": "Mortar Ammo2", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 440, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl3", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 100000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 500, - "RegenTime": 22, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 6, - "AltDPS": 11, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit", - "Projectile": "Mortar Ammo3", - "AltProjectile": "Mortar Ammo3", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 430, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl4", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 200000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 550, - "RegenTime": 23, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 7, - "AltDPS": 13, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit", - "Projectile": "Mortar Ammo4", - "AltProjectile": "Mortar Ammo4", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 420, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl5", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 300000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 600, - "RegenTime": 24, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 9, - "AltDPS": 17, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit", - "Projectile": "Mortar Ammo5", - "AltProjectile": "Mortar Ammo5", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 410, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl6", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 560000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 650, - "RegenTime": 25, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 11, - "AltDPS": 20, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl6", - "Projectile": "Mortar Ammo6", - "AltProjectile": "Mortar Ammo6", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 400, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl7", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1300000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 700, - "RegenTime": 26, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 15, - "AltDPS": 27, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl6", - "Projectile": "Mortar Ammo6", - "AltProjectile": "Mortar Ammo6", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 390, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl8", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1900000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 800, - "RegenTime": 26, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 20, - "AltDPS": 37, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo8", - "AltProjectile": "Mortar Ammo8", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 380, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl9", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2500000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 950, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 25, - "AltDPS": 47, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo9", - "AltProjectile": "Mortar Ammo9", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 370, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpCost": 8000000, - "GearUpTime": 20160, - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl10", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3500000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1100, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 30, - "AltDPS": 56, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo10", - "AltProjectile": "Mortar Ammo10", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 360, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl11", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 5800000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1300, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 35, - "AltDPS": 64, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo10", - "AltProjectile": "Mortar Ammo10", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 350, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl12", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 6500000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1500, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 38, - "AltDPS": 70, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo10", - "AltProjectile": "Mortar Ammo10", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 350, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "13": { - "BuildingLevel": 13, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl13", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 7, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 8200000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1700, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 42, - "AltDPS": 77, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo11", - "AltProjectile": "Mortar Ammo11", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 340, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "14": { - "BuildingLevel": 14, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl14", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 15000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1950, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 48, - "AltDPS": 88, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo11", - "AltProjectile": "Mortar Ammo11", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 340, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "15": { - "BuildingLevel": 15, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl15", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 19000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 2150, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 54, - "AltDPS": 99, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo11", - "AltProjectile": "Mortar Ammo11", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 340, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - }, - "16": { - "BuildingLevel": 16, - "TID": "TID_BUILDING_MORTAR", - "InfoTID": "TID_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "mortar_lvl16", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 14, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 19500000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 2300, - "RegenTime": 27, - "AttackRange": 1100, - "AltAttackMode": true, - "AltAttackRange": 1100, - "AttackSpeed": 5000, - "AltAttackSpeed": 1000, - "DPS": 60, - "AltDPS": 110, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Mortar Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Mortar Ammo lvl16", - "AltProjectile": "Mortar Ammo lvl16", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": false, - "AltGroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 150, - "PushBack": 100, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 340, - "AltBurstCount": 3, - "AltBurstDelay": 500, - "GearUpBuilding": "Multi Mortar", - "GearUpLevelRequirement": 7, - "GearUpResource": "Gold", - "GearUpTID": "TID_GEAR_UP_MORTAR", - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange", - "AltPreviewScenario": "DefenseLongRange" - } - }, - "Clan Castle": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl1", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 10000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 75000, - "MaxStoredWarElixir": 75000, - "MaxStoredWarDarkElixir": 500, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 10, - "HousingSpaceAlt": 0, - "HousingSpaceSiege": 0, - "Hitpoints": 1000, - "RegenTime": 27, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastle" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl2", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 100000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 250000, - "MaxStoredWarElixir": 250000, - "MaxStoredWarDarkElixir": 1000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 15, - "HousingSpaceAlt": 0, - "HousingSpaceSiege": 0, - "Hitpoints": 1400, - "RegenTime": 28, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastle" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl3", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 800000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 700000, - "MaxStoredWarElixir": 700000, - "MaxStoredWarDarkElixir": 2500, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 20, - "HousingSpaceAlt": 0, - "HousingSpaceSiege": 0, - "Hitpoints": 2000, - "RegenTime": 29, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH7" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl4", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1200000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 1000000, - "MaxStoredWarElixir": 1000000, - "MaxStoredWarDarkElixir": 4000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 25, - "HousingSpaceAlt": 1, - "HousingSpaceSiege": 0, - "Hitpoints": 2600, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH7" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl5", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 1600000, - "MaxStoredWarElixir": 1600000, - "MaxStoredWarDarkElixir": 8000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 30, - "HousingSpaceAlt": 1, - "HousingSpaceSiege": 0, - "Hitpoints": 3000, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH7" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl6", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 4200000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 2000000, - "MaxStoredWarElixir": 2000000, - "MaxStoredWarDarkElixir": 10000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 35, - "HousingSpaceAlt": 1, - "HousingSpaceSiege": 1, - "Hitpoints": 3400, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH7" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl7", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 6, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 5500000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 2400000, - "MaxStoredWarElixir": 2400000, - "MaxStoredWarDarkElixir": 12000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 35, - "HousingSpaceAlt": 2, - "HousingSpaceSiege": 1, - "Hitpoints": 4000, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH11" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl8", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 8000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 2800000, - "MaxStoredWarElixir": 2800000, - "MaxStoredWarDarkElixir": 14000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 40, - "HousingSpaceAlt": 2, - "HousingSpaceSiege": 1, - "Hitpoints": 4400, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH11" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl9", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 10000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 3200000, - "MaxStoredWarElixir": 3200000, - "MaxStoredWarDarkElixir": 16000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 45, - "HousingSpaceAlt": 2, - "HousingSpaceSiege": 1, - "Hitpoints": 4800, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH11" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl10", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 12600000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 3600000, - "MaxStoredWarElixir": 3600000, - "MaxStoredWarDarkElixir": 18000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 45, - "HousingSpaceAlt": 3, - "HousingSpaceSiege": 1, - "Hitpoints": 5200, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH11" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_ALLIANCE_CASTLE", - "InfoTID": "TID_ALLIANCE_CASTLE_INFO", - "BuildingClass": "Army", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "alliance_castle_lvl11", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 20000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 4000000, - "MaxStoredWarElixir": 4000000, - "MaxStoredWarDarkElixir": 20000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 50, - "HousingSpaceAlt": 3, - "HousingSpaceSiege": 1, - "Hitpoints": 5400, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1, - "HintPriority": 900, - "PreviewScenario": "ClanCastleTH11" - } - }, - "Builder's Hut": { - "1": { - "BuildingLevel": 1, - "TID": "TID_WORKER_BUILDING", - "InfoTID": "TID_WORKER_INFO", - "BuildingClass": "Worker", - "SWF": "sc/buildings.sc", - "ExportName": "worker_building", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Diamonds", - "BuildCost": 0, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "BoostCost": 500, - "Hitpoints": 250, - "RegenTime": 20, - "AttackRange": 700, - "AttackSpeed": 400, - "DPS": 80, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Nailgun Attack FX", - "HitEffect": "Generic Hit", - "Projectile": "Nail Ammo", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "AnimateTurret": true, - "StartingHomeCount": 1, - "StrengthWeight": 400, - "WakeUpSpeed": 1600, - "WakeUpSpace": 1, - "DefenceTroopCount": 1, - "DefenceTroopCharacter": "Defending Builder", - "DefenceTroopLevel": 1, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 200, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_WORKER_BUILDING", - "InfoTID": "TID_WORKER_INFO", - "BuildingClass": "Worker", - "SWF": "sc/buildings.sc", - "ExportName": "worker_building_armed_lvl1", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 9, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 8000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "BoostCost": 500, - "Hitpoints": 1000, - "RegenTime": 20, - "AttackRange": 700, - "AttackSpeed": 400, - "DPS": 100, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Nailgun Attack FX", - "HitEffect": "Generic Hit", - "Projectile": "Nail Ammo", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "AnimateTurret": true, - "StartingHomeCount": 1, - "StrengthWeight": 380, - "WakeUpSpeed": 1600, - "WakeUpSpace": 1, - "DefenceTroopCount": 1, - "DefenceTroopCharacter": "Defending Builder", - "DefenceTroopLevel": 2, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 200, - "PreviewScenario": "DefensiveBuilder" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_WORKER_BUILDING", - "InfoTID": "TID_WORKER_INFO", - "BuildingClass": "Worker", - "SWF": "sc/buildings.sc", - "ExportName": "worker_building_armed_lvl2", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 11, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 10000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "BoostCost": 500, - "Hitpoints": 1300, - "RegenTime": 20, - "AttackRange": 700, - "AttackSpeed": 400, - "DPS": 120, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Nailgun Attack FX", - "HitEffect": "Generic Hit", - "Projectile": "Nail Ammo 2", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "AnimateTurret": true, - "StartingHomeCount": 1, - "StrengthWeight": 360, - "WakeUpSpeed": 1600, - "WakeUpSpace": 1, - "DefenceTroopCount": 1, - "DefenceTroopCharacter": "Defending Builder", - "DefenceTroopLevel": 3, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 200, - "PreviewScenario": "DefensiveBuilder" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_WORKER_BUILDING", - "InfoTID": "TID_WORKER_INFO", - "BuildingClass": "Worker", - "SWF": "sc/buildings.sc", - "ExportName": "worker_building_armed_lvl3", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 13, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "BoostCost": 500, - "Hitpoints": 1600, - "RegenTime": 20, - "AttackRange": 700, - "AttackSpeed": 400, - "DPS": 135, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Nailgun Attack FX", - "HitEffect": "Generic Hit", - "Projectile": "Nail Ammo 2", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkgreen", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "AnimateTurret": true, - "StartingHomeCount": 1, - "StrengthWeight": 340, - "WakeUpSpeed": 1600, - "WakeUpSpace": 1, - "DefenceTroopCount": 1, - "DefenceTroopCharacter": "Defending Builder", - "DefenceTroopLevel": 4, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 200, - "PreviewScenario": "DefensiveBuilder" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_WORKER_BUILDING", - "InfoTID": "TID_WORKER_INFO", - "BuildingClass": "Worker", - "SWF": "sc/buildings.sc", - "ExportName": "worker_building_armed_lvl4", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 14, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 17000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "BoostCost": 500, - "Hitpoints": 1800, - "RegenTime": 20, - "AttackRange": 700, - "AttackSpeed": 400, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Nailgun Attack FX", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkpurple", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "AnimateTurret": true, - "StartingHomeCount": 1, - "WakeUpSpeed": 1600, - "ActivatedCombatAddBuildingClass": "Defense", - "HintPriority": 200, - "PreviewScenario": "DefensiveBuilder" - } - }, - "Radio Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_COMM_MAST", - "InfoTID": "TID_COMM_MAST", - "BuildingClass": "Npc", - "SWF": "sc/buildings.sc", - "ExportName": "comm_mast_lvl1", - "ExportNameConstruction": "generic_construction_state3", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "comm_mast_upg", - "Hitpoints": 250, - "RegenTime": 30, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "comm_mast_base" - } - }, - "Hidden Tesla": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl1_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 30, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 50000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 300, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 36, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_1", - "AttackEffect2": "Tesla Attack_4_Secondary", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl1", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 248, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl2_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 100000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 350, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 40, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_1", - "AttackEffect2": "Tesla Attack_8_Secondary", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl2", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 254, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl3_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 0, - "BuildTimeH": 5, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 150000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 400, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 44, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_1", - "AttackEffect2": "Tesla Attack_8_Secondary", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl3", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 261, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl4_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 0, - "BuildTimeH": 10, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 280000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 460, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 48, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_2", - "AttackEffect2": "Tesla Attack_8_Secondary", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl4", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 269, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl5_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 700000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 550, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 53, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_2", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl5", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 276, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl6_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1300000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 650, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 58, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_3", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl6", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 284, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl7_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2100000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 750, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 64, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_4", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl7", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 291, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl8_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3100000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 850, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 70, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_4", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl8", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 299, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl9_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4100000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1000, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 77, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_4", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl9", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 308, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_TESLA_TOWER2", - "InfoTID": "TID_TESLA_TOWER2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "teslatower_lvl10_setup", - "ExportNameConstruction": "teslatower_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5100000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1150, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 600, - "Damage": 85, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Tesla Attack_4", - "HitEffect": "Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "BaseGfx": "-1", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "Hidden": true, - "TriggerRadius": 600, - "ExportNameTriggered": "teslatower_lvl10", - "AppearEffect": "Tesla Appear", - "StrengthWeight": 320, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - } - }, - "Spell Factory": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl1", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 150000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 2, - "UnitProduction": 2, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 425, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl2", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 300000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 4, - "UnitProduction": 4, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 470, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl3", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 600000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 6, - "UnitProduction": 6, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 520, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl4", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 3, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1200000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 8, - "UnitProduction": 8, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 600, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "spellforge_lvl4_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl5", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 4, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 10, - "UnitProduction": 10, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 720, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "spellforge_lvl4_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl6", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3500000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 10, - "UnitProduction": 10, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 840, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "spellforge_lvl4_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_SPELL_FORGE", - "InfoTID": "TID_SPELL_FORGE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "spell_factory_lvl7", - "ExportNameConstruction": "spell_factory_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 9000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "spell_factory_upg", - "HousingSpaceAlt": 10, - "UnitProduction": 10, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 960, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "spellforge_lvl4_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - } - }, - "X-Bow": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_XBOW2", - "InfoTID": "TID_BUILDING_XBOW2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "BB_xbow_lvl1", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4400000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl1", - "Hitpoints": 1700, - "RegenTime": 1, - "AttackRange": 1200, - "AltAttackMode": true, - "AltAttackRange": 1200, - "AttackSpeed": 192, - "AltAttackSpeed": 192, - "DPS": 80, - "AltDPS": 80, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Rapidfire bow attack", - "HitEffect": "Generic Hit", - "Projectile": "Rapidfire arrow lvl6", - "AltProjectile": "Rapidfire arrow lvl6", - "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": false, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Bow Pickup", - "PlacingEffect": "Bow Placing", - "AnimateTurret": true, - "StrengthWeight": 2310, - "VillageType": 1, - "NewTargetAttackDelay": 500, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_XBOW2", - "InfoTID": "TID_BUILDING_XBOW2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "BB_xbow_lvl2", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4800000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl2", - "Hitpoints": 1900, - "RegenTime": 1, - "AttackRange": 1200, - "AltAttackMode": true, - "AltAttackRange": 1200, - "AttackSpeed": 192, - "AltAttackSpeed": 192, - "DPS": 89, - "AltDPS": 89, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Rapidfire bow attack", - "HitEffect": "Generic Hit", - "Projectile": "Rapidfire arrow lvl6", - "AltProjectile": "Rapidfire arrow lvl6", - "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": false, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Bow Pickup", - "PlacingEffect": "Bow Placing", - "AnimateTurret": true, - "StrengthWeight": 2360, - "VillageType": 1, - "NewTargetAttackDelay": 500, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_XBOW2", - "InfoTID": "TID_BUILDING_XBOW2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "BB_xbow_lvl3", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5200000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl3", - "Hitpoints": 2100, - "RegenTime": 1, - "AttackRange": 1200, - "AltAttackMode": true, - "AltAttackRange": 1200, - "AttackSpeed": 192, - "AltAttackSpeed": 192, - "DPS": 97, - "AltDPS": 97, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Rapidfire bow attack", - "HitEffect": "Generic Hit", - "Projectile": "Rapidfire arrow lvl6", - "AltProjectile": "Rapidfire arrow lvl6", - "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": false, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Bow Pickup", - "PlacingEffect": "Bow Placing", - "AnimateTurret": true, - "StrengthWeight": 2410, - "VillageType": 1, - "NewTargetAttackDelay": 500, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_XBOW2", - "InfoTID": "TID_BUILDING_XBOW2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "BB_xbow_lvl4", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5600000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl4", - "Hitpoints": 2350, - "RegenTime": 1, - "AttackRange": 1200, - "AltAttackMode": true, - "AltAttackRange": 1200, - "AttackSpeed": 192, - "AltAttackSpeed": 192, - "DPS": 107, - "AltDPS": 107, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Rapidfire bow attack", - "HitEffect": "Generic Hit", - "Projectile": "Rapidfire arrow lvl6", - "AltProjectile": "Rapidfire arrow lvl6", - "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": false, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Bow Pickup", - "PlacingEffect": "Bow Placing", - "AnimateTurret": true, - "StrengthWeight": 2430, - "VillageType": 1, - "NewTargetAttackDelay": 500, - "HintPriority": 150, - "PreviewScenario": "Defense" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_XBOW2", - "InfoTID": "TID_BUILDING_XBOW2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "BB_xbow_lvl5", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 6000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl5", - "Hitpoints": 2600, - "RegenTime": 1, - "AttackRange": 1200, - "AltAttackMode": true, - "AltAttackRange": 1200, - "AttackSpeed": 192, - "AltAttackSpeed": 192, - "DPS": 117, - "AltDPS": 117, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Rapidfire bow attack", - "HitEffect": "Generic Hit", - "Projectile": "Rapidfire arrow lvl6", - "AltProjectile": "Rapidfire arrow lvl6", - "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": false, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": false, - "ToggleAttackModeEffect": "Bow Target", - "PickUpEffect": "Bow Pickup", - "PlacingEffect": "Bow Placing", - "AnimateTurret": true, - "StrengthWeight": 2450, - "VillageType": 1, - "NewTargetAttackDelay": 500, - "HintPriority": 150, - "PreviewScenario": "Defense" - } - }, - "Barbarian King": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_BARBARIAN_KING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "heroaltar_barbarian_king_lvl1", - "ExportNameConstruction": "heroaltar_barbarian_king_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "DarkElixir", - "BuildCost": 5000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "heroaltar_barbarian_king_upg", - "BoostCost": 5, - "Hitpoints": 250, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "heroaltar_base", - "PickUpEffect": "Hero Altar Pickup", - "PlacingEffect": "Hero Altar Place", - "IsHeroBarrack": true, - "HeroType": "Barbarian King", - "HintPriority": 700 - } - }, - "Dark Elixir Drill": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl1", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 2000, - "ResourceMax": 160, - "ResourceIconLimit": 1, - "BoostCost": 7, - "Hitpoints": 800, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl2", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 700000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 3000, - "ResourceMax": 300, - "ResourceIconLimit": 1, - "BoostCost": 10, - "Hitpoints": 860, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl3", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 900000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 4500, - "ResourceMax": 540, - "ResourceIconLimit": 1, - "BoostCost": 15, - "Hitpoints": 920, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl4", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1200000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 6000, - "ResourceMax": 840, - "ResourceIconLimit": 2, - "BoostCost": 20, - "Hitpoints": 980, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl5", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 8000, - "ResourceMax": 1280, - "ResourceIconLimit": 2, - "BoostCost": 25, - "Hitpoints": 1060, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl6", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1800000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 10000, - "ResourceMax": 1800, - "ResourceIconLimit": 3, - "BoostCost": 30, - "Hitpoints": 1160, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl7", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2400000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 12000, - "ResourceMax": 2400, - "ResourceIconLimit": 4, - "BoostCost": 35, - "Hitpoints": 1280, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl8", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 14000, - "ResourceMax": 3000, - "ResourceIconLimit": 5, - "BoostCost": 40, - "Hitpoints": 1380, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", - "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_pump_lvl9", - "ExportNameConstruction": "darkelixir_pump_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 4000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_pump_upg", - "ProducesResource": "DarkElixir", - "ResourcePer100Hours": 16000, - "ResourceMax": 3600, - "ResourceIconLimit": 6, - "BoostCost": 45, - "Hitpoints": 1480, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_pump_base", - "PickUpEffect": "Dark Elixir Drill Pickup", - "PlacingEffect": "Dark Elixir Drill Place", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Dark Elixir Storage": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level1", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 250000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_storage_upg", - "MaxStoredDarkElixir": 10000, - "Hitpoints": 2000, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl1_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level2", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 0, - "BuildTimeH": 16, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkelixir_storage_upg", - "MaxStoredDarkElixir": 17500, - "Hitpoints": 2200, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl2_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level3", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 40000, - "Hitpoints": 2400, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl3_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level4", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1500000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 75000, - "Hitpoints": 2600, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl4_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level5", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 140000, - "Hitpoints": 2900, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl5_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level6", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 180000, - "Hitpoints": 3200, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl6_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level7", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 3, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3800000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 220000, - "Hitpoints": 3500, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl6_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level8", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 5400000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 280000, - "Hitpoints": 3800, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl6_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level9", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 8100000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 330000, - "Hitpoints": 4100, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl6_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level10", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 12, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 12500000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 350000, - "Hitpoints": 4300, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl6_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", - "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "darkelixir_storage_level11", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 15, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 13500000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredDarkElixir": 360000, - "Hitpoints": 4500, - "RegenTime": 30, - "DestroyEffect": "Elixir Storage Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_elixir_storage_lvl6_base", - "PickUpEffect": "Dark Elixir Storage Pickup", - "PlacingEffect": "Dark Elixir Storage Place", - "HintPriority": 300, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Archer Queen": { - "1": { - "BuildingLevel": 1, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_ARCHER_QUEEN_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "heroaltar_archer_queen_lvl1", - "ExportNameConstruction": "heroaltar_archer_queen_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "DarkElixir", - "BuildCost": 10000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "heroaltar_archer_queen_upg", - "BoostCost": 5, - "Hitpoints": 250, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "heroaltar_base", - "PickUpEffect": "Hero Altar Pickup", - "PlacingEffect": "Hero Altar Place", - "IsHeroBarrack": true, - "HeroType": "Archer Queen", - "HintPriority": 700 - } - }, - "Dark Barracks": { - "1": { - "BuildingLevel": 1, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl1", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 200000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 40, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 500, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl2", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 600000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 50, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 550, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl3", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 60, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 600, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl4", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1600000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 70, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 650, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl5", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 3, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2200000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 80, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 700, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl6", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 4, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2900000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 90, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 750, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl7", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 6, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 4000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 100, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 800, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl8", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 7500000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 110, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 850, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl9", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 9000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 120, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 900, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_DARK_ELIXIR_BARRACK", - "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "darkBarracks_lvl10", - "ExportNameConstruction": "darkBarracks_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 13000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "darkBarracks_upg", - "UnitProduction": 130, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", - "BoostCost": 5, - "Hitpoints": 950, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 400, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Inferno Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl1", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1500000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl1_upgrade", - "Hitpoints": 1500, - "RegenTime": 20, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 30, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 500, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 80, - "DPSLv3": 800, - "DPSMulti": 30, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower Attack 2", - "AttackEffectLv3": "Dark Tower Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 2800, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl2", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 2, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl2_upgrade", - "Hitpoints": 1800, - "RegenTime": 21, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 35, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 600, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 100, - "DPSLv3": 1000, - "DPSMulti": 35, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower Attack 2", - "AttackEffectLv3": "Dark Tower Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 2500, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl3", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl3_upgrade", - "Hitpoints": 2100, - "RegenTime": 22, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 40, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 700, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 120, - "DPSLv3": 1200, - "DPSMulti": 40, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 2250, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl4", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 4, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3400000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl4_upgrade", - "Hitpoints": 2400, - "RegenTime": 23, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 50, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 800, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 140, - "DPSLv3": 1400, - "DPSMulti": 50, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 2100, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl5", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 4200000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl5_upgrade", - "Hitpoints": 2700, - "RegenTime": 23, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 60, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 900, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 160, - "DPSLv3": 1600, - "DPSMulti": 60, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 2000, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl6", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 8, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 6500000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl6_upgrade", - "Hitpoints": 3000, - "RegenTime": 23, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 70, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 1000, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 180, - "DPSLv3": 1800, - "DPSMulti": 70, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 1900, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl7", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 10500000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl7_upgrade", - "Hitpoints": 3300, - "RegenTime": 23, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 85, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 1100, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 200, - "DPSLv3": 2000, - "DPSMulti": 85, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 5, - "StrengthWeight": 1800, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl8", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12600000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl8_upgrade", - "Hitpoints": 3700, - "RegenTime": 23, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 100, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 1200, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 220, - "DPSLv3": 2200, - "DPSMulti": 100, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 6, - "StrengthWeight": 1700, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_DARK_TOWER", - "InfoTID": "TID_DARK_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "dark_tower_lvl9", - "ExportNameConstruction": "dark_tower_const", - "BuildTimeD": 13, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 21000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "dark_tower_upg", - "ExportNameUpgradeAnim": "dark_tower_lvl8_upgrade", - "Hitpoints": 4000, - "RegenTime": 23, - "AttackRange": 900, - "AltAttackMode": true, - "AltAttackRange": 1000, - "AttackSpeed": 128, - "DPS": 110, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Dark Tower lvl3 Attack 1", - "HitEffect": "Dark Tower Hit", - "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "AltAirTargets": true, - "AltGroundTargets": true, - "AltMultiTargets": true, - "AmmoCount": 1000, - "AmmoResource": "DarkElixir", - "AmmoCost": 1300, - "LoadAmmoEffect": "Dark Tower Load", - "NoAmmoEffect": "Dark Tower No Ammo", - "ToggleAttackModeEffect": "Dark Tower Target", - "PickUpEffect": "Dark Tower Pickup", - "PlacingEffect": "Dark Tower Placing", - "IncreasingDamage": true, - "DPSLv2": 240, - "DPSLv3": 2400, - "DPSMulti": 110, - "Lv2SwitchTime": 1500, - "Lv3SwitchTime": 5250, - "AttackEffectLv2": "Dark Tower lvl3 Attack 2", - "AttackEffectLv3": "Dark Tower lvl3 Attack 3", - "TransitionEffectLv2": "Dark Tower Up 2", - "TransitionEffectLv3": "Dark Tower Up 3", - "AltNumMultiTargets": 6, - "StrengthWeight": 1650, - "AlternatePickNewTargetDelay": 50, - "HintPriority": 150, - "PreviewScenario": "DefenseHeavy", - "AltPreviewScenario": "DefenseLongRange" - } - }, - "Air Sweeper": { - "1": { - "BuildingLevel": 1, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl1", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 400000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl1_upgrade", - "Hitpoints": 750, - "RegenTime": 20, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 160, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster1" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl2", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 600000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl2_upgrade", - "Hitpoints": 800, - "RegenTime": 21, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 200, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster1" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl3", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 900000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl3_upgrade", - "Hitpoints": 850, - "RegenTime": 22, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 240, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster1" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl4", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1200000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl4_upgrade", - "Hitpoints": 900, - "RegenTime": 23, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 280, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster1" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl5", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1800000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl5_upgrade", - "Hitpoints": 950, - "RegenTime": 24, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 320, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster1" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl6", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1900000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl6_upgrade", - "Hitpoints": 1000, - "RegenTime": 25, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 360, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster1" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_AIR_BLASTER", - "InfoTID": "TID_AIR_BLASTER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "air_mortar_lvl7", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3400000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "ExportNameUpgradeAnim": "air_mortar_lvl7_upgrade", - "Hitpoints": 1050, - "RegenTime": 26, - "AttackRange": 1500, - "PrepareSpeed": 600, - "AttackSpeed": 5000, - "CoolDownOverride": 4800, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Wind Machine Attack", - "Projectile": "Air Blaster Ammo1", - "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "windmachine_base", - "AirTargets": true, - "MinAttackRange": 100, - "PickUpEffect": "Wind Machine Pickup", - "PlacingEffect": "Wind Machine Place", - "AnimateTurret": true, - "StrengthWeight": 20, - "ShockwavePushStrength": 400, - "ShockwaveArcLength": 700, - "ShockwaveExpandRadius": 250, - "TargetingConeAngle": 105, - "AimRotateStep": 45, - "HintPriority": 150, - "PreviewScenario": "AirBlaster" - } - }, - "Dark Spell Factory": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_MINI_SPELL_FACTORY", - "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "mini_spell_distillery_lvl1", - "ExportNameConstruction": "mini_spell_distillery_const", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 130000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mini_spell_distillery_upg", - "HousingSpaceAlt": 1, - "UnitProduction": 2, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 600, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mini_spell_distillery_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "ForgesMiniSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_MINI_SPELL_FACTORY", - "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "mini_spell_distillery_lvl2", - "ExportNameConstruction": "mini_spell_distillery_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 260000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mini_spell_distillery_upg", - "HousingSpaceAlt": 1, - "UnitProduction": 4, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 660, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mini_spell_distillery_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "ForgesMiniSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_MINI_SPELL_FACTORY", - "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "mini_spell_distillery_lvl3", - "ExportNameConstruction": "mini_spell_distillery_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 600000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mini_spell_distillery_upg", - "HousingSpaceAlt": 1, - "UnitProduction": 6, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 720, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mini_spell_distillery_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "ForgesMiniSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_MINI_SPELL_FACTORY", - "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "mini_spell_distillery_lvl4", - "ExportNameConstruction": "mini_spell_distillery_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1200000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mini_spell_distillery_upg", - "HousingSpaceAlt": 1, - "UnitProduction": 8, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 780, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mini_spell_distillery_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "ForgesMiniSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_MINI_SPELL_FACTORY", - "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "mini_spell_distillery_lvl5", - "ExportNameConstruction": "mini_spell_distillery_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 2500000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mini_spell_distillery_upg", - "HousingSpaceAlt": 1, - "UnitProduction": 10, - "ProducesUnitsOfType": 2, - "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", - "BoostCost": 5, - "Hitpoints": 840, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mini_spell_distillery_base", - "PickUpEffect": "Spell Factory Pickup", - "PlacingEffect": "Spell Factory Place", - "ForgesSpells": true, - "ForgesMiniSpells": true, - "HintPriority": 600, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Grand Warden": { - "1": { - "BuildingLevel": 1, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_GRAND_WARDEN_INFO", - "BuildingClass": "Defense", - "ShopBuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "heroaltar_elder_lvl1", - "ExportNameConstruction": "heroaltar_elder_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 1000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "heroaltar_elder_upg", - "BoostCost": 5, - "Hitpoints": 250, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "heroaltar_base", - "PickUpEffect": "Hero Altar Pickup", - "PlacingEffect": "Hero Altar Place", - "IsHeroBarrack": true, - "HeroType": "Grand Warden", - "ShareHeroCombatData": true, - "HintPriority": 700 - } - }, - "Eagle Artillery": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_ARTILLERY", - "InfoTID": "TID_ARTILLERY_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "doom_cannon_lvl1", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 6000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "ExportNameUpgradeAnim": "doom_cannon_lvl1_upgrade", - "Hitpoints": 4000, - "RegenTime": 20, - "AttackRange": 5000, - "AttackSpeed": 10000, - "CoolDownOverride": 6992, - "DPS": 0, - "Damage": 20, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Artillery Attack", - "HitEffect": "Ancient Hit", - "Projectile": "Artillery Ammo1", - "ExportNameDamaged": "destroyedBuilding_4m_base_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 30, - "AmmoResource": "Elixir", - "AmmoCost": 35000, - "MinAttackRange": 700, - "DamageRadius": 300, - "PushBack": 50, - "LoadAmmoEffect": "Artillery Load", - "NoAmmoEffect": "Artillery No Ammo", - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Artillery Placing", - "StrengthWeight": 4900, - "TargetGroups": true, - "TargetGroupsRadius": 500, - "ExportNameBeamStart": "beam_up", - "ExportNameBeamEnd": "beam_down", - "WakeUpSpeed": 1125, - "WakeUpSpace": 200, - "PreAttackEffect": "Artillery PreAttack", - "BurstCount": 3, - "BurstDelay": 750, - "HintPriority": 150, - "PreviewScenario": "AncientArtillery" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_ARTILLERY", - "InfoTID": "TID_ARTILLERY_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "doom_cannon_lvl2", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 8000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "ExportNameUpgradeAnim": "doom_cannon_lvl2_upgrade", - "Hitpoints": 4400, - "RegenTime": 21, - "AttackRange": 5000, - "AttackSpeed": 10000, - "CoolDownOverride": 6992, - "DPS": 0, - "Damage": 25, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Artillery Attack", - "HitEffect": "Ancient Hit", - "Projectile": "Artillery Ammo2", - "ExportNameDamaged": "destroyedBuilding_4m_base_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 30, - "AmmoResource": "Elixir", - "AmmoCost": 40000, - "MinAttackRange": 700, - "DamageRadius": 300, - "PushBack": 50, - "LoadAmmoEffect": "Artillery Load", - "NoAmmoEffect": "Artillery No Ammo", - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Artillery Placing", - "StrengthWeight": 4450, - "TargetGroups": true, - "TargetGroupsRadius": 500, - "ExportNameBeamStart": "beam_up", - "ExportNameBeamEnd": "beam_down", - "WakeUpSpeed": 1125, - "WakeUpSpace": 200, - "PreAttackEffect": "Artillery PreAttack", - "BurstCount": 3, - "BurstDelay": 750, - "HintPriority": 150, - "PreviewScenario": "AncientArtillery" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_ARTILLERY", - "InfoTID": "TID_ARTILLERY_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "doom_cannon_lvl3", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 10000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "ExportNameUpgradeAnim": "doom_cannon_lvl3_upgrade", - "Hitpoints": 4800, - "RegenTime": 21, - "AttackRange": 5000, - "AttackSpeed": 10000, - "CoolDownOverride": 6992, - "DPS": 0, - "Damage": 30, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Artillery Attack", - "HitEffect": "Ancient Hit", - "Projectile": "Artillery Ammo3", - "ExportNameDamaged": "destroyedBuilding_4m_base_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 30, - "AmmoResource": "Elixir", - "AmmoCost": 45000, - "MinAttackRange": 700, - "DamageRadius": 300, - "PushBack": 50, - "LoadAmmoEffect": "Artillery Load", - "NoAmmoEffect": "Artillery No Ammo", - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Artillery Placing", - "StrengthWeight": 4100, - "TargetGroups": true, - "TargetGroupsRadius": 500, - "ExportNameBeamStart": "beam_up", - "ExportNameBeamEnd": "beam_down", - "WakeUpSpeed": 1125, - "WakeUpSpace": 200, - "PreAttackEffect": "Artillery PreAttack", - "BurstCount": 3, - "BurstDelay": 750, - "HintPriority": 150, - "PreviewScenario": "AncientArtillery" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_ARTILLERY", - "InfoTID": "TID_ARTILLERY_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "doom_cannon_lvl4", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 13000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "ExportNameUpgradeAnim": "doom_cannon_lvl4_upgrade", - "Hitpoints": 5200, - "RegenTime": 21, - "AttackRange": 5000, - "AttackSpeed": 10000, - "CoolDownOverride": 6992, - "DPS": 0, - "Damage": 35, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Artillery Attack", - "HitEffect": "Ancient Hit", - "Projectile": "Artillery Ammo4", - "ExportNameDamaged": "destroyedBuilding_4m_base_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 30, - "AmmoResource": "Elixir", - "AmmoCost": 50000, - "MinAttackRange": 700, - "DamageRadius": 300, - "PushBack": 50, - "LoadAmmoEffect": "Artillery Load", - "NoAmmoEffect": "Artillery No Ammo", - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Artillery Placing", - "StrengthWeight": 3800, - "TargetGroups": true, - "TargetGroupsRadius": 500, - "ExportNameBeamStart": "beam_up", - "ExportNameBeamEnd": "beam_down", - "WakeUpSpeed": 1125, - "WakeUpSpace": 200, - "PreAttackEffect": "Artillery PreAttack", - "BurstCount": 3, - "BurstDelay": 750, - "HintPriority": 150, - "PreviewScenario": "AncientArtillery" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_ARTILLERY", - "InfoTID": "TID_ARTILLERY_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "doom_cannon_lvl5", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 17000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "ExportNameUpgradeAnim": "doom_cannon_lvl5_upgrade", - "Hitpoints": 5600, - "RegenTime": 21, - "AttackRange": 5000, - "AttackSpeed": 10000, - "CoolDownOverride": 6992, - "DPS": 0, - "Damage": 40, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Artillery Attack", - "HitEffect": "Ancient Hit", - "Projectile": "Artillery Ammo5", - "ExportNameDamaged": "destroyedBuilding_4m_base_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 30, - "AmmoResource": "Elixir", - "AmmoCost": 55000, - "MinAttackRange": 700, - "DamageRadius": 300, - "PushBack": 50, - "LoadAmmoEffect": "Artillery Load", - "NoAmmoEffect": "Artillery No Ammo", - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Artillery Placing", - "StrengthWeight": 3550, - "TargetGroups": true, - "TargetGroupsRadius": 500, - "ExportNameBeamStart": "beam_up", - "ExportNameBeamEnd": "beam_down", - "WakeUpSpeed": 1125, - "WakeUpSpace": 200, - "PreAttackEffect": "Artillery PreAttack", - "BurstCount": 3, - "BurstDelay": 750, - "HintPriority": 150, - "PreviewScenario": "AncientArtillery" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_ARTILLERY", - "InfoTID": "TID_ARTILLERY_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "doom_cannon_lvl6", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 21500000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "ExportNameUpgradeAnim": "doom_cannon_lvl6_upgrade", - "Hitpoints": 5900, - "RegenTime": 21, - "AttackRange": 5000, - "AttackSpeed": 10000, - "CoolDownOverride": 6992, - "DPS": 0, - "Damage": 45, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Artillery Attack", - "HitEffect": "Ancient Hit", - "Projectile": "Artillery Ammo6", - "ExportNameDamaged": "destroyedBuilding_4m_base_rock", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "laboratory_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 30, - "AmmoResource": "Elixir", - "AmmoCost": 60000, - "MinAttackRange": 700, - "DamageRadius": 300, - "PushBack": 50, - "LoadAmmoEffect": "Artillery Load", - "NoAmmoEffect": "Artillery No Ammo", - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Artillery Placing", - "StrengthWeight": 3400, - "TargetGroups": true, - "TargetGroupsRadius": 500, - "ExportNameBeamStart": "beam_up", - "ExportNameBeamEnd": "beam_down", - "WakeUpSpeed": 1125, - "WakeUpSpace": 200, - "PreAttackEffect": "Artillery PreAttack", - "BurstCount": 3, - "BurstDelay": 750, - "HintPriority": 150, - "PreviewScenario": "AncientArtillery" - } - }, - "Bomb Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl1", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 700000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 650, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 24, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed1", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit", - "Projectile": "Bomb Tower Ammo1", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl1", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 400, - "DieDamage": 150, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl2", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 700, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 28, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed1", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit", - "Projectile": "Bomb Tower Ammo1", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl1", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 420, - "DieDamage": 180, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl3", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1600000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 750, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 32, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed2", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit2", - "Projectile": "Bomb Tower Ammo2", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl2", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 440, - "DieDamage": 220, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl4", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 850, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 40, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed3", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit2", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 260, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl5", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2800000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1050, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 48, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed3", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 300, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl6", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 4000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1300, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 56, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed4", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 350, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl7", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 6300000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1600, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 64, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed4", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 400, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl8", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 8800000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1900, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 72, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed4", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 450, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl9", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12300000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 2300, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 84, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed4", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 500, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl10", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 2500, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 94, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed4", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 550, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_BOMB_TOWER", - "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "bomb_tower_lvl11", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 14, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20800000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 2700, - "RegenTime": 25, - "AttackRange": 600, - "AttackSpeed": 1100, - "DPS": 104, - "DestroyEffect": "Building Destroyed", - "DestroyDamageEffect": "Bomb Tower Destroyed4", - "AttackEffect": "Bomb Tower Throw Start", - "HitEffect": "Bomb Tower Hit3", - "Projectile": "Bomb Tower Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 150, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "DefenderCharacter": "BomberTower_lvl3", - "DefenderCount": 1, - "DefenderZ": 145, - "StrengthWeight": 460, - "DieDamage": 600, - "DieDamageRadius": 275, - "DieDamageEffect": "Bomb Tower Explode", - "DieDamageDelay": 1000, - "HintPriority": 150, - "PreviewScenario": "DefenseBombTower" - } - }, - "Builder Hall": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl1", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 0, - "CapitalHallLevel": 0, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 50000, - "MaxStoredElixir2": 50000, - "LootOnDestruction": true, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 1, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl2", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 5, - "BuildResource": "Gold2", - "BuildCost": 3500, - "CapitalHallLevel": 1, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 75000, - "MaxStoredElixir2": 75000, - "LootOnDestruction": true, - "Hitpoints": 800, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 2, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl3", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 30000, - "CapitalHallLevel": 2, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 100000, - "MaxStoredElixir2": 100000, - "LootOnDestruction": true, - "Hitpoints": 975, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 3, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl4", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 200000, - "CapitalHallLevel": 3, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 150000, - "MaxStoredElixir2": 150000, - "LootOnDestruction": true, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 4, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl5", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 400000, - "CapitalHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 900000, - "MaxStoredElixir2": 900000, - "LootOnDestruction": true, - "Hitpoints": 1350, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 5, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl6", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "CapitalHallLevel": 5, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 900000, - "MaxStoredElixir2": 900000, - "LootOnDestruction": true, - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 6, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl7", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1800000, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 1100000, - "MaxStoredElixir2": 1100000, - "LootOnDestruction": true, - "Hitpoints": 1850, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 7, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl8", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2800000, - "CapitalHallLevel": 7, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 1300000, - "MaxStoredElixir2": 1300000, - "LootOnDestruction": true, - "Hitpoints": 2150, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 8, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl9", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3800000, - "CapitalHallLevel": 8, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 1500000, - "MaxStoredElixir2": 1500000, - "LootOnDestruction": true, - "Hitpoints": 2450, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 9, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_TOWN_HALL2", - "InfoTID": "TID_TOWN_HALL2_INFO", - "BuildingClass": "Town Hall2", - "SecondaryTargetingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_TH_lvl10", - "ExportNameNpc": "new_TH_lvl1", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4800000, - "CapitalHallLevel": 9, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "MaxStoredGold2": 1500000, - "MaxStoredElixir2": 1500000, - "LootOnDestruction": true, - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 10, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 1 - } - }, - "Clock Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl1", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 150000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl2", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 180000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 800, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl3", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 0, - "BuildTimeH": 4, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 220000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 975, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl4", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl5", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 700000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 1350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl6", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl7", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1700000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 1850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl8", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2200000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 2150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl9", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2700000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 2450, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_CLOCK_TOWER", - "InfoTID": "TID_CLOCK_TOWER_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "clocktower_lvl10", - "ExportNameConstruction": "town_hall_const", - "ExportNameLocked": "clocktower_broken", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3700000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "BoostCost": 0, - "FreeBoost": true, - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_clockTower_lvl1", - "PickUpEffect": "Clock Tower Pickup", - "PlacingEffect": "Clock Tower Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 250, - "Stage": 1 - } - }, - "Builder Barracks": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl1", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 20, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl2", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 1, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 4000, - "TownHallLevel": 2, - "CapitalHallLevel": 2, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 25, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl3", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 10, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 10000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 30, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 400, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl4", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 30, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 25000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 35, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 460, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl5", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 100000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 40, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 550, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl6", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 150000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 45, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl7", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 0, - "BuildTimeH": 9, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 300000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 50, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl8", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 55, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl9", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 55, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1000, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl10", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1500000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 55, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "11": { - "BuildingLevel": 11, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl11", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 55, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - }, - "12": { - "BuildingLevel": 12, - "TID": "TID_BUILDING_BARRACK2", - "InfoTID": "TID_BARRACK2_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_training_camp_lvl12", - "ExportNameConstruction": "barracks_const", - "ExportNameLocked": "adv_training_camp_broken", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 3000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "UnitProduction": 55, - "ProducesUnitsOfType": 1, - "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", - "Hitpoints": 1450, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 150, - "Stage": 1 - } - }, - "Double Cannon": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl1", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 10, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 20000, - "TownHallLevel": 2, - "CapitalHallLevel": 2, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 600, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 50, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Small", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 436, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl2", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 50000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 690, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 55, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Small", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball2", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl2_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 456, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl3", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 3, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 80000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 800, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 61, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Small", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl3_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 476, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl4", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 910, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 67, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Small", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball4", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl4_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 496, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl6", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 900000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1050, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 74, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Medium", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball6", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl7_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 520, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl8", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1400000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1250, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 81, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Large", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball8", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl8_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 544, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl9", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2200000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1450, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 89, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Large", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball9", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl9_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 568, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl10", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3200000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "Hitpoints": 1700, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 98, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Large", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball10", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl9_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 596, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl11", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4200000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "Hitpoints": 1950, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 108, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Large", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball10", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl9_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 620, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_DOUBLE_CANNON", - "InfoTID": "TID_DOUBLE_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "doubleCannon_lvl12", - "ExportNameConstruction": "basic_turret_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5200000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "Hitpoints": 2200, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1600, - "CoolDownOverride": 800, - "Damage": 120, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Double Cannon Attack Large", - "HitEffect": "Generic Hit", - "Projectile": "DoubleCannonball10", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon2_lvl9_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "AnimateTurret": true, - "StrengthWeight": 640, - "BurstCount": 4, - "BurstDelay": 192, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - } - }, - "Multi Mortar": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl1", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 600000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 500, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 45, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo1", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl1", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 5720, - "BurstCount": 3, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl2", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 700000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 575, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 45, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo2", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl2", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 5940, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl3", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 800000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 660, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 50, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo2", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl2", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6160, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl4", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 760, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 55, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo2", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl2", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6400, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl5", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 875, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 60, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl3", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6640, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl6", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1600000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1050, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 66, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo4", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl4", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6900, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl7", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1250, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 73, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo5", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl5", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 7160, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl8", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3500000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1450, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 80, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo5", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl5", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 7440, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl9", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1650, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 88, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo5", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl5", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 7720, - "BurstCount": 4, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_MULTI_MORTAR", - "InfoTID": "TID_MULTI_MORTAR_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "multi_mortar_lvl10", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5500000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1850, - "RegenTime": 1, - "AttackRange": 1100, - "AttackSpeed": 5000, - "CoolDownOverride": 3000, - "Damage": 88, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Multi Mortar Attack 2", - "HitEffect": "Multi Mortar Hit", - "Projectile": "Mortar2 Ammo5", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "newVillage_multi_mortar_lvl5", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 400, - "DamageRadius": 300, - "PickUpEffect": "Multi Mortar Pickup", - "PlacingEffect": "Multi Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 8000, - "BurstCount": 5, - "BurstDelay": 500, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2" - } - }, - "Star Laboratory": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl1", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl1", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl2", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 10, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 15000, - "TownHallLevel": 2, - "CapitalHallLevel": 2, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 800, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl2", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl3", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 30, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 50000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 975, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl3", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl4", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl4", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl5", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 700000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl5", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl6", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl6", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl7", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 1850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl6", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl8", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 3000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 2150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl6", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl9", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 4000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 2450, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl6", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_TELESCOPE", - "InfoTID": "TID_TELESCOPE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "Telescope_lvl10", - "ExportNameConstruction": "spell_factory_const", - "ExportNameLocked": "Telescope_broken", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 5000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "UNIT", - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "newVillage_lab_lvl6", - "PickUpEffect": "Laboratory Pickup", - "PlacingEffect": "Laboratory Placing", - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 800, - "Stage": 1 - } - }, - "Master Builder's Hut": { - "1": { - "BuildingLevel": 1, - "TID": "TID_WORKER2_BUILDING", - "InfoTID": "TID_WORKER2_INFO", - "BuildingClass": "Worker2", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Diamonds", - "BuildCost": 20000, - "TownHallLevel": 1000, - "CapitalHallLevel": 1, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1 - } - }, - "Reinforcement Camp": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_REINFORCEMENT_CAMP", - "InfoTID": "TID_REINFORCEMENT_CAMP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "adv_fireplace_lvl7", - "ExportNameConstruction": "basic_turret_const", - "ExportNameLocked": "adv_fireplace_broken_3x3", - "BuildResource": "Elixir2", - "BuildCost": 1500000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "ArmySlotType": "Reinforcement", - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "adv_fireplace_lvl1_base", - "PickUpEffect": "Troop Housing Pickup", - "PlacingEffect": "Troop Housing Placing", - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 750, - "Stage": 2 - } - }, - "Firecrackers": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl1", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 15, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 40000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 400, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 19, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit1", - "Projectile": "FireworkMini", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 324, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl2", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 80000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 460, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 21, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit1", - "Projectile": "FireworkMini2", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 330, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl3", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 4, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 120000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 530, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 23, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit2", - "Projectile": "FireworkMini3", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 336, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl4", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 610, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 25, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit2", - "Projectile": "FireworkMini4", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 342, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl5", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 800000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 700, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 27, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit3", - "Projectile": "FireworkMini5", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 348, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl6", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 850, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 30, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit3", - "Projectile": "FireworkMini5", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 354, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl7", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1000, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 33, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit3", - "Projectile": "FireworkMini5", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 360, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl8", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1150, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 36, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit3", - "Projectile": "FireworkMini6", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 366, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl9", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1300, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 40, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit3", - "Projectile": "FireworkMini6", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 372, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", - "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_box_lvl10", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1500, - "RegenTime": 1, - "AttackRange": 900, - "AttackSpeed": 800, - "Damage": 44, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Mini Attack", - "HitEffect": "Air Defence Mini hit3", - "Projectile": "FireworkMini6", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airdefence_box_base_lvl1", - "AirTargets": true, - "GroundTargets": false, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 378, - "BurstCount": 3, - "BurstDelay": 64, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - } - }, - "Guard Post": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl1", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 4, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 200000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 422, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 2, - "HintPriority": 150 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl2", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 240000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 379, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 4, - "HintPriority": 150 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl3", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 280000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 400, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 265, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 6, - "HintPriority": 150 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl4", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 320000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 460, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 265, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 8, - "HintPriority": 150 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl5", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 550, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 212, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 10, - "HintPriority": 150 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl6", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1400000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 212, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 12, - "HintPriority": 150 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl7", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2300000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 190, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 14, - "HintPriority": 150 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl8", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3200000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 190, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 16, - "HintPriority": 150 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl9", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4100000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1000, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 190, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 18, - "HintPriority": 150 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_GUARD_POST", - "InfoTID": "TID_GUARD_POST_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "GuardPost_lvl10", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5100000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "teslatower_upg", - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "newVillage_guard_post_lvl1", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "StrengthWeight": 190, - "VillageType": 1, - "DefenceTroopCount": 2, - "DefenceTroopCharacter": "Barbarian2", - "DefenceTroopCharacter2": "Archer2", - "DefenceTroopLevel": 20, - "HintPriority": 150 - } - }, - "Mega Tesla": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl1", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 700, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 380, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1493, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl2", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3100000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 800, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 418, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1522, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl3", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3200000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 950, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 460, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1552, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl4", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3300000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1100, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 506, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1583, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl5", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3400000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1300, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 556, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1614, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl6", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3600000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1500, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 612, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1646, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl7", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3800000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1700, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 673, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1678, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl8", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1900, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 741, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1711, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl9", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4800000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2150, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 816, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1744, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_MEGA_TESLA", - "InfoTID": "TID_MEGA_TESLA_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "mega_tesla_lvl10", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5800000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2400, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 4000, - "Damage": 896, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MegaTesla Attack_1", - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 40, - "AttackEffectAlt": "MegaTesla Attack_1_chain", - "HitEffect": "Mega Tesla Hit", - "ExportNameDamaged": "destroyedBuilding_3l_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Tesla Pickup", - "PlacingEffect": "Tesla Placing", - "StrengthWeight": 1770, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - } - }, - "Battle Machine": { - "1": { - "BuildingLevel": 1, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_WARMACHINE_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "heroaltar_warmachine_lvl1", - "ExportNameConstruction": "air_mortar_const", - "ExportNameLocked": "heroaltar_warmachine_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 900000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "heroaltar_barbarian_king_upg", - "LevelRequirementTID": "TID_REQUIRED_BUILDERS_HALL_LEVEL", - "Hitpoints": 250, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "heroaltar_base", - "PickUpEffect": "Hero Altar Pickup", - "PlacingEffect": "Hero Altar Place", - "Locked": true, - "StartingHomeCount": 1, - "IsHeroBarrack": true, - "HeroType": "Warmachine", - "VillageType": 1, - "HintPriority": 700, - "Stage": 1 - } - }, - "Air Bombs": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl1", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 300000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1000, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 270, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_1", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl1", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 556, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl2", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 320000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1100, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 297, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_2", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl2", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 583, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl3", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 340000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1250, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 327, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl3", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 612, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl4", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 360000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1400, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 359, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl4", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 642, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl5", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1600, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 395, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl5", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 674, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl6", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1850, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 435, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl6", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 707, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl7", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2400000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2100, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 478, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_3", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl7", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 742, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl8", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3400000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2350, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 526, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_4", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl8", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 779, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl9", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4400000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2600, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 579, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_4", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl8", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 816, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_AIR_DEFENSE2", - "InfoTID": "TID_AIR_DEFENSE2_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "airDefence_factory_lvl10", - "ExportNameConstruction": "air_mortar_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5400000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2900, - "RegenTime": 1, - "AttackRange": 750, - "AttackSpeed": 3000, - "Damage": 637, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Air Defence Barrel Attack", - "HitEffect": "Air Defense Barrel Hit", - "Projectile": "AirDefenceBalloon_4", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "airDefence_factory_lvl8", - "AirTargets": true, - "GroundTargets": false, - "DamageRadius": 150, - "PushBack": 50, - "PickUpEffect": "Air Defence Pickup", - "PlacingEffect": "Air Defence Placing", - "StrengthWeight": 850, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "AirDefense2" - } - }, - "Crusher": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl1", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 120000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1000, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 440, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 360, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl2", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 0, - "BuildTimeH": 5, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 180000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1100, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 484, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 376, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl3", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 220000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1250, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 532, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 392, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl4", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 350000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1400, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 586, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 408, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl5", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1600, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 644, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 428, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl6", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1850, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 709, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 448, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl7", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2400000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2100, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 779, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 468, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl8", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3400000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2350, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 857, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 488, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl9", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4400000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2600, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 943, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 508, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_CRUSHER", - "InfoTID": "TID_BUILDING_CRUSHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Crusher_lvl10", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5400000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2900, - "RegenTime": 1, - "AttackRange": 230, - "AttackSpeed": 3500, - "CoolDownOverride": 2200, - "Damage": 1037, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "CrusherAttack", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_3m_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl1_base", - "AirTargets": false, - "GroundTargets": true, - "DamageRadius": 280, - "PushBack": 50, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "StrengthWeight": 528, - "VillageType": 1, - "SelfAsAoeCenter": true, - "HintPriority": 150, - "PreviewScenario": "Crusher" - } - }, - "Roaster": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl1", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 800, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 15, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit1-3", - "Projectile": "Flamer_projectile1-3", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl1", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 7200, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl2", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1200000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 950, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 17, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit1-3", - "Projectile": "Flamer_projectile1-3", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl2", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 7344, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl3", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1400000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1100, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 19, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit1-3", - "Projectile": "Flamer_projectile1-3", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl3", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 7490, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl4", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1300, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 21, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit4-6", - "Projectile": "Flamer_projectile4-6", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl4", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 7639, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl5", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1600000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1500, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 23, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit4-6", - "Projectile": "Flamer_projectile4-6", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl5", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 7791, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl6", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1700000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1700, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 25, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit4-6", - "Projectile": "Flamer_projectile4-6", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl6", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 7946, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl7", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2600000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 1900, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 27, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit7-8", - "Projectile": "Flamer_projectile7-8", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl7", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 8104, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl8", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3600000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2100, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 30, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit7-8", - "Projectile": "Flamer_projectile7-8", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl8", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 8266, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl9", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4600000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2350, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 33, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit7-8", - "Projectile": "Flamer_projectile7-8", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl8", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 8432, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_FLAMER", - "InfoTID": "TID_FLAMER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Flamer_lvl10", - "ExportNameConstruction": "darkelixir_storage_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5600000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "Hitpoints": 2600, - "RegenTime": 1, - "AttackRange": 700, - "AttackSpeed": 1800, - "CoolDownOverride": 1500, - "Damage": 36, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Flamer_attack", - "HitEffect": "Flamer_hit7-8", - "Projectile": "Flamer_projectile7-8", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "shadow_flamer_lvl8", - "AirTargets": true, - "GroundTargets": true, - "DamageRadius": 120, - "PickUpEffect": "Double Cannon Pickup", - "PlacingEffect": "Double Cannon Placing", - "StrengthWeight": 8600, - "BurstCount": 15, - "BurstDelay": 140, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - } - }, - "Giant Cannon": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl1", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 700, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 205, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl9_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4200, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl2", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2100000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 800, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 226, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl10_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4284, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl3", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2200000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 950, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 248, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4369, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl4", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2300000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1100, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 273, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4456, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl5", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2400000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1300, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 300, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4545, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl6", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1500, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 330, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4635, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl7", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2700000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "Hitpoints": 1700, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 363, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4727, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl8", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3800000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "Hitpoints": 1900, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 399, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4821, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl9", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4700000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "Hitpoints": 2150, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 439, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4821, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_GIANT_CANNON", - "InfoTID": "TID_GIANT_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "megaCannon_lvl10", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5700000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "Hitpoints": 2400, - "RegenTime": 1, - "AttackRange": 950, - "AttackSpeed": 5000, - "Damage": 483, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Giant Cannon Attack", - "HitEffect": "Generic Hit", - "Projectile": "GiantCannonball1", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 4900, - "PenetratingProjectile": true, - "PenetratingRadius": 100, - "PenetratingExtraRange": 4800, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "Defense2" - } - }, - "Gem Mine": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl1", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 0, - "BuildTimeH": 1, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 120000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 9, - "ResourceMax": 10, - "ResourceIconLimit": 1, - "Hitpoints": 300, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl2", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 0, - "BuildTimeH": 2, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 180000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 10, - "ResourceMax": 11, - "ResourceIconLimit": 1, - "Hitpoints": 350, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl3", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 0, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 240000, - "TownHallLevel": 3, - "CapitalHallLevel": 3, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 11, - "ResourceMax": 12, - "ResourceIconLimit": 1, - "Hitpoints": 400, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl4", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 0, - "BuildTimeH": 8, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 450000, - "TownHallLevel": 4, - "CapitalHallLevel": 4, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 12, - "ResourceMax": 13, - "ResourceIconLimit": 1, - "Hitpoints": 460, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl5", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 0, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1000000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 13, - "ResourceMax": 14, - "ResourceIconLimit": 1, - "Hitpoints": 550, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl6", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 14, - "ResourceMax": 15, - "ResourceIconLimit": 1, - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl7", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 16, - "ResourceMax": 16, - "ResourceIconLimit": 1, - "Hitpoints": 750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl8", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 3500000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 18, - "ResourceMax": 17, - "ResourceIconLimit": 1, - "Hitpoints": 850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl9", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 4500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 20, - "ResourceMax": 18, - "ResourceIconLimit": 1, - "Hitpoints": 1000, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_GEM_MINE", - "InfoTID": "TID_GEM_MINE_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "gem_mine_lvl10", - "ExportNameConstruction": "goldmine_const", - "ExportNameLocked": "gem_mine_broken", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 5500000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "goldmine_upg", - "ProducesResource": "Diamonds", - "ResourcePer100Hours": 21, - "ResourceMax": 19, - "ResourceIconLimit": 1, - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "goldmine_base", - "PickUpEffect": "Gold Mine Pickup", - "PlacingEffect": "Gold Mine Placing", - "Locked": true, - "StartingHomeCount": 1, - "VillageType": 1, - "RedMul": 245, - "GreenMul": 245, - "BlueMul": 255, - "RedAdd": 0, - "GreenAdd": 0, - "BlueAdd": 10, - "HintPriority": 100, - "Stage": 1 - } - }, - "Workshop": { - "1": { - "BuildingLevel": 1, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl1", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 3000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 1, - "UnitProduction": 2, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1000, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl2", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 5000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 2, - "UnitProduction": 3, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1100, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl3", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 7000000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 3, - "UnitProduction": 3, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1200, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl4", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 9000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 3, - "UnitProduction": 3, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1300, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl5", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 10000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 3, - "UnitProduction": 3, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1400, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl6", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 14000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 3, - "UnitProduction": 3, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1500, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_SIEGE_WORKSHOP", - "InfoTID": "TID_SIEGE_WORKSHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "siegeWorkshop_lvl7", - "ExportNameConstruction": "siegeWorkshop_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 19000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "siegeWorkshop_upg", - "HousingSpaceSiege": 3, - "UnitProduction": 3, - "ProducesUnitsOfType": 3, - "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", - "BoostCost": 5, - "Hitpoints": 1600, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", - "BuildingW": 4, - "BuildingH": 4, - "ExportNameBase": "siege_workshop_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 800, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Goblin Castle": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_GOBLIN_CASTLE", - "InfoTID": "TID_BUILDING_GOBLIN_CASTLE", - "BuildingClass": "Npc", - "SWF": "sc/buildings.sc", - "ExportName": "goblin_clancastle_01", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 10000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 1000000, - "MaxStoredWarElixir": 1000000, - "MaxStoredWarDarkElixir": 10000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 50, - "HousingSpaceAlt": 0, - "HousingSpaceSiege": 0, - "Hitpoints": 4000, - "RegenTime": 10, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1 - } - }, - "Foreboding Cave": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_DRAGON_CAVE", - "InfoTID": "TID_BUILDING_DRAGON_CAVE", - "BuildingClass": "Npc", - "SWF": "sc/buildings.sc", - "ExportName": "deco_dragoncave_01", - "ExportNameConstruction": "generic_construction_state3", - "ExportNameLocked": "alliance_castle_lvl1_broken", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 10000, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "alliance_castle_upg", - "MaxStoredWarGold": 1000000, - "MaxStoredWarElixir": 1000000, - "MaxStoredWarDarkElixir": 10000, - "LootOnDestruction": true, - "Bunker": true, - "HousingSpace": 50, - "HousingSpaceAlt": 0, - "HousingSpaceSiege": 0, - "Hitpoints": 25000, - "RegenTime": 10, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "alliance_castle_lvl1_broken", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "alliance_castle_base", - "PickUpEffect": "Alliance Castle Pickup", - "PlacingEffect": "Alliance Castle Placing", - "Locked": true, - "StartingHomeCount": 1 - } - }, - "Lava Launcher": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl1", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 500, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 50, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo1", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 5720, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl2", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3100000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 575, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 55, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo2", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 5940, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl3", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3200000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 660, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 61, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo3", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6160, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl4", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3400000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 760, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 67, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo4", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6400, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl5", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3700000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 875, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 73, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo5", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6640, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl6", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1050, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 81, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo6", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 6900, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl7", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4300000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1250, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 89, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo7", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 7160, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl8", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4600000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1450, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 97, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo8", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 7440, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl9", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4900000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1650, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 107, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo9", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 7700, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_LAVA_LAUNCHER", - "InfoTID": "TID_LAVA_LAUNCHER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings2.sc", - "ExportName": "Lava_Launcher_lvl10", - "ExportNameConstruction": "mortar_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5900000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "mortar_upg", - "Hitpoints": 1850, - "RegenTime": 1, - "AttackRange": 1300, - "AttackSpeed": 7000, - "CoolDownOverride": 3000, - "Damage": 118, - "RandomHitPosition": true, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Lavalauncher Attack", - "HitEffect": "Mortar Hit lvl8", - "Projectile": "Lava Ammo10", - "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "mortar_base", - "AirTargets": false, - "GroundTargets": true, - "MinAttackRange": 600, - "DamageRadius": 300, - "PickUpEffect": "Mortar Pickup", - "PlacingEffect": "Mortar Placing", - "AnimateTurret": true, - "StrengthWeight": 8000, - "VillageType": 1, - "HintPriority": 150, - "PreviewScenario": "DefenseLongRange2b" - } - }, - "B.O.B's Hut": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BOB_HUT", - "InfoTID": "TID_BOB_HUT_INFO", - "BuildingClass": "Worker2", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut_arto_lvl5_a", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 0, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "BoostCost": 500, - "Hitpoints": 250, - "RegenTime": 20, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing" - } - }, - "B.O.B Control": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BOB_UNLOCK_BUILDING", - "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut_arto_lvl1", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 100000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "Hitpoints": 250, - "RegenTime": 20, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "VillageType": 1, - "HintPriority": 300, - "UpgradeTasks": "Arto Upgrade Tasks", - "UpgradeTasksRequired": 1, - "Stage": 2 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BOB_UNLOCK_BUILDING", - "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut_arto_lvl2", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 500000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "Hitpoints": 250, - "RegenTime": 20, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "VillageType": 1, - "HintPriority": 300, - "UpgradeTasks": "Arto Upgrade Tasks", - "UpgradeTasksRequired": 2, - "Stage": 2 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BOB_UNLOCK_BUILDING", - "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut_arto_lvl3", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "Hitpoints": 250, - "RegenTime": 20, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "VillageType": 1, - "HintPriority": 300, - "UpgradeTasks": "Arto Upgrade Tasks", - "UpgradeTasksRequired": 3, - "Stage": 2 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BOB_UNLOCK_BUILDING", - "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut_arto_lvl4", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "Hitpoints": 250, - "RegenTime": 20, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "VillageType": 1, - "HintPriority": 300, - "UpgradeTasks": "Arto Upgrade Tasks", - "UpgradeTasksRequired": 4, - "Stage": 2 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BOB_UNLOCK_BUILDING", - "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings2.sc", - "ExportName": "new_builders_hut_arto_lvl5", - "ExportNameConstruction": "worker_building_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "worker_building_upg", - "Hitpoints": 250, - "RegenTime": 20, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "worker_building_base", - "PickUpEffect": "Worker Building Pickup", - "PlacingEffect": "Worker Building Placing", - "VillageType": 1, - "HintPriority": 300, - "UpgradeTasks": "Arto Upgrade Tasks", - "Stage": 2 - } - }, - "Royal Champion": { - "1": { - "BuildingLevel": 1, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_ROYAL_CHAMPION_INFO", - "BuildingClass": "Army", - "ShopBuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "heroaltar_royal_champion_lvl1", - "ExportNameConstruction": "heroaltar_barbarian_king_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "DarkElixir", - "BuildCost": 50000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "heroaltar_elder_upg", - "BoostCost": 5, - "Hitpoints": 250, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "heroaltar_base", - "PickUpEffect": "Hero Altar Pickup", - "PlacingEffect": "Hero Altar Place", - "IsHeroBarrack": true, - "HeroType": "Warrior Princess", - "HintPriority": 700 - } - }, - "Scattershot": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_SCATTERSHOT", - "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "ice_breaker_lvl1", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 11000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "ice_breaker_lvl1_upgrade", - "Hitpoints": 3600, - "RegenTime": 20, - "AttackRange": 1000, - "AttackSpeed": 3228, - "CoolDownOverride": 1500, - "DPS": 125, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Ice Breaker Attack", - "Projectile": "Ice Breaker Ammo1", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 90, - "AmmoResource": "Elixir", - "AmmoCost": 40000, - "MinAttackRange": 300, - "DamageRadius": 100, - "PickUpEffect": "Scattershot Pickup", - "PlacingEffect": "Scattershot Placing", - "StrengthWeight": 700, - "NewTargetAttackDelay": 2200, - "HintPriority": 150, - "AnimationActionFrame": 5, - "PreviewScenario": "DefenseLongRange3" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_SCATTERSHOT", - "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "ice_breaker_lvl2", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12000000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "ice_breaker_lvl2_upgrade", - "Hitpoints": 4200, - "RegenTime": 22, - "AttackRange": 1000, - "AttackSpeed": 3228, - "CoolDownOverride": 1500, - "DPS": 150, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Ice Breaker Attack", - "Projectile": "Ice Breaker Ammo2", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 90, - "AmmoResource": "Elixir", - "AmmoCost": 40000, - "MinAttackRange": 300, - "DamageRadius": 100, - "PickUpEffect": "Scattershot Pickup", - "PlacingEffect": "Scattershot Placing", - "StrengthWeight": 700, - "NewTargetAttackDelay": 2200, - "HintPriority": 150, - "AnimationActionFrame": 5, - "PreviewScenario": "DefenseLongRange3" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_SCATTERSHOT", - "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "ice_breaker_lvl3", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12600000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "ice_breaker_lvl3_upgrade", - "Hitpoints": 4800, - "RegenTime": 24, - "AttackRange": 1000, - "AttackSpeed": 3228, - "CoolDownOverride": 1500, - "DPS": 175, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Ice Breaker Attack", - "Projectile": "Ice Breaker Ammo3", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 90, - "AmmoResource": "Elixir", - "AmmoCost": 40000, - "MinAttackRange": 300, - "DamageRadius": 100, - "PickUpEffect": "Scattershot Pickup", - "PlacingEffect": "Scattershot Placing", - "StrengthWeight": 700, - "NewTargetAttackDelay": 2200, - "HintPriority": 150, - "AnimationActionFrame": 5, - "PreviewScenario": "DefenseLongRange3" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_SCATTERSHOT", - "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "ice_breaker_lvl4", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 21300000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "alliance_castle_upg", - "ExportNameUpgradeAnim": "ice_breaker_lvl4_upgrade", - "Hitpoints": 5100, - "RegenTime": 24, - "AttackRange": 1000, - "AttackSpeed": 3228, - "CoolDownOverride": 1500, - "DPS": 185, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Ice Breaker Attack", - "Projectile": "Ice Breaker Ammo4", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "AirTargets": true, - "GroundTargets": true, - "AmmoCount": 90, - "AmmoResource": "Elixir", - "AmmoCost": 40000, - "MinAttackRange": 300, - "DamageRadius": 100, - "PickUpEffect": "Scattershot Pickup", - "PlacingEffect": "Scattershot Placing", - "StrengthWeight": 700, - "NewTargetAttackDelay": 2200, - "HintPriority": 150, - "AnimationActionFrame": 5, - "PreviewScenario": "DefenseLongRange3" - } - }, - "Pet House": { - "1": { - "BuildingLevel": 1, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl1", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 10000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 700, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl1_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl2", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 12, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 12000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 800, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl2_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl3", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 12, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 14000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 900, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl3_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl4", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 13, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 16000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 1000, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl4_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl5", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 13, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 19750000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 1050, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl5_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl6", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 20000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 1100, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl6_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl7", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 13, - "BuildTimeH": 18, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 20250000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 1150, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl7_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl8", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 20500000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 1200, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl8_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_PET_SHOP", - "InfoTID": "TID_PET_SHOP_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "pet_house_lvl9", - "ExportNameConstruction": "laboratory_const", - "BuildTimeD": 15, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir", - "BuildCost": 21000000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "UpgradesUnitType": "PET", - "Hitpoints": 1250, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "pet_house_lvl9_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Blacksmith": { - "1": { - "BuildingLevel": 1, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl1", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 750000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 10000, - "MaxStoredRareOre": 1000, - "MaxStoredEpicOre": 200, - "Blacksmith": true, - "Hitpoints": 700, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl1", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 1700000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 15000, - "MaxStoredRareOre": 1500, - "MaxStoredEpicOre": 300, - "Blacksmith": true, - "Hitpoints": 800, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl2", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 2300000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 20000, - "MaxStoredRareOre": 2000, - "MaxStoredEpicOre": 400, - "Blacksmith": true, - "Hitpoints": 900, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl2", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 3000000, - "TownHallLevel": 11, - "CapitalHallLevel": 11, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 25000, - "MaxStoredRareOre": 2500, - "MaxStoredEpicOre": 500, - "Blacksmith": true, - "Hitpoints": 1000, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl3", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 5500000, - "TownHallLevel": 12, - "CapitalHallLevel": 12, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 30000, - "MaxStoredRareOre": 3000, - "MaxStoredEpicOre": 600, - "Blacksmith": true, - "Hitpoints": 1100, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl3", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 8500000, - "TownHallLevel": 13, - "CapitalHallLevel": 13, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 35000, - "MaxStoredRareOre": 3500, - "MaxStoredEpicOre": 700, - "Blacksmith": true, - "Hitpoints": 1200, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl4", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 12000000, - "TownHallLevel": 14, - "CapitalHallLevel": 14, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 40000, - "MaxStoredRareOre": 4000, - "MaxStoredEpicOre": 800, - "Blacksmith": true, - "Hitpoints": 1300, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl4", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 8, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 14000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 45000, - "MaxStoredRareOre": 4500, - "MaxStoredEpicOre": 900, - "Blacksmith": true, - "Hitpoints": 1400, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_SMITHY", - "InfoTID": "TID_SMITHY_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings.sc", - "ExportName": "blacksmith_lvl5", - "ExportNameConstruction": "blacksmith_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 16000000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "laboratory_upg", - "MaxStoredCommonOre": 50000, - "MaxStoredRareOre": 5000, - "MaxStoredEpicOre": 1000, - "Blacksmith": true, - "Hitpoints": 1500, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "barracks_base", - "PickUpEffect": "Blacksmith Pickup", - "PlacingEffect": "Blacksmith Placing", - "HintPriority": 1000, - "PreviewScenario": "NoCombatBuilding" - } - }, - "Spell Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_SPELL_TOWER", - "InfoTID": "TID_BUILDING_SPELL_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "spell_tower_lvl1", - "ExportNameConstruction": "generic_construction_state2", - "BuildTimeD": 12, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 14000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "Hitpoints": 2500, - "RegenTime": 20, - "AttackRange": 800, - "DestroyEffect": "Building Destroyed", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "PickUpEffect": "Spell Tower Pickup", - "PlacingEffect": "Spell Tower Placing", - "StrengthWeight": 1000, - "HintPriority": 150, - "PreviewScenario": "NoCombatBuilding", - "UnlockWeaponMode": "SpellTowerRage" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_SPELL_TOWER", - "InfoTID": "TID_BUILDING_SPELL_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "spell_tower_lvl2_rage", - "ExportNameConstruction": "generic_construction_state2", - "BuildTimeD": 12, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 16000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "Hitpoints": 2800, - "RegenTime": 20, - "AttackRange": 800, - "DestroyEffect": "Building Destroyed", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "PickUpEffect": "Spell Tower Pickup", - "PlacingEffect": "Spell Tower Placing", - "StrengthWeight": 1400, - "HintPriority": 150, - "PreviewScenario": "NoCombatBuilding", - "UnlockWeaponMode": "SpellTowerPoison" - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_SPELL_TOWER", - "InfoTID": "TID_BUILDING_SPELL_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "spell_tower_lvl3_rage", - "ExportNameConstruction": "generic_construction_state2", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 18000000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 2, - "Height": 2, - "ExportNameBuildAnim": "air_mortar_upg", - "Hitpoints": 3100, - "RegenTime": 20, - "AttackRange": 800, - "DestroyEffect": "Building Destroyed", - "HitEffect": "Generic Hit", - "ExportNameDamaged": "destroyedBuilding_2l_pit_rockwood", - "BuildingW": 1, - "BuildingH": 1, - "ExportNameBase": "dark_tower_base", - "PickUpEffect": "Spell Tower Pickup", - "PlacingEffect": "Spell Tower Placing", - "StrengthWeight": 1800, - "HintPriority": 150, - "PreviewScenario": "NoCombatBuilding", - "UnlockWeaponMode": "SpellTowerInvisibility" - } - }, - "Monolith": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_MONOLITH", - "InfoTID": "TID_BUILDING_MONOLITH_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "monolith_lvl_1", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 13, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "DarkElixir", - "BuildCost": 300000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "monolith_lvl_1_upgrade", - "Hitpoints": 4747, - "RegenTime": 25, - "AttackRange": 1100, - "AttackSpeed": 1500, - "CoolDownOverride": 750, - "DPS": 150, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Monolith Attack", - "HitEffect": "Explosive Arrow", - "Projectile": "MonolithProjectileMin;MonolithProjectileMed;MonolithProjectileMax", - "ExportNameDamaged": "destroyedBuilding_3l_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Monolith Pickup", - "PlacingEffect": "Monolith Placing", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 1400, - "HintPriority": 150, - "AnimationActionFrame": 5, - "DamagePermilHp": 110, - "ProjectileVariantByTargetMaxHP": "600;2500", - "DefaultProjectileVariant": 3, - "PreviewScenario": "Monolith" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_MONOLITH", - "InfoTID": "TID_BUILDING_MONOLITH_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "monolith_lvl_2", - "ExportNameConstruction": "tower_turret_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "DarkElixir", - "BuildCost": 360000, - "TownHallLevel": 15, - "CapitalHallLevel": 15, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "tower_turret_upg", - "ExportNameUpgradeAnim": "monolith_lvl_2_upgrade", - "Hitpoints": 5050, - "RegenTime": 26, - "AttackRange": 1100, - "AttackSpeed": 1500, - "CoolDownOverride": 750, - "DPS": 175, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Monolith Attack", - "HitEffect": "Explosive Arrow", - "Projectile": "MonolithProjectileMin;MonolithProjectileMed;MonolithProjectileMax", - "ExportNameDamaged": "destroyedBuilding_3l_base_rockwood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "dark_tower_base", - "AirTargets": true, - "GroundTargets": true, - "PickUpEffect": "Monolith Pickup", - "PlacingEffect": "Monolith Placing", - "DefenderCount": 1, - "DefenderZ": 155, - "StrengthWeight": 1300, - "HintPriority": 150, - "AnimationActionFrame": 5, - "DamagePermilHp": 120, - "ProjectileVariantByTargetMaxHP": "650;2750", - "DefaultProjectileVariant": 3, - "PreviewScenario": "Monolith" - } - }, - "O.T.T.O's Outpost": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_01", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 0, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 1, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 2, - "SecondaryTroopLvl": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_02", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 1, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 800, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 2, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 2, - "SecondaryTroopLvl": 2 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_03", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1250000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 975, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 3, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 2, - "SecondaryTroopLvl": 3 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_04", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 4, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 3, - "SecondaryTroopLvl": 4 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_05", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 1750000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 1350, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 5, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 3, - "SecondaryTroopLvl": 5 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_06", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 2000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 1600, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 6, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 3, - "SecondaryTroopLvl": 6 - }, - "7": { - "BuildingLevel": 7, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_07", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 7, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 3000000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 1850, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 7, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 4, - "SecondaryTroopLvl": 7 - }, - "8": { - "BuildingLevel": 8, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_08", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 9, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 4000000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 2150, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 8, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 4, - "SecondaryTroopLvl": 8 - }, - "9": { - "BuildingLevel": 9, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_09", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 10, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 5000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 2450, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 9, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 4, - "SecondaryTroopLvl": 9 - }, - "10": { - "BuildingLevel": 10, - "TID": "TID_BUILDING_OTTOS_OUTPOST", - "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", - "BuildingClass": "Town Hall2", - "SWF": "sc/buildings2.sc", - "ExportName": "outpost_10", - "ExportNameNpc": "outpost_01", - "ExportNameConstruction": "town_hall_const", - "BuildTimeD": 11, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold2", - "BuildCost": 6000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 4, - "Height": 4, - "ExportNameBuildAnim": "town_hall_upg", - "Hitpoints": 2750, - "RegenTime": 1, - "DestroyEffect": "Town Hall Destroyed", - "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", - "BuildingW": 3, - "BuildingH": 3, - "ExportNameBase": "townhall_base", - "PickUpEffect": "Town Hall 2 Pickup", - "PlacingEffect": "Town Hall Placing", - "DestructionXP": 10, - "StartingHomeCount": 1, - "VillageType": 1, - "HintPriority": 100, - "Stage": 2, - "SecondaryTroop": "Zappies", - "SecondaryTroopCnt": 5, - "SecondaryTroopLvl": 10 - } - }, - "Battle Copter": { - "1": { - "BuildingLevel": 1, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "BB_hero_altar_flying", - "ExportNameConstruction": "air_mortar_const", - "ExportNameLocked": "BB_hero_altar_flying", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2500000, - "TownHallLevel": 5, - "CapitalHallLevel": 5, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "heroaltar_barbarian_king_upg", - "LevelRequirementTID": "TID_REQUIRED_BUILDERS_HALL_LEVEL", - "Hitpoints": 250, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "heroaltar_base", - "PickUpEffect": "Hero Altar Pickup", - "PlacingEffect": "Hero Altar Place", - "IsHeroBarrack": true, - "HeroType": "Battle Copter", - "VillageType": 1, - "HintPriority": 700, - "Stage": 2 - } - }, - "Healing Hut": { - "1": { - "BuildingLevel": 1, - "TID": "TID_RECOVERY_BUILDING", - "InfoTID": "TID_RECOVERY_BUILDING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "healing_hut_01", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 1, - "BuildTimeH": 6, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 1500000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "Hitpoints": 550, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_base_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 500, - "Stage": 2, - "HealthRecoveryPercent": 4 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_RECOVERY_BUILDING", - "InfoTID": "TID_RECOVERY_BUILDING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "healing_hut_02", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 2, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2000000, - "TownHallLevel": 6, - "CapitalHallLevel": 6, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "Hitpoints": 650, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_base_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 500, - "Stage": 2, - "HealthRecoveryPercent": 8 - }, - "3": { - "BuildingLevel": 3, - "TID": "TID_RECOVERY_BUILDING", - "InfoTID": "TID_RECOVERY_BUILDING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "healing_hut_03", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 3, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 2500000, - "TownHallLevel": 7, - "CapitalHallLevel": 7, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "Hitpoints": 750, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_base_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 500, - "Stage": 2, - "HealthRecoveryPercent": 12 - }, - "4": { - "BuildingLevel": 4, - "TID": "TID_RECOVERY_BUILDING", - "InfoTID": "TID_RECOVERY_BUILDING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "healing_hut_04", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 4, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 3250000, - "TownHallLevel": 8, - "CapitalHallLevel": 8, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "Hitpoints": 850, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_base_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 500, - "Stage": 2, - "HealthRecoveryPercent": 16 - }, - "5": { - "BuildingLevel": 5, - "TID": "TID_RECOVERY_BUILDING", - "InfoTID": "TID_RECOVERY_BUILDING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "healing_hut_05", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 5, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 4000000, - "TownHallLevel": 9, - "CapitalHallLevel": 9, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "Hitpoints": 1000, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_base_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 500, - "Stage": 2, - "HealthRecoveryPercent": 20 - }, - "6": { - "BuildingLevel": 6, - "TID": "TID_RECOVERY_BUILDING", - "InfoTID": "TID_RECOVERY_BUILDING_INFO", - "BuildingClass": "Army", - "SWF": "sc/buildings2.sc", - "ExportName": "healing_hut_06", - "ExportNameConstruction": "barracks_const", - "BuildTimeD": 6, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Elixir2", - "BuildCost": 5000000, - "TownHallLevel": 10, - "CapitalHallLevel": 10, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "barracks_upg", - "Hitpoints": 1150, - "RegenTime": 1, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3l_base_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "rapidfire_base", - "PickUpEffect": "Training Barrack Pickup", - "PlacingEffect": "Training Barrack Placing", - "VillageType": 1, - "HintPriority": 500, - "Stage": 2, - "HealthRecoveryPercent": 24 - } - }, - "Sour Elixir Cauldron": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_CLASHOWEEN_BUILDING", - "InfoTID": "TID_CLASHOWEEN_BUILDING_INFO", - "BuildingClass": "Resource", - "SWF": "sc/buildings.sc", - "ExportName": "sour_elixir_cauldron_01", - "ExportNameConstruction": "sour_elixir_cauldron_01", - "BuildTimeD": 0, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 0, - "TownHallLevel": 1, - "CapitalHallLevel": 1, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "sour_elixir_cauldron_01", - "MaxStoredSourElixir": 100000000, - "ProducesResource": "SourElixir", - "ResourcePer100Hours": 10000, - "ResourceMax": 2400, - "ResourceIconLimit": 6, - "Hitpoints": 1000, - "RegenTime": 15, - "DestroyEffect": "Building Destroyed", - "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "elixir_pump_base", - "PickUpEffect": "Elixir Pump Pickup", - "PlacingEffect": "Elixir Pump Placing", - "PreviewScenario": "NoCombatBuilding" - } - }, - "Multi-Archer Tower": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_MULTI_ARCHER_TOWER", - "InfoTID": "TID_MULTI_ARCHER_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "merged_archer_tower_lvl1", - "ExportNameConstruction": "merged_archer_tower_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20000000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "merged_archer_tower_upg", - "Hitpoints": 5000, - "RegenTime": 25, - "AttackRange": 1000, - "AttackSpeed": 500, - "DamageMulti": 55, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MergedArcherTower_attack", - "HitEffect": "Explosive Arrow", - "Projectile": "super_archer_tower_projectile", - "ExportNameDamaged": "destroyedBuilding_3m_grass_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "MultiTargets": true, - "NumMultiTargets": 3, - "MultiHitsTarget": true, - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer12", - "DefenderCount": 3, - "DefenderZ": 197, - "StrengthWeight": 400, - "HintPriority": 150, - "PreviewScenario": "MergedArcherTower", - "MergeRequirement": "Archer Tower:21;Archer Tower:21" - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_MULTI_ARCHER_TOWER", - "InfoTID": "TID_MULTI_ARCHER_TOWER_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "merged_archer_tower_lvl2", - "ExportNameConstruction": "merged_archer_tower_const", - "BuildTimeD": 15, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 22000000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "merged_archer_tower_upg", - "Hitpoints": 5200, - "RegenTime": 25, - "AttackRange": 1000, - "AttackSpeed": 500, - "DamageMulti": 60, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "MergedArcherTower_attack", - "HitEffect": "Explosive Arrow", - "Projectile": "super_archer_tower_projectile", - "ExportNameDamaged": "destroyedBuilding_3m_grass_wood", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "defense_tower_turret_base", - "AirTargets": true, - "GroundTargets": true, - "MultiTargets": true, - "NumMultiTargets": 3, - "MultiHitsTarget": true, - "PickUpEffect": "Tower Turret Pickup", - "PlacingEffect": "Tower Turret Placing", - "DefenderCharacter": "Archer12", - "DefenderCount": 3, - "DefenderZ": 197, - "StrengthWeight": 440, - "HintPriority": 150, - "PreviewScenario": "MergedArcherTower", - "MergeRequirement": "Archer Tower:21;Archer Tower:21" - } - }, - "Ricochet Cannon": { - "1": { - "BuildingLevel": 1, - "TID": "TID_BUILDING_RICOCHET_CANNON", - "InfoTID": "TID_RICOCHET_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "merged_cannon_lvl1", - "ExportNameConstruction": "merged_cannon_const", - "BuildTimeD": 14, - "BuildTimeH": 0, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 20000000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "merged_cannon_upg", - "Hitpoints": 5400, - "RegenTime": 25, - "AttackRange": 900, - "AttackSpeed": 800, - "DPS": 360, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Cannon Attack Larger", - "HitEffect": "Merged_Cannon_Ricochet_Hit", - "Projectile": "MergedCannonProjectile", - "ExportNameDamaged": "destroyedBuilding_3s_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 200, - "HintPriority": 150, - "PreviewScenario": "MergedCannon", - "MergeRequirement": "Cannon:21;Cannon:21", - "ProjectileBounces": 1 - }, - "2": { - "BuildingLevel": 2, - "TID": "TID_BUILDING_RICOCHET_CANNON", - "InfoTID": "TID_RICOCHET_CANNON_INFO", - "BuildingClass": "Defense", - "SWF": "sc/buildings.sc", - "ExportName": "merged_cannon_lvl2", - "ExportNameConstruction": "merged_cannon_const", - "BuildTimeD": 15, - "BuildTimeH": 12, - "BuildTimeM": 0, - "BuildTimeS": 0, - "BuildResource": "Gold", - "BuildCost": 22000000, - "TownHallLevel": 16, - "CapitalHallLevel": 16, - "Width": 3, - "Height": 3, - "ExportNameBuildAnim": "merged_cannon_upg", - "Hitpoints": 5700, - "RegenTime": 25, - "AttackRange": 900, - "AttackSpeed": 800, - "DPS": 390, - "DestroyEffect": "Building Destroyed", - "AttackEffect": "Cannon Attack Larger", - "HitEffect": "Merged_Cannon_Ricochet_Hit", - "Projectile": "MergedCannonProjectile", - "ExportNameDamaged": "destroyedBuilding_3s_base_rock", - "BuildingW": 2, - "BuildingH": 2, - "ExportNameBase": "basic_cannon_lvl11_base", - "AirTargets": false, - "GroundTargets": true, - "PickUpEffect": "Basic Turret Pickup", - "PlacingEffect": "Basic Turret Placing", - "AnimateTurret": true, - "StrengthWeight": 220, - "HintPriority": 150, - "PreviewScenario": "MergedCannon", - "MergeRequirement": "Cannon:21;Cannon:21", - "ProjectileBounces": 1 - } - } +{ + "Army Camp": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_HOUSING", + "InfoTID": "TID_HOUSING2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_fireplace_lvl1_3x3", + "ExportNameConstruction": "basic_turret_const", + "ExportNameLocked": "adv_fireplace_broken_3x3", + "BuildResource": "Elixir2", + "BuildCost": 0, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "ArmySlotType": "Normal", + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_none", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "adv_fireplace_lvl1_base", + "PickUpEffect": "Troop Housing Pickup", + "PlacingEffect": "Troop Housing Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 750 + } + }, + "Town Hall": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl1", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 0, + "TownHallLevel": 0, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 1000, + "MaxStoredElixir": 1000, + "MaxStoredDarkElixir": 2500, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 450, + "RegenTime": 20, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 1, + "StartingHomeCount": 1, + "IsRed": true, + "ActivateCombatOnDamageTaken": 1, + "ActivatedCombatAddBuildingClass": "Defense", + "CombatActivationDelay": 500, + "Weapon": "Townhall12", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl2", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 10, + "BuildResource": "Gold", + "BuildCost": 1000, + "TownHallLevel": 1, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2500, + "MaxStoredElixir": 2500, + "MaxStoredDarkElixir": 5000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 1600, + "RegenTime": 21, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 2, + "StartingHomeCount": 1, + "IsRed": true, + "ActivateCombatOnDamageTaken": 1, + "ActivatedCombatAddBuildingClass": "Defense", + "CombatActivationDelay": 500, + "Weapon": "Townhall13", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl3", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 4000, + "TownHallLevel": 2, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 10000, + "MaxStoredElixir": 10000, + "MaxStoredDarkElixir": 10000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 1850, + "RegenTime": 22, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 3, + "StartingHomeCount": 1, + "IsRed": true, + "ActivateCombatOnDamageTaken": 1, + "ActivatedCombatAddBuildingClass": "Defense", + "CombatActivationDelay": 500, + "Weapon": "Townhall14", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl4", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 25000, + "TownHallLevel": 3, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 50000, + "MaxStoredElixir": 50000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 2100, + "RegenTime": 23, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 4, + "StartingHomeCount": 1, + "IsRed": true, + "ActivateCombatOnDamageTaken": 1, + "ActivatedCombatAddBuildingClass": "Defense", + "CombatActivationDelay": 500, + "Weapon": "Townhall15", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl5", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 150000, + "TownHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 100000, + "MaxStoredElixir": 100000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 2400, + "RegenTime": 24, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 5, + "StartingHomeCount": 1, + "IsRed": true, + "ActivateCombatOnDamageTaken": 1, + "ActivatedCombatAddBuildingClass": "Defense", + "CombatActivationDelay": 500, + "Weapon": "Townhall16", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl6", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 750000, + "TownHallLevel": 5, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 300000, + "MaxStoredElixir": 300000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 2800, + "RegenTime": 25, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 6, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl7", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1000000, + "TownHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 500000, + "MaxStoredElixir": 500000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 3300, + "RegenTime": 26, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 7, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl8", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2000000, + "TownHallLevel": 7, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 750000, + "MaxStoredElixir": 750000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 3900, + "RegenTime": 27, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 8, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl9", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3000000, + "TownHallLevel": 8, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 1000000, + "MaxStoredElixir": 1000000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 4600, + "RegenTime": 28, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_grey", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 9, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl10", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3500000, + "TownHallLevel": 9, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 1500000, + "MaxStoredElixir": 1500000, + "MaxStoredDarkElixir": 20000, + "PercentageStoredDarkElixir": 20, + "LootOnDestruction": true, + "Hitpoints": 5500, + "RegenTime": 29, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_grey", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_lvl10_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 10, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl11", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 2, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 4000000, + "TownHallLevel": 10, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2000000, + "MaxStoredElixir": 2000000, + "LootOnDestruction": true, + "Hitpoints": 6800, + "RegenTime": 30, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 11, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl12_t1", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 4, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 6000000, + "TownHallLevel": 11, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2000000, + "MaxStoredElixir": 2000000, + "LootOnDestruction": true, + "Hitpoints": 7500, + "RegenTime": 31, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_blue", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base_th12", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 12, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "13": { + "BuildingLevel": 13, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl13_t1", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 7, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 9000000, + "TownHallLevel": 12, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2000000, + "MaxStoredElixir": 2000000, + "LootOnDestruction": true, + "Hitpoints": 8200, + "RegenTime": 31, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_blue", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base_th12", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 13, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "14": { + "BuildingLevel": 14, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl14_t1", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 13, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 15000000, + "TownHallLevel": 13, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2000000, + "MaxStoredElixir": 2000000, + "LootOnDestruction": true, + "Hitpoints": 8900, + "RegenTime": 31, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base_th12", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 14, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "15": { + "BuildingLevel": 15, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl15_t1", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 18000000, + "TownHallLevel": 14, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2000000, + "MaxStoredElixir": 2000000, + "LootOnDestruction": true, + "Hitpoints": 9600, + "RegenTime": 31, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_darkpurple", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base_th12", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 15, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + }, + "16": { + "BuildingLevel": 16, + "TID": "TID_BUILDING_TOWN_HALL", + "InfoTID": "TID_TOWN_HALL_INFO", + "BuildingClass": "Town Hall", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "town_hall_lvl16", + "ExportNameNpc": "goblin_townhall_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20000000, + "TownHallLevel": 15, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold": 2000000, + "MaxStoredElixir": 2000000, + "LootOnDestruction": true, + "Hitpoints": 10000, + "RegenTime": 32, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_darkpurple", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base_th12", + "PickUpEffect": "Town Hall Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 16, + "StartingHomeCount": 1, + "IsRed": true, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 100, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Elixir Collector": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl1_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 10, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 100000, + "ResourceMax": 24000, + "ResourceIconLimit": 30, + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl2_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 20, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 120000, + "ResourceMax": 28800, + "ResourceIconLimit": 40, + "Hitpoints": 350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl3_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 40, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 10000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 150000, + "ResourceMax": 36000, + "ResourceIconLimit": 50, + "Hitpoints": 400, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl4_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 30000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 180000, + "ResourceMax": 43200, + "ResourceIconLimit": 60, + "Hitpoints": 460, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl5_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 60000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 210000, + "ResourceMax": 50400, + "ResourceIconLimit": 70, + "Hitpoints": 550, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_lvl5_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl6_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 100000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 250000, + "ResourceMax": 60000, + "ResourceIconLimit": 80, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_lvl5_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl7_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 200000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 300000, + "ResourceMax": 72000, + "ResourceIconLimit": 100, + "Hitpoints": 750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_lvl5_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl8_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 300000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 350000, + "ResourceMax": 84000, + "ResourceIconLimit": 120, + "Hitpoints": 850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_lvl5_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl9_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 400000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 400000, + "ResourceMax": 96000, + "ResourceIconLimit": 140, + "Hitpoints": 1000, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_lvl5_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_ELIXIR_PUMP", + "InfoTID": "TID_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_pump_lvl10_v2", + "ExportNameConstruction": "elixir_pump_const", + "ExportNameLocked": "elixir_pump_broken", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 800000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_pump_upg", + "ProducesResource": "Elixir2", + "ResourcePer100Hours": 450000, + "ResourceMax": 108000, + "ResourceIconLimit": 160, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_round_pit_woodglass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_lvl5_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + } + }, + "Elixir Storage": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level1_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 30, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 20000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "elixir_storage_upg", + "MaxStoredElixir2": 70000, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl1_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level2_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 80000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "MaxStoredElixir2": 150000, + "Hitpoints": 800, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl2_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level3_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 200000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "MaxStoredElixir2": 250000, + "Hitpoints": 975, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl3_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level4_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "MaxStoredElixir2": 350000, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl4_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level5_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 600000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "MaxStoredElixir2": 600000, + "Hitpoints": 1350, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl5_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level6_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredElixir2": 800000, + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl6_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level7_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredElixir2": 1200000, + "Hitpoints": 1850, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl7_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level8_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredElixir2": 1600000, + "Hitpoints": 2150, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl8_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level9_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredElixir2": 2000000, + "Hitpoints": 2450, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl9_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_ELIXIR_STORAGE", + "InfoTID": "TID_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "elixir_storage_level10_v2", + "ExportNameConstruction": "elixir_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3200000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredElixir2": 2500000, + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "elixir_destructed_state3", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_storage_lvl9_base", + "PickUpEffect": "Elixir Storage Pickup", + "PlacingEffect": "Elixir Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + } + }, + "Gold Mine": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl1", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 10, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 100000, + "ResourceMax": 24000, + "ResourceIconLimit": 30, + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl2", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 20, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 5000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 120000, + "ResourceMax": 28800, + "ResourceIconLimit": 40, + "Hitpoints": 350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl3", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 40, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 10000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 150000, + "ResourceMax": 36000, + "ResourceIconLimit": 50, + "Hitpoints": 400, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl4", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 30000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 180000, + "ResourceMax": 43200, + "ResourceIconLimit": 60, + "Hitpoints": 460, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl5", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 60000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 210000, + "ResourceMax": 50400, + "ResourceIconLimit": 70, + "Hitpoints": 550, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl6", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 100000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 250000, + "ResourceMax": 60000, + "ResourceIconLimit": 80, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl7", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 200000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 300000, + "ResourceMax": 72000, + "ResourceIconLimit": 100, + "Hitpoints": 750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl8", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 300000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 350000, + "ResourceMax": 84000, + "ResourceIconLimit": 120, + "Hitpoints": 850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl9", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 400000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 400000, + "ResourceMax": 96000, + "ResourceIconLimit": 140, + "Hitpoints": 1000, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_GOLD_MINE", + "InfoTID": "TID_GOLD_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "goldmine_lvl10", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "goldmine_broken", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 800000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ProducesResource": "Gold2", + "ResourcePer100Hours": 450000, + "ResourceMax": 108000, + "ResourceIconLimit": 160, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 250 + } + }, + "Gold Storage": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl1_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 30, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 20000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 70000, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl1_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl2_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 80000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 150000, + "Hitpoints": 800, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl2_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl3_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 200000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 250000, + "Hitpoints": 975, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl3_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl4_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 350000, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl4_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl5_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 600000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 600000, + "Hitpoints": 1350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl5_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl6_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 800000, + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl6_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl7_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 1200000, + "Hitpoints": 1850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl7_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl8_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 1600000, + "Hitpoints": 2150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl8_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl9_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 2000000, + "Hitpoints": 2450, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl9_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_GOLD_STORAGE", + "InfoTID": "TID_GOLD_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "gold_storage_lvl10_v2", + "ExportNameConstruction": "gold_storage_const", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 3200000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredGold2": 2500000, + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "gold_storage_lvl9_base", + "PickUpEffect": "Gold Storage Pickup", + "PlacingEffect": "Gold Storage Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 200 + } + }, + "Barracks": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl1", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 10, + "BuildResource": "Elixir", + "BuildCost": 100, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 20, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 250, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl2", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 1, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 500, + "TownHallLevel": 2, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 25, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 290, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl3", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 10, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2500, + "TownHallLevel": 2, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 30, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 330, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl4", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 5000, + "TownHallLevel": 2, + "CapitalHallLevel": 2, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 35, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 370, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl5", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 20000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 40, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 420, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl6", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 120000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 45, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 470, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl7", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 270000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 50, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 520, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl8", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 800000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 55, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 580, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl9", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 60, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 650, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl10", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1400000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 75, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 730, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl11", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2600000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 80, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 810, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl12", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 5, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3700000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 85, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 900, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "13": { + "BuildingLevel": 13, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl13", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 7, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 6500000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 90, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 980, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "14": { + "BuildingLevel": 14, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl14", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 8000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 95, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 1050, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "15": { + "BuildingLevel": 15, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl15", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 9, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 10000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 100, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1150, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "16": { + "BuildingLevel": 16, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl16", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 12000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 105, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1250, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "17": { + "BuildingLevel": 17, + "TID": "TID_BUILDING_BARRACK", + "InfoTID": "TID_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "barracks_lvl17", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 16000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 110, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1350, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Laboratory": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl1", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 1, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 5000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 500, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl2", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 25000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 550, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl3", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 50000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 600, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl4", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 0, + "BuildTimeH": 4, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 100000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 650, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl5", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 200000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 700, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl6", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 0, + "BuildTimeH": 16, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 400000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 750, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl7", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 800000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 830, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl8", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 1, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1300000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 950, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl9", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 2, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2100000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1070, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl10", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3800000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1140, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl11", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 5500000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1210, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl12", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 11, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 8100000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1280, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "13": { + "BuildingLevel": 13, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl13", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 12500000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1350, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "14": { + "BuildingLevel": 14, + "TID": "TID_BUILDING_LABORATORY", + "InfoTID": "TID_LABORATORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "laboratory_lvl14", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 16, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 13500000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1400, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Cannon": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_CANNON", + "InfoTID": "TID_BASIC_TURRET_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "basic_turret_lvl1", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 10, + "BuildResource": "Gold", + "BuildCost": 250, + "TownHallLevel": 1000, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "basic_turret_upg", + "Hitpoints": 420, + "RegenTime": 15, + "AttackRange": 900, + "AttackSpeed": 800, + "DPS": 9, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "Cannonball", + "AltProjectile": "Cannonball", + "ExportNameDamaged": "destroyedBuilding_3s_pit_none", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true + } + }, + "Archer Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl1", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 5, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 12000, + "TownHallLevel": 2, + "CapitalHallLevel": 2, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 500, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 40, + "AltDPS": 89, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Generic Hit", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer", + "DefenderCount": 1, + "DefenderZ": 150, + "AltDefenderZ": 58, + "StrengthWeight": 254, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl2", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 15, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 30000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 575, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 44, + "AltDPS": 98, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Generic Hit", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer", + "DefenderCount": 1, + "DefenderZ": 150, + "AltDefenderZ": 58, + "StrengthWeight": 260, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl3", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 60000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 660, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 48, + "AltDPS": 107, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Generic Hit", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer", + "DefenderCount": 1, + "DefenderZ": 150, + "AltDefenderZ": 58, + "StrengthWeight": 266, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl4", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 250000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 760, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 53, + "AltDPS": 118, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Generic Hit", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer2", + "DefenderCount": 1, + "DefenderZ": 150, + "AltDefenderZ": 58, + "StrengthWeight": 272, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl5", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 800000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 875, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 59, + "AltDPS": 131, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Generic Hit", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer2", + "DefenderCount": 1, + "DefenderZ": 150, + "AltDefenderZ": 58, + "StrengthWeight": 280, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl6", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1050, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 64, + "AltDPS": 142, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Generic Hit", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer3", + "DefenderCount": 1, + "DefenderZ": 150, + "AltDefenderZ": 58, + "StrengthWeight": 288, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl7", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1250, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 71, + "AltDPS": 158, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Explosive Arrow", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer3", + "DefenderCount": 1, + "DefenderZ": 160, + "AltDefenderZ": 68, + "StrengthWeight": 296, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl8", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2800000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1450, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 78, + "AltDPS": 173, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Explosive Arrow", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer6", + "DefenderCount": 1, + "DefenderZ": 160, + "AltDefenderZ": 68, + "StrengthWeight": 304, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl9", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3600000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1650, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 86, + "AltDPS": 191, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Explosive Arrow", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer6", + "DefenderCount": 1, + "DefenderZ": 160, + "AltDefenderZ": 68, + "StrengthWeight": 312, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_ARCHER_TOWER2", + "InfoTID": "TID_ARCHER_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_archer_tower_lvl10", + "ExportNameConstruction": "tower_turret_const", + "ExportNameLocked": "adv_archer_tower_broken", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4600000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1850, + "RegenTime": 1, + "AttackRange": 1000, + "AltAttackMode": true, + "AltAttackRange": 700, + "AttackSpeed": 1000, + "AltAttackSpeed": 450, + "DPS": 94, + "AltDPS": 209, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Archer Attack", + "HitEffect": "Explosive Arrow", + "Projectile": "Tower Arrow HIGH", + "AltProjectile": "Tower Arrow LOW", + "ExportNameDamaged": "destroyedBuilding_3m_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer6", + "DefenderCount": 1, + "DefenderZ": 160, + "AltDefenderZ": 68, + "StrengthWeight": 320, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirAndGroundDefense2" + } + }, + "Wall": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl1", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000, + "TownHallLevel": 2, + "CapitalHallLevel": 2, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 900, + "RegenTime": 1, + "DestroyEffect": "wall_lvl1_destroyed", + "ExportNameDamaged": "wall_destructed_lvl1", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "AltBuildResource": "Elixir2", + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl2", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000, + "TownHallLevel": 3, + "CapitalHallLevel": 2, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 1100, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "AltBuildResource": "Elixir2", + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl3", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 10000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 1300, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "AltBuildResource": "Elixir2", + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl4", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 50000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "AltBuildResource": "Elixir2", + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl5", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 150000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 1900, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl6", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 240000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 2200, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl7", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 400000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 2500, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "VillageType": 1, + "StartUpgradeBoosterCost": 1, + "HintPriority": 50 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl8", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 600000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "VillageType": 1, + "StartUpgradeBoosterCost": 2, + "HintPriority": 50 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl9", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 800000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 3050, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Looping", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "VillageType": 1, + "StartUpgradeBoosterCost": 2, + "HintPriority": 50 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_WALL", + "InfoTID": "TID_WALL_INFO", + "BuildingClass": "Wall", + "SWF": "sc/buildings2.sc", + "ExportName": "secondVillage_wall_lvl10", + "ExportNameConstruction": "generic_construction_state1", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 1, + "Height": 1, + "ExportNameBuildAnim": "dummy_particle", + "Hitpoints": 3350, + "RegenTime": 1, + "DestroyEffect": "wall_lvl2_destroyed", + "ExportNameDamaged": "wall_destructed_lvl2", + "WallCornerPieces": "Synced", + "StartingHomeCount": 10, + "StrengthWeight": 100, + "VillageType": 1, + "StartUpgradeBoosterCost": 2, + "HintPriority": 50 + } + }, + "Wizard Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl1", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 120000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 620, + "RegenTime": 15, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 11, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 450, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl4", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 220000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 650, + "RegenTime": 16, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 13, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 420, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl7", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 400000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 680, + "RegenTime": 17, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 16, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard2", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 390, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl8", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 540000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 730, + "RegenTime": 18, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 20, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard2", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 360, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl9", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 700000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 840, + "RegenTime": 19, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 24, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack2", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile2", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystal", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard3", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 330, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl10", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 960, + "RegenTime": 20, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 32, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack2", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile2", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystal", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard3", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 300, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl11", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 1200, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 40, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack2", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile2", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard6", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 270, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl12", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2200000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 1440, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 45, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile3", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard6", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl13", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2800000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 1680, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 50, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile3", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard7", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl14", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 4000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 2000, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 62, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard7", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl15", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 7200000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 2240, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 70, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard8", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl16", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 9200000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 2480, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 78, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard8", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "13": { + "BuildingLevel": 13, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl17", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 10200000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 2700, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 84, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard9", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "14": { + "BuildingLevel": 14, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl18", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 2900, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 90, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard10", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 240, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "15": { + "BuildingLevel": 15, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl19", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 19200000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 3000, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 95, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard11", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 250, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "16": { + "BuildingLevel": 16, + "TID": "TID_BUILDING_WIZARD_TOWER", + "InfoTID": "TID_WIZARD_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "wizard_tower_lvl20", + "ExportNameConstruction": "wizard_tower_const", + "BuildTimeD": 14, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20200000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "wizard_tower_upg", + "Hitpoints": 3150, + "RegenTime": 21, + "AttackRange": 700, + "AttackSpeed": 1300, + "DPS": 102, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "WizardTower_attack3", + "HitEffect": "Wizard Tower hit", + "Projectile": "wizardTower_projectile4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_crystaldark", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "wizard_tower_base", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 100, + "PickUpEffect": "Wizard Tower Pickup", + "PlacingEffect": "Wizard Tower Placing", + "DefenderCharacter": "Wizard12", + "DefenderCount": 1, + "DefenderZ": 135, + "StrengthWeight": 250, + "HintPriority": 150, + "PreviewScenario": "Defense" + } + }, + "Air Defense": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl1", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 22000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "fireworks_tower_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl1_upgrade", + "Hitpoints": 800, + "RegenTime": 15, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 80, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit1", + "Projectile": "Firework", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl2", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 90000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "fireworks_tower_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl2_upgrade", + "Hitpoints": 850, + "RegenTime": 16, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 110, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit1", + "Projectile": "Firework2", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl3", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 270000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "fireworks_tower_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl3_upgrade", + "Hitpoints": 900, + "RegenTime": 17, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 140, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit2", + "Projectile": "Firework3", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl4", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "fireworks_tower_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl4_upgrade", + "Hitpoints": 950, + "RegenTime": 18, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 160, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit2", + "Projectile": "Firework4", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl5", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 800000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "fireworks_tower_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl5_upgrade", + "Hitpoints": 1000, + "RegenTime": 19, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 190, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework5", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl6", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "fireworks_tower_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl6_upgrade", + "Hitpoints": 1050, + "RegenTime": 20, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 230, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework6", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl7", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1750000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl7_upgrade", + "Hitpoints": 1100, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 280, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework7", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl8", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2300000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl8_upgrade", + "Hitpoints": 1210, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 320, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework8", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl9", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3400000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl9_upgrade", + "Hitpoints": 1300, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 360, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl10", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 8, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 5800000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl10_upgrade", + "Hitpoints": 1400, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 400, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl11", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 8400000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl11_upgrade", + "Hitpoints": 1500, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 440, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl12", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 11900000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl12_upgrade", + "Hitpoints": 1650, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 500, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "13": { + "BuildingLevel": 13, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl13", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 19500000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl13_upgrade", + "Hitpoints": 1750, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 540, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + }, + "14": { + "BuildingLevel": 14, + "TID": "TID_BUILDING_AIR_DEFENSE", + "InfoTID": "TID_AIR_DEFENSE_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "fireworks_tower_lvl14", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 15, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20500000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "fireworks_tower_lvl14_upgrade", + "Hitpoints": 1850, + "RegenTime": 21, + "AttackRange": 1000, + "AttackSpeed": 1000, + "DPS": 600, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Attack", + "HitEffect": "Air Defence hit3", + "Projectile": "Firework9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_tower_base", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 50, + "HintPriority": 150, + "PreviewScenario": "AirDefense" + } + }, + "Mortar": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl1", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 5000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 400, + "RegenTime": 20, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 4, + "AltDPS": 8, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit", + "Projectile": "Mortar Ammo1", + "AltProjectile": "Mortar Ammo1", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 450, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl2", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 25000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 450, + "RegenTime": 21, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 5, + "AltDPS": 9, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit", + "Projectile": "Mortar Ammo2", + "AltProjectile": "Mortar Ammo2", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 440, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl3", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 100000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 500, + "RegenTime": 22, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 6, + "AltDPS": 11, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit", + "Projectile": "Mortar Ammo3", + "AltProjectile": "Mortar Ammo3", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 430, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl4", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 200000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 550, + "RegenTime": 23, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 7, + "AltDPS": 13, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit", + "Projectile": "Mortar Ammo4", + "AltProjectile": "Mortar Ammo4", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 420, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl5", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 300000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 600, + "RegenTime": 24, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 9, + "AltDPS": 17, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit", + "Projectile": "Mortar Ammo5", + "AltProjectile": "Mortar Ammo5", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 410, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl6", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 560000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 650, + "RegenTime": 25, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 11, + "AltDPS": 20, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl6", + "Projectile": "Mortar Ammo6", + "AltProjectile": "Mortar Ammo6", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 400, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl7", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1300000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 700, + "RegenTime": 26, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 15, + "AltDPS": 27, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl6", + "Projectile": "Mortar Ammo6", + "AltProjectile": "Mortar Ammo6", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 390, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl8", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1900000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 800, + "RegenTime": 26, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 20, + "AltDPS": 37, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo8", + "AltProjectile": "Mortar Ammo8", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 380, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl9", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2500000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 950, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 25, + "AltDPS": 47, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo9", + "AltProjectile": "Mortar Ammo9", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 370, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpCost": 8000000, + "GearUpTime": 20160, + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl10", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3500000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1100, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 30, + "AltDPS": 56, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo10", + "AltProjectile": "Mortar Ammo10", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 360, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl11", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 5800000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1300, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 35, + "AltDPS": 64, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo10", + "AltProjectile": "Mortar Ammo10", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 350, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl12", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 6500000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1500, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 38, + "AltDPS": 70, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo10", + "AltProjectile": "Mortar Ammo10", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 350, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "13": { + "BuildingLevel": 13, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl13", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 7, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 8200000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1700, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 42, + "AltDPS": 77, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo11", + "AltProjectile": "Mortar Ammo11", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 340, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "14": { + "BuildingLevel": 14, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl14", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 15000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1950, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 48, + "AltDPS": 88, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo11", + "AltProjectile": "Mortar Ammo11", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 340, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "15": { + "BuildingLevel": 15, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl15", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 19000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 2150, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 54, + "AltDPS": 99, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo11", + "AltProjectile": "Mortar Ammo11", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 340, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + }, + "16": { + "BuildingLevel": 16, + "TID": "TID_BUILDING_MORTAR", + "InfoTID": "TID_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "mortar_lvl16", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 14, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 19500000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 2300, + "RegenTime": 27, + "AttackRange": 1100, + "AltAttackMode": true, + "AltAttackRange": 1100, + "AttackSpeed": 5000, + "AltAttackSpeed": 1000, + "DPS": 60, + "AltDPS": 110, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Mortar Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Mortar Ammo lvl16", + "AltProjectile": "Mortar Ammo lvl16", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": false, + "AltGroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 150, + "PushBack": 100, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 340, + "AltBurstCount": 3, + "AltBurstDelay": 500, + "GearUpBuilding": "Multi Mortar", + "GearUpLevelRequirement": 7, + "GearUpResource": "Gold", + "GearUpTID": "TID_GEAR_UP_MORTAR", + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange", + "AltPreviewScenario": "DefenseLongRange" + } + }, + "Clan Castle": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl1", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 10000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 75000, + "MaxStoredWarElixir": 75000, + "MaxStoredWarDarkElixir": 500, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 10, + "HousingSpaceAlt": 0, + "HousingSpaceSiege": 0, + "Hitpoints": 1000, + "RegenTime": 27, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastle" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl2", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 100000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 250000, + "MaxStoredWarElixir": 250000, + "MaxStoredWarDarkElixir": 1000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 15, + "HousingSpaceAlt": 0, + "HousingSpaceSiege": 0, + "Hitpoints": 1400, + "RegenTime": 28, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastle" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl3", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 800000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 700000, + "MaxStoredWarElixir": 700000, + "MaxStoredWarDarkElixir": 2500, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 20, + "HousingSpaceAlt": 0, + "HousingSpaceSiege": 0, + "Hitpoints": 2000, + "RegenTime": 29, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH7" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl4", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1200000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 1000000, + "MaxStoredWarElixir": 1000000, + "MaxStoredWarDarkElixir": 4000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 25, + "HousingSpaceAlt": 1, + "HousingSpaceSiege": 0, + "Hitpoints": 2600, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH7" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl5", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 1600000, + "MaxStoredWarElixir": 1600000, + "MaxStoredWarDarkElixir": 8000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 30, + "HousingSpaceAlt": 1, + "HousingSpaceSiege": 0, + "Hitpoints": 3000, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH7" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl6", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 4200000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 2000000, + "MaxStoredWarElixir": 2000000, + "MaxStoredWarDarkElixir": 10000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 35, + "HousingSpaceAlt": 1, + "HousingSpaceSiege": 1, + "Hitpoints": 3400, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH7" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl7", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 6, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 5500000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 2400000, + "MaxStoredWarElixir": 2400000, + "MaxStoredWarDarkElixir": 12000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 35, + "HousingSpaceAlt": 2, + "HousingSpaceSiege": 1, + "Hitpoints": 4000, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH11" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl8", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 8000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 2800000, + "MaxStoredWarElixir": 2800000, + "MaxStoredWarDarkElixir": 14000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 40, + "HousingSpaceAlt": 2, + "HousingSpaceSiege": 1, + "Hitpoints": 4400, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH11" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl9", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 10000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 3200000, + "MaxStoredWarElixir": 3200000, + "MaxStoredWarDarkElixir": 16000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 45, + "HousingSpaceAlt": 2, + "HousingSpaceSiege": 1, + "Hitpoints": 4800, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH11" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl10", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 12600000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 3600000, + "MaxStoredWarElixir": 3600000, + "MaxStoredWarDarkElixir": 18000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 45, + "HousingSpaceAlt": 3, + "HousingSpaceSiege": 1, + "Hitpoints": 5200, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH11" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_ALLIANCE_CASTLE", + "InfoTID": "TID_ALLIANCE_CASTLE_INFO", + "BuildingClass": "Army", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "alliance_castle_lvl11", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 20000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 4000000, + "MaxStoredWarElixir": 4000000, + "MaxStoredWarDarkElixir": 20000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 50, + "HousingSpaceAlt": 3, + "HousingSpaceSiege": 1, + "Hitpoints": 5400, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1, + "HintPriority": 900, + "PreviewScenario": "ClanCastleTH11" + } + }, + "Builder's Hut": { + "1": { + "BuildingLevel": 1, + "TID": "TID_WORKER_BUILDING", + "InfoTID": "TID_WORKER_INFO", + "BuildingClass": "Worker", + "SWF": "sc/buildings.sc", + "ExportName": "worker_building", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Diamonds", + "BuildCost": 0, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "BoostCost": 500, + "Hitpoints": 250, + "RegenTime": 20, + "AttackRange": 700, + "AttackSpeed": 400, + "DPS": 80, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Nailgun Attack FX", + "HitEffect": "Generic Hit", + "Projectile": "Nail Ammo", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "AnimateTurret": true, + "StartingHomeCount": 1, + "StrengthWeight": 400, + "WakeUpSpeed": 1600, + "WakeUpSpace": 1, + "DefenceTroopCount": 1, + "DefenceTroopCharacter": "Defending Builder", + "DefenceTroopLevel": 1, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 200, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_WORKER_BUILDING", + "InfoTID": "TID_WORKER_INFO", + "BuildingClass": "Worker", + "SWF": "sc/buildings.sc", + "ExportName": "worker_building_armed_lvl1", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 9, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 8000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "BoostCost": 500, + "Hitpoints": 1000, + "RegenTime": 20, + "AttackRange": 700, + "AttackSpeed": 400, + "DPS": 100, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Nailgun Attack FX", + "HitEffect": "Generic Hit", + "Projectile": "Nail Ammo", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "AnimateTurret": true, + "StartingHomeCount": 1, + "StrengthWeight": 380, + "WakeUpSpeed": 1600, + "WakeUpSpace": 1, + "DefenceTroopCount": 1, + "DefenceTroopCharacter": "Defending Builder", + "DefenceTroopLevel": 2, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 200, + "PreviewScenario": "DefensiveBuilder" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_WORKER_BUILDING", + "InfoTID": "TID_WORKER_INFO", + "BuildingClass": "Worker", + "SWF": "sc/buildings.sc", + "ExportName": "worker_building_armed_lvl2", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 11, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 10000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "BoostCost": 500, + "Hitpoints": 1300, + "RegenTime": 20, + "AttackRange": 700, + "AttackSpeed": 400, + "DPS": 120, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Nailgun Attack FX", + "HitEffect": "Generic Hit", + "Projectile": "Nail Ammo 2", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "AnimateTurret": true, + "StartingHomeCount": 1, + "StrengthWeight": 360, + "WakeUpSpeed": 1600, + "WakeUpSpace": 1, + "DefenceTroopCount": 1, + "DefenceTroopCharacter": "Defending Builder", + "DefenceTroopLevel": 3, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 200, + "PreviewScenario": "DefensiveBuilder" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_WORKER_BUILDING", + "InfoTID": "TID_WORKER_INFO", + "BuildingClass": "Worker", + "SWF": "sc/buildings.sc", + "ExportName": "worker_building_armed_lvl3", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 13, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "BoostCost": 500, + "Hitpoints": 1600, + "RegenTime": 20, + "AttackRange": 700, + "AttackSpeed": 400, + "DPS": 135, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Nailgun Attack FX", + "HitEffect": "Generic Hit", + "Projectile": "Nail Ammo 2", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkgreen", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "AnimateTurret": true, + "StartingHomeCount": 1, + "StrengthWeight": 340, + "WakeUpSpeed": 1600, + "WakeUpSpace": 1, + "DefenceTroopCount": 1, + "DefenceTroopCharacter": "Defending Builder", + "DefenceTroopLevel": 4, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 200, + "PreviewScenario": "DefensiveBuilder" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_WORKER_BUILDING", + "InfoTID": "TID_WORKER_INFO", + "BuildingClass": "Worker", + "SWF": "sc/buildings.sc", + "ExportName": "worker_building_armed_lvl4", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 14, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 17000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "BoostCost": 500, + "Hitpoints": 1800, + "RegenTime": 20, + "AttackRange": 700, + "AttackSpeed": 400, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Nailgun Attack FX", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkpurple", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "AnimateTurret": true, + "StartingHomeCount": 1, + "WakeUpSpeed": 1600, + "ActivatedCombatAddBuildingClass": "Defense", + "HintPriority": 200, + "PreviewScenario": "DefensiveBuilder" + } + }, + "Radio Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_COMM_MAST", + "InfoTID": "TID_COMM_MAST", + "BuildingClass": "Npc", + "SWF": "sc/buildings.sc", + "ExportName": "comm_mast_lvl1", + "ExportNameConstruction": "generic_construction_state3", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "comm_mast_upg", + "Hitpoints": 250, + "RegenTime": 30, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "comm_mast_base" + } + }, + "Hidden Tesla": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl1_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 30, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 50000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 300, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 36, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_1", + "AttackEffect2": "Tesla Attack_4_Secondary", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl1", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 248, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl2_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 100000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 350, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 40, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_1", + "AttackEffect2": "Tesla Attack_8_Secondary", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl2", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 254, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl3_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 0, + "BuildTimeH": 5, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 150000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 400, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 44, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_1", + "AttackEffect2": "Tesla Attack_8_Secondary", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl3", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 261, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl4_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 0, + "BuildTimeH": 10, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 280000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 460, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 48, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_2", + "AttackEffect2": "Tesla Attack_8_Secondary", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl4", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 269, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl5_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 700000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 550, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 53, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_2", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl5", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 276, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl6_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1300000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 650, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 58, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_3", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl6", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 284, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl7_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2100000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 750, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 64, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_4", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl7", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 291, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl8_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3100000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 850, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 70, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_4", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl8", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 299, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl9_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4100000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1000, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 77, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_4", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl9", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 308, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_TESLA_TOWER2", + "InfoTID": "TID_TESLA_TOWER2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "teslatower_lvl10_setup", + "ExportNameConstruction": "teslatower_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5100000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1150, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 600, + "Damage": 85, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Tesla Attack_4", + "HitEffect": "Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "BaseGfx": "-1", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "Hidden": true, + "TriggerRadius": 600, + "ExportNameTriggered": "teslatower_lvl10", + "AppearEffect": "Tesla Appear", + "StrengthWeight": 320, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + } + }, + "Spell Factory": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl1", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 150000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 2, + "UnitProduction": 2, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 425, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl2", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 300000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 4, + "UnitProduction": 4, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 470, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl3", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 600000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 6, + "UnitProduction": 6, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 520, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl4", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 3, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1200000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 8, + "UnitProduction": 8, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 600, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "spellforge_lvl4_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl5", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 4, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 10, + "UnitProduction": 10, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 720, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "spellforge_lvl4_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl6", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3500000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 10, + "UnitProduction": 10, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 840, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "spellforge_lvl4_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_SPELL_FORGE", + "InfoTID": "TID_SPELL_FORGE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "spell_factory_lvl7", + "ExportNameConstruction": "spell_factory_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 9000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "spell_factory_upg", + "HousingSpaceAlt": 10, + "UnitProduction": 10, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 960, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "spellforge_lvl4_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + } + }, + "X-Bow": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_XBOW2", + "InfoTID": "TID_BUILDING_XBOW2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "BB_xbow_lvl1", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4400000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl1", + "Hitpoints": 1700, + "RegenTime": 1, + "AttackRange": 1200, + "AltAttackMode": true, + "AltAttackRange": 1200, + "AttackSpeed": 192, + "AltAttackSpeed": 192, + "DPS": 80, + "AltDPS": 80, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Rapidfire bow attack", + "HitEffect": "Generic Hit", + "Projectile": "Rapidfire arrow lvl6", + "AltProjectile": "Rapidfire arrow lvl6", + "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": false, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Bow Pickup", + "PlacingEffect": "Bow Placing", + "AnimateTurret": true, + "StrengthWeight": 2310, + "VillageType": 1, + "NewTargetAttackDelay": 500, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_XBOW2", + "InfoTID": "TID_BUILDING_XBOW2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "BB_xbow_lvl2", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4800000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl2", + "Hitpoints": 1900, + "RegenTime": 1, + "AttackRange": 1200, + "AltAttackMode": true, + "AltAttackRange": 1200, + "AttackSpeed": 192, + "AltAttackSpeed": 192, + "DPS": 89, + "AltDPS": 89, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Rapidfire bow attack", + "HitEffect": "Generic Hit", + "Projectile": "Rapidfire arrow lvl6", + "AltProjectile": "Rapidfire arrow lvl6", + "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": false, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Bow Pickup", + "PlacingEffect": "Bow Placing", + "AnimateTurret": true, + "StrengthWeight": 2360, + "VillageType": 1, + "NewTargetAttackDelay": 500, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_XBOW2", + "InfoTID": "TID_BUILDING_XBOW2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "BB_xbow_lvl3", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5200000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl3", + "Hitpoints": 2100, + "RegenTime": 1, + "AttackRange": 1200, + "AltAttackMode": true, + "AltAttackRange": 1200, + "AttackSpeed": 192, + "AltAttackSpeed": 192, + "DPS": 97, + "AltDPS": 97, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Rapidfire bow attack", + "HitEffect": "Generic Hit", + "Projectile": "Rapidfire arrow lvl6", + "AltProjectile": "Rapidfire arrow lvl6", + "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": false, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Bow Pickup", + "PlacingEffect": "Bow Placing", + "AnimateTurret": true, + "StrengthWeight": 2410, + "VillageType": 1, + "NewTargetAttackDelay": 500, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_XBOW2", + "InfoTID": "TID_BUILDING_XBOW2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "BB_xbow_lvl4", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5600000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl4", + "Hitpoints": 2350, + "RegenTime": 1, + "AttackRange": 1200, + "AltAttackMode": true, + "AltAttackRange": 1200, + "AttackSpeed": 192, + "AltAttackSpeed": 192, + "DPS": 107, + "AltDPS": 107, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Rapidfire bow attack", + "HitEffect": "Generic Hit", + "Projectile": "Rapidfire arrow lvl6", + "AltProjectile": "Rapidfire arrow lvl6", + "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": false, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Bow Pickup", + "PlacingEffect": "Bow Placing", + "AnimateTurret": true, + "StrengthWeight": 2430, + "VillageType": 1, + "NewTargetAttackDelay": 500, + "HintPriority": 150, + "PreviewScenario": "Defense" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_XBOW2", + "InfoTID": "TID_BUILDING_XBOW2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "BB_xbow_lvl5", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 6000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "BB_xbow_upgrade_lvl5", + "Hitpoints": 2600, + "RegenTime": 1, + "AttackRange": 1200, + "AltAttackMode": true, + "AltAttackRange": 1200, + "AttackSpeed": 192, + "AltAttackSpeed": 192, + "DPS": 117, + "AltDPS": 117, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Rapidfire bow attack", + "HitEffect": "Generic Hit", + "Projectile": "Rapidfire arrow lvl6", + "AltProjectile": "Rapidfire arrow lvl6", + "ExportNameDamaged": "destroyedBuilding_3l_pit_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": false, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": false, + "ToggleAttackModeEffect": "Bow Target", + "PickUpEffect": "Bow Pickup", + "PlacingEffect": "Bow Placing", + "AnimateTurret": true, + "StrengthWeight": 2450, + "VillageType": 1, + "NewTargetAttackDelay": 500, + "HintPriority": 150, + "PreviewScenario": "Defense" + } + }, + "Barbarian King": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_BARBARIAN_KING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "heroaltar_barbarian_king_lvl1", + "ExportNameConstruction": "heroaltar_barbarian_king_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "DarkElixir", + "BuildCost": 5000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "heroaltar_barbarian_king_upg", + "BoostCost": 5, + "Hitpoints": 250, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "heroaltar_base", + "PickUpEffect": "Hero Altar Pickup", + "PlacingEffect": "Hero Altar Place", + "IsHeroBarrack": true, + "HeroType": "Barbarian King", + "HintPriority": 700 + } + }, + "Dark Elixir Drill": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl1", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 2000, + "ResourceMax": 160, + "ResourceIconLimit": 1, + "BoostCost": 7, + "Hitpoints": 800, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl2", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 700000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 3000, + "ResourceMax": 300, + "ResourceIconLimit": 1, + "BoostCost": 10, + "Hitpoints": 860, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl3", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 900000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 4500, + "ResourceMax": 540, + "ResourceIconLimit": 1, + "BoostCost": 15, + "Hitpoints": 920, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl4", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1200000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 6000, + "ResourceMax": 840, + "ResourceIconLimit": 2, + "BoostCost": 20, + "Hitpoints": 980, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl5", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 8000, + "ResourceMax": 1280, + "ResourceIconLimit": 2, + "BoostCost": 25, + "Hitpoints": 1060, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl6", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1800000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 10000, + "ResourceMax": 1800, + "ResourceIconLimit": 3, + "BoostCost": 30, + "Hitpoints": 1160, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl7", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2400000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 12000, + "ResourceMax": 2400, + "ResourceIconLimit": 4, + "BoostCost": 35, + "Hitpoints": 1280, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl8", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 14000, + "ResourceMax": 3000, + "ResourceIconLimit": 5, + "BoostCost": 40, + "Hitpoints": 1380, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_DARK_ELIXIR_PUMP", + "InfoTID": "TID_DARK_ELIXIR_PUMP_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_pump_lvl9", + "ExportNameConstruction": "darkelixir_pump_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 4000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_pump_upg", + "ProducesResource": "DarkElixir", + "ResourcePer100Hours": 16000, + "ResourceMax": 3600, + "ResourceIconLimit": 6, + "BoostCost": 45, + "Hitpoints": 1480, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_pump_base", + "PickUpEffect": "Dark Elixir Drill Pickup", + "PlacingEffect": "Dark Elixir Drill Place", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Dark Elixir Storage": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level1", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 250000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_storage_upg", + "MaxStoredDarkElixir": 10000, + "Hitpoints": 2000, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl1_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level2", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 0, + "BuildTimeH": 16, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkelixir_storage_upg", + "MaxStoredDarkElixir": 17500, + "Hitpoints": 2200, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl2_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level3", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 40000, + "Hitpoints": 2400, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl3_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level4", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1500000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 75000, + "Hitpoints": 2600, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl4_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level5", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 140000, + "Hitpoints": 2900, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl5_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level6", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 180000, + "Hitpoints": 3200, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl6_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level7", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 3, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3800000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 220000, + "Hitpoints": 3500, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl6_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level8", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 5400000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 280000, + "Hitpoints": 3800, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl6_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level9", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 8100000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 330000, + "Hitpoints": 4100, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl6_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level10", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 12, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 12500000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 350000, + "Hitpoints": 4300, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl6_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_DARK_ELIXIR_STORAGE", + "InfoTID": "TID_DARK_ELIXIR_STORAGE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "darkelixir_storage_level11", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 15, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 13500000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredDarkElixir": 360000, + "Hitpoints": 4500, + "RegenTime": 30, + "DestroyEffect": "Elixir Storage Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_glass", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_elixir_storage_lvl6_base", + "PickUpEffect": "Dark Elixir Storage Pickup", + "PlacingEffect": "Dark Elixir Storage Place", + "HintPriority": 300, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Archer Queen": { + "1": { + "BuildingLevel": 1, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_ARCHER_QUEEN_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "heroaltar_archer_queen_lvl1", + "ExportNameConstruction": "heroaltar_archer_queen_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "DarkElixir", + "BuildCost": 10000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "heroaltar_archer_queen_upg", + "BoostCost": 5, + "Hitpoints": 250, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "heroaltar_base", + "PickUpEffect": "Hero Altar Pickup", + "PlacingEffect": "Hero Altar Place", + "IsHeroBarrack": true, + "HeroType": "Archer Queen", + "HintPriority": 700 + } + }, + "Dark Barracks": { + "1": { + "BuildingLevel": 1, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl1", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 200000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 40, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 500, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl2", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 600000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 50, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 550, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl3", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 60, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 600, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl4", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1600000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 70, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 650, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl5", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 3, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2200000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 80, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 700, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl6", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 4, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2900000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 90, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 750, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl7", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 6, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 4000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 100, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 800, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl8", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 7500000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 110, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 850, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl9", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 9000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 120, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 900, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_DARK_ELIXIR_BARRACK", + "InfoTID": "TID_DARK_ELIXIR_BARRACK_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "darkBarracks_lvl10", + "ExportNameConstruction": "darkBarracks_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 13000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "darkBarracks_upg", + "UnitProduction": 130, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_BARRACK_LEVEL", + "BoostCost": 5, + "Hitpoints": 950, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 400, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Inferno Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl1", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1500000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl1_upgrade", + "Hitpoints": 1500, + "RegenTime": 20, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 30, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 500, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 80, + "DPSLv3": 800, + "DPSMulti": 30, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower Attack 2", + "AttackEffectLv3": "Dark Tower Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 2800, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl2", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 2, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl2_upgrade", + "Hitpoints": 1800, + "RegenTime": 21, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 35, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 600, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 100, + "DPSLv3": 1000, + "DPSMulti": 35, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower Attack 2", + "AttackEffectLv3": "Dark Tower Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 2500, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl3", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl3_upgrade", + "Hitpoints": 2100, + "RegenTime": 22, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 40, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 700, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 120, + "DPSLv3": 1200, + "DPSMulti": 40, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 2250, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl4", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 4, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3400000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl4_upgrade", + "Hitpoints": 2400, + "RegenTime": 23, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 50, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 800, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 140, + "DPSLv3": 1400, + "DPSMulti": 50, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 2100, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl5", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 4200000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl5_upgrade", + "Hitpoints": 2700, + "RegenTime": 23, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 60, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 900, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 160, + "DPSLv3": 1600, + "DPSMulti": 60, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 2000, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl6", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 8, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 6500000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl6_upgrade", + "Hitpoints": 3000, + "RegenTime": 23, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 70, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 1000, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 180, + "DPSLv3": 1800, + "DPSMulti": 70, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 1900, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl7", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 10500000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl7_upgrade", + "Hitpoints": 3300, + "RegenTime": 23, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 85, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 1100, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 200, + "DPSLv3": 2000, + "DPSMulti": 85, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 5, + "StrengthWeight": 1800, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl8", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12600000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl8_upgrade", + "Hitpoints": 3700, + "RegenTime": 23, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 100, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 1200, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 220, + "DPSLv3": 2200, + "DPSMulti": 100, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 6, + "StrengthWeight": 1700, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_DARK_TOWER", + "InfoTID": "TID_DARK_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "dark_tower_lvl9", + "ExportNameConstruction": "dark_tower_const", + "BuildTimeD": 13, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 21000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "dark_tower_upg", + "ExportNameUpgradeAnim": "dark_tower_lvl8_upgrade", + "Hitpoints": 4000, + "RegenTime": 23, + "AttackRange": 900, + "AltAttackMode": true, + "AltAttackRange": 1000, + "AttackSpeed": 128, + "DPS": 110, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Dark Tower lvl3 Attack 1", + "HitEffect": "Dark Tower Hit", + "ExportNameDamaged": "destroyedBuilding_2l_round_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "AltAirTargets": true, + "AltGroundTargets": true, + "AltMultiTargets": true, + "AmmoCount": 1000, + "AmmoResource": "DarkElixir", + "AmmoCost": 1300, + "LoadAmmoEffect": "Dark Tower Load", + "NoAmmoEffect": "Dark Tower No Ammo", + "ToggleAttackModeEffect": "Dark Tower Target", + "PickUpEffect": "Dark Tower Pickup", + "PlacingEffect": "Dark Tower Placing", + "IncreasingDamage": true, + "DPSLv2": 240, + "DPSLv3": 2400, + "DPSMulti": 110, + "Lv2SwitchTime": 1500, + "Lv3SwitchTime": 5250, + "AttackEffectLv2": "Dark Tower lvl3 Attack 2", + "AttackEffectLv3": "Dark Tower lvl3 Attack 3", + "TransitionEffectLv2": "Dark Tower Up 2", + "TransitionEffectLv3": "Dark Tower Up 3", + "AltNumMultiTargets": 6, + "StrengthWeight": 1650, + "AlternatePickNewTargetDelay": 50, + "HintPriority": 150, + "PreviewScenario": "DefenseHeavy", + "AltPreviewScenario": "DefenseLongRange" + } + }, + "Air Sweeper": { + "1": { + "BuildingLevel": 1, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl1", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 400000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl1_upgrade", + "Hitpoints": 750, + "RegenTime": 20, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 160, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster1" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl2", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 600000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl2_upgrade", + "Hitpoints": 800, + "RegenTime": 21, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 200, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster1" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl3", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 900000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl3_upgrade", + "Hitpoints": 850, + "RegenTime": 22, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 240, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster1" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl4", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1200000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl4_upgrade", + "Hitpoints": 900, + "RegenTime": 23, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 280, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster1" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl5", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1800000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl5_upgrade", + "Hitpoints": 950, + "RegenTime": 24, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 320, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster1" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl6", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1900000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl6_upgrade", + "Hitpoints": 1000, + "RegenTime": 25, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 360, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster1" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_AIR_BLASTER", + "InfoTID": "TID_AIR_BLASTER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "air_mortar_lvl7", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3400000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "ExportNameUpgradeAnim": "air_mortar_lvl7_upgrade", + "Hitpoints": 1050, + "RegenTime": 26, + "AttackRange": 1500, + "PrepareSpeed": 600, + "AttackSpeed": 5000, + "CoolDownOverride": 4800, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Wind Machine Attack", + "Projectile": "Air Blaster Ammo1", + "ExportNameDamaged": "destroyedBuilding_2s_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "windmachine_base", + "AirTargets": true, + "MinAttackRange": 100, + "PickUpEffect": "Wind Machine Pickup", + "PlacingEffect": "Wind Machine Place", + "AnimateTurret": true, + "StrengthWeight": 20, + "ShockwavePushStrength": 400, + "ShockwaveArcLength": 700, + "ShockwaveExpandRadius": 250, + "TargetingConeAngle": 105, + "AimRotateStep": 45, + "HintPriority": 150, + "PreviewScenario": "AirBlaster" + } + }, + "Dark Spell Factory": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_MINI_SPELL_FACTORY", + "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "mini_spell_distillery_lvl1", + "ExportNameConstruction": "mini_spell_distillery_const", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 130000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mini_spell_distillery_upg", + "HousingSpaceAlt": 1, + "UnitProduction": 2, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 600, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mini_spell_distillery_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "ForgesMiniSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_MINI_SPELL_FACTORY", + "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "mini_spell_distillery_lvl2", + "ExportNameConstruction": "mini_spell_distillery_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 260000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mini_spell_distillery_upg", + "HousingSpaceAlt": 1, + "UnitProduction": 4, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 660, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mini_spell_distillery_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "ForgesMiniSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_MINI_SPELL_FACTORY", + "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "mini_spell_distillery_lvl3", + "ExportNameConstruction": "mini_spell_distillery_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 600000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mini_spell_distillery_upg", + "HousingSpaceAlt": 1, + "UnitProduction": 6, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 720, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mini_spell_distillery_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "ForgesMiniSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_MINI_SPELL_FACTORY", + "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "mini_spell_distillery_lvl4", + "ExportNameConstruction": "mini_spell_distillery_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1200000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mini_spell_distillery_upg", + "HousingSpaceAlt": 1, + "UnitProduction": 8, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 780, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mini_spell_distillery_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "ForgesMiniSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_MINI_SPELL_FACTORY", + "InfoTID": "TID_MINI_SPELL_FACTORY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "mini_spell_distillery_lvl5", + "ExportNameConstruction": "mini_spell_distillery_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 2500000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mini_spell_distillery_upg", + "HousingSpaceAlt": 1, + "UnitProduction": 10, + "ProducesUnitsOfType": 2, + "LevelRequirementTID": "TID_REQUIRED_DARK_SPELL_FORGE_LEVEL", + "BoostCost": 5, + "Hitpoints": 840, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mini_spell_distillery_base", + "PickUpEffect": "Spell Factory Pickup", + "PlacingEffect": "Spell Factory Place", + "ForgesSpells": true, + "ForgesMiniSpells": true, + "HintPriority": 600, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Grand Warden": { + "1": { + "BuildingLevel": 1, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_GRAND_WARDEN_INFO", + "BuildingClass": "Defense", + "ShopBuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "heroaltar_elder_lvl1", + "ExportNameConstruction": "heroaltar_elder_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 1000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "heroaltar_elder_upg", + "BoostCost": 5, + "Hitpoints": 250, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "heroaltar_base", + "PickUpEffect": "Hero Altar Pickup", + "PlacingEffect": "Hero Altar Place", + "IsHeroBarrack": true, + "HeroType": "Grand Warden", + "ShareHeroCombatData": true, + "HintPriority": 700 + } + }, + "Eagle Artillery": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_ARTILLERY", + "InfoTID": "TID_ARTILLERY_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "doom_cannon_lvl1", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 6000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "ExportNameUpgradeAnim": "doom_cannon_lvl1_upgrade", + "Hitpoints": 4000, + "RegenTime": 20, + "AttackRange": 5000, + "AttackSpeed": 10000, + "CoolDownOverride": 6992, + "DPS": 0, + "Damage": 20, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Artillery Attack", + "HitEffect": "Ancient Hit", + "Projectile": "Artillery Ammo1", + "ExportNameDamaged": "destroyedBuilding_4m_base_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 30, + "AmmoResource": "Elixir", + "AmmoCost": 35000, + "MinAttackRange": 700, + "DamageRadius": 300, + "PushBack": 50, + "LoadAmmoEffect": "Artillery Load", + "NoAmmoEffect": "Artillery No Ammo", + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Artillery Placing", + "StrengthWeight": 4900, + "TargetGroups": true, + "TargetGroupsRadius": 500, + "ExportNameBeamStart": "beam_up", + "ExportNameBeamEnd": "beam_down", + "WakeUpSpeed": 1125, + "WakeUpSpace": 200, + "PreAttackEffect": "Artillery PreAttack", + "BurstCount": 3, + "BurstDelay": 750, + "HintPriority": 150, + "PreviewScenario": "AncientArtillery" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_ARTILLERY", + "InfoTID": "TID_ARTILLERY_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "doom_cannon_lvl2", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 8000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "ExportNameUpgradeAnim": "doom_cannon_lvl2_upgrade", + "Hitpoints": 4400, + "RegenTime": 21, + "AttackRange": 5000, + "AttackSpeed": 10000, + "CoolDownOverride": 6992, + "DPS": 0, + "Damage": 25, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Artillery Attack", + "HitEffect": "Ancient Hit", + "Projectile": "Artillery Ammo2", + "ExportNameDamaged": "destroyedBuilding_4m_base_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 30, + "AmmoResource": "Elixir", + "AmmoCost": 40000, + "MinAttackRange": 700, + "DamageRadius": 300, + "PushBack": 50, + "LoadAmmoEffect": "Artillery Load", + "NoAmmoEffect": "Artillery No Ammo", + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Artillery Placing", + "StrengthWeight": 4450, + "TargetGroups": true, + "TargetGroupsRadius": 500, + "ExportNameBeamStart": "beam_up", + "ExportNameBeamEnd": "beam_down", + "WakeUpSpeed": 1125, + "WakeUpSpace": 200, + "PreAttackEffect": "Artillery PreAttack", + "BurstCount": 3, + "BurstDelay": 750, + "HintPriority": 150, + "PreviewScenario": "AncientArtillery" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_ARTILLERY", + "InfoTID": "TID_ARTILLERY_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "doom_cannon_lvl3", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 10000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "ExportNameUpgradeAnim": "doom_cannon_lvl3_upgrade", + "Hitpoints": 4800, + "RegenTime": 21, + "AttackRange": 5000, + "AttackSpeed": 10000, + "CoolDownOverride": 6992, + "DPS": 0, + "Damage": 30, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Artillery Attack", + "HitEffect": "Ancient Hit", + "Projectile": "Artillery Ammo3", + "ExportNameDamaged": "destroyedBuilding_4m_base_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 30, + "AmmoResource": "Elixir", + "AmmoCost": 45000, + "MinAttackRange": 700, + "DamageRadius": 300, + "PushBack": 50, + "LoadAmmoEffect": "Artillery Load", + "NoAmmoEffect": "Artillery No Ammo", + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Artillery Placing", + "StrengthWeight": 4100, + "TargetGroups": true, + "TargetGroupsRadius": 500, + "ExportNameBeamStart": "beam_up", + "ExportNameBeamEnd": "beam_down", + "WakeUpSpeed": 1125, + "WakeUpSpace": 200, + "PreAttackEffect": "Artillery PreAttack", + "BurstCount": 3, + "BurstDelay": 750, + "HintPriority": 150, + "PreviewScenario": "AncientArtillery" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_ARTILLERY", + "InfoTID": "TID_ARTILLERY_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "doom_cannon_lvl4", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 13000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "ExportNameUpgradeAnim": "doom_cannon_lvl4_upgrade", + "Hitpoints": 5200, + "RegenTime": 21, + "AttackRange": 5000, + "AttackSpeed": 10000, + "CoolDownOverride": 6992, + "DPS": 0, + "Damage": 35, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Artillery Attack", + "HitEffect": "Ancient Hit", + "Projectile": "Artillery Ammo4", + "ExportNameDamaged": "destroyedBuilding_4m_base_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 30, + "AmmoResource": "Elixir", + "AmmoCost": 50000, + "MinAttackRange": 700, + "DamageRadius": 300, + "PushBack": 50, + "LoadAmmoEffect": "Artillery Load", + "NoAmmoEffect": "Artillery No Ammo", + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Artillery Placing", + "StrengthWeight": 3800, + "TargetGroups": true, + "TargetGroupsRadius": 500, + "ExportNameBeamStart": "beam_up", + "ExportNameBeamEnd": "beam_down", + "WakeUpSpeed": 1125, + "WakeUpSpace": 200, + "PreAttackEffect": "Artillery PreAttack", + "BurstCount": 3, + "BurstDelay": 750, + "HintPriority": 150, + "PreviewScenario": "AncientArtillery" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_ARTILLERY", + "InfoTID": "TID_ARTILLERY_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "doom_cannon_lvl5", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 17000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "ExportNameUpgradeAnim": "doom_cannon_lvl5_upgrade", + "Hitpoints": 5600, + "RegenTime": 21, + "AttackRange": 5000, + "AttackSpeed": 10000, + "CoolDownOverride": 6992, + "DPS": 0, + "Damage": 40, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Artillery Attack", + "HitEffect": "Ancient Hit", + "Projectile": "Artillery Ammo5", + "ExportNameDamaged": "destroyedBuilding_4m_base_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 30, + "AmmoResource": "Elixir", + "AmmoCost": 55000, + "MinAttackRange": 700, + "DamageRadius": 300, + "PushBack": 50, + "LoadAmmoEffect": "Artillery Load", + "NoAmmoEffect": "Artillery No Ammo", + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Artillery Placing", + "StrengthWeight": 3550, + "TargetGroups": true, + "TargetGroupsRadius": 500, + "ExportNameBeamStart": "beam_up", + "ExportNameBeamEnd": "beam_down", + "WakeUpSpeed": 1125, + "WakeUpSpace": 200, + "PreAttackEffect": "Artillery PreAttack", + "BurstCount": 3, + "BurstDelay": 750, + "HintPriority": 150, + "PreviewScenario": "AncientArtillery" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_ARTILLERY", + "InfoTID": "TID_ARTILLERY_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "doom_cannon_lvl6", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 21500000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "ExportNameUpgradeAnim": "doom_cannon_lvl6_upgrade", + "Hitpoints": 5900, + "RegenTime": 21, + "AttackRange": 5000, + "AttackSpeed": 10000, + "CoolDownOverride": 6992, + "DPS": 0, + "Damage": 45, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Artillery Attack", + "HitEffect": "Ancient Hit", + "Projectile": "Artillery Ammo6", + "ExportNameDamaged": "destroyedBuilding_4m_base_rock", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "laboratory_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 30, + "AmmoResource": "Elixir", + "AmmoCost": 60000, + "MinAttackRange": 700, + "DamageRadius": 300, + "PushBack": 50, + "LoadAmmoEffect": "Artillery Load", + "NoAmmoEffect": "Artillery No Ammo", + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Artillery Placing", + "StrengthWeight": 3400, + "TargetGroups": true, + "TargetGroupsRadius": 500, + "ExportNameBeamStart": "beam_up", + "ExportNameBeamEnd": "beam_down", + "WakeUpSpeed": 1125, + "WakeUpSpace": 200, + "PreAttackEffect": "Artillery PreAttack", + "BurstCount": 3, + "BurstDelay": 750, + "HintPriority": 150, + "PreviewScenario": "AncientArtillery" + } + }, + "Bomb Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl1", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 700000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 650, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 24, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed1", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit", + "Projectile": "Bomb Tower Ammo1", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl1", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 400, + "DieDamage": 150, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl2", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 700, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 28, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed1", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit", + "Projectile": "Bomb Tower Ammo1", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl1", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 420, + "DieDamage": 180, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl3", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1600000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 750, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 32, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed2", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit2", + "Projectile": "Bomb Tower Ammo2", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl2", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 440, + "DieDamage": 220, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl4", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 850, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 40, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed3", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit2", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 260, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl5", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2800000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1050, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 48, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed3", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 300, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl6", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 4000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1300, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 56, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed4", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 350, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl7", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 6300000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1600, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 64, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed4", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 400, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl8", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 8800000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1900, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 72, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed4", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 450, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl9", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12300000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 2300, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 84, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed4", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 500, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl10", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 2500, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 94, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed4", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 550, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_BOMB_TOWER", + "InfoTID": "TID_BUILDING_BOMB_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "bomb_tower_lvl11", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 14, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20800000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 2700, + "RegenTime": 25, + "AttackRange": 600, + "AttackSpeed": 1100, + "DPS": 104, + "DestroyEffect": "Building Destroyed", + "DestroyDamageEffect": "Bomb Tower Destroyed4", + "AttackEffect": "Bomb Tower Throw Start", + "HitEffect": "Bomb Tower Hit3", + "Projectile": "Bomb Tower Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 150, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "DefenderCharacter": "BomberTower_lvl3", + "DefenderCount": 1, + "DefenderZ": 145, + "StrengthWeight": 460, + "DieDamage": 600, + "DieDamageRadius": 275, + "DieDamageEffect": "Bomb Tower Explode", + "DieDamageDelay": 1000, + "HintPriority": 150, + "PreviewScenario": "DefenseBombTower" + } + }, + "Builder Hall": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl1", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 0, + "CapitalHallLevel": 0, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 50000, + "MaxStoredElixir2": 50000, + "LootOnDestruction": true, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 1, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl2", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 5, + "BuildResource": "Gold2", + "BuildCost": 3500, + "CapitalHallLevel": 1, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 75000, + "MaxStoredElixir2": 75000, + "LootOnDestruction": true, + "Hitpoints": 800, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 2, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl3", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 30000, + "CapitalHallLevel": 2, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 100000, + "MaxStoredElixir2": 100000, + "LootOnDestruction": true, + "Hitpoints": 975, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_woodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 3, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl4", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 200000, + "CapitalHallLevel": 3, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 150000, + "MaxStoredElixir2": 150000, + "LootOnDestruction": true, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 4, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl5", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 400000, + "CapitalHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 900000, + "MaxStoredElixir2": 900000, + "LootOnDestruction": true, + "Hitpoints": 1350, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 5, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl6", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "CapitalHallLevel": 5, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 900000, + "MaxStoredElixir2": 900000, + "LootOnDestruction": true, + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 6, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl7", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1800000, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 1100000, + "MaxStoredElixir2": 1100000, + "LootOnDestruction": true, + "Hitpoints": 1850, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 7, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl8", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2800000, + "CapitalHallLevel": 7, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 1300000, + "MaxStoredElixir2": 1300000, + "LootOnDestruction": true, + "Hitpoints": 2150, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 8, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl9", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3800000, + "CapitalHallLevel": 8, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 1500000, + "MaxStoredElixir2": 1500000, + "LootOnDestruction": true, + "Hitpoints": 2450, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 9, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_TOWN_HALL2", + "InfoTID": "TID_TOWN_HALL2_INFO", + "BuildingClass": "Town Hall2", + "SecondaryTargetingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_TH_lvl10", + "ExportNameNpc": "new_TH_lvl1", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4800000, + "CapitalHallLevel": 9, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "MaxStoredGold2": 1500000, + "MaxStoredElixir2": 1500000, + "LootOnDestruction": true, + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 10, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 1 + } + }, + "Clock Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl1", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 150000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl2", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 180000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 800, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl3", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 0, + "BuildTimeH": 4, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 220000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 975, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl4", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl5", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 700000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 1350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl6", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl7", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1700000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 1850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl8", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2200000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 2150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl9", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2700000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 2450, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_CLOCK_TOWER", + "InfoTID": "TID_CLOCK_TOWER_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "clocktower_lvl10", + "ExportNameConstruction": "town_hall_const", + "ExportNameLocked": "clocktower_broken", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3700000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "BoostCost": 0, + "FreeBoost": true, + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_base_rockwoodpanel_white", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_clockTower_lvl1", + "PickUpEffect": "Clock Tower Pickup", + "PlacingEffect": "Clock Tower Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 250, + "Stage": 1 + } + }, + "Builder Barracks": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl1", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 20, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl2", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 1, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 4000, + "TownHallLevel": 2, + "CapitalHallLevel": 2, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 25, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl3", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 10, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 10000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 30, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 400, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl4", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 30, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 25000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 35, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 460, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl5", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 100000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 40, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 550, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl6", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 150000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 45, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl7", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 0, + "BuildTimeH": 9, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 300000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 50, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl8", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 55, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl9", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 55, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1000, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl10", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1500000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 55, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "11": { + "BuildingLevel": 11, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl11", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 55, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + }, + "12": { + "BuildingLevel": 12, + "TID": "TID_BUILDING_BARRACK2", + "InfoTID": "TID_BARRACK2_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_training_camp_lvl12", + "ExportNameConstruction": "barracks_const", + "ExportNameLocked": "adv_training_camp_broken", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 3000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "UnitProduction": 55, + "ProducesUnitsOfType": 1, + "LevelRequirementTID": "TID_REQUIRED_BARRACK_LEVEL", + "Hitpoints": 1450, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_wood_red", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 150, + "Stage": 1 + } + }, + "Double Cannon": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl1", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 10, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 20000, + "TownHallLevel": 2, + "CapitalHallLevel": 2, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 600, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 50, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Small", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 436, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl2", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 50000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 690, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 55, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Small", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball2", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl2_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 456, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl3", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 3, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 80000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 800, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 61, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Small", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl3_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 476, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl4", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 910, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 67, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Small", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball4", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl4_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 496, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl6", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 900000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1050, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 74, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Medium", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball6", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl7_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 520, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl8", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1400000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1250, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 81, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Large", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball8", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl8_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 544, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl9", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2200000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1450, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 89, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Large", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball9", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl9_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 568, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl10", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3200000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "Hitpoints": 1700, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 98, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Large", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball10", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl9_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 596, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl11", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4200000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "Hitpoints": 1950, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 108, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Large", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball10", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl9_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 620, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_DOUBLE_CANNON", + "InfoTID": "TID_DOUBLE_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "doubleCannon_lvl12", + "ExportNameConstruction": "basic_turret_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5200000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "Hitpoints": 2200, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1600, + "CoolDownOverride": 800, + "Damage": 120, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Double Cannon Attack Large", + "HitEffect": "Generic Hit", + "Projectile": "DoubleCannonball10", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon2_lvl9_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "AnimateTurret": true, + "StrengthWeight": 640, + "BurstCount": 4, + "BurstDelay": 192, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + } + }, + "Multi Mortar": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl1", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 600000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 500, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 45, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo1", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl1", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 5720, + "BurstCount": 3, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl2", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 700000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 575, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 45, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo2", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl2", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 5940, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl3", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 800000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 660, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 50, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo2", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl2", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6160, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl4", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 760, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 55, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo2", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl2", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6400, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl5", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 875, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 60, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl3", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6640, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl6", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1600000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1050, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 66, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo4", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl4", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6900, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl7", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1250, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 73, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo5", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl5", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 7160, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl8", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3500000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1450, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 80, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo5", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl5", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 7440, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl9", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1650, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 88, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo5", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl5", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 7720, + "BurstCount": 4, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_MULTI_MORTAR", + "InfoTID": "TID_MULTI_MORTAR_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "multi_mortar_lvl10", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5500000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1850, + "RegenTime": 1, + "AttackRange": 1100, + "AttackSpeed": 5000, + "CoolDownOverride": 3000, + "Damage": 88, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Multi Mortar Attack 2", + "HitEffect": "Multi Mortar Hit", + "Projectile": "Mortar2 Ammo5", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "newVillage_multi_mortar_lvl5", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 400, + "DamageRadius": 300, + "PickUpEffect": "Multi Mortar Pickup", + "PlacingEffect": "Multi Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 8000, + "BurstCount": 5, + "BurstDelay": 500, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2" + } + }, + "Star Laboratory": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl1", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl1", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl2", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 10, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 15000, + "TownHallLevel": 2, + "CapitalHallLevel": 2, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 800, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl2", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl3", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 30, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 50000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 975, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl3", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl4", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl4", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl5", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 700000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl5", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl6", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl6", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl7", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 1850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl6", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl8", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 3000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 2150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl6", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl9", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 4000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 2450, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl6", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_TELESCOPE", + "InfoTID": "TID_TELESCOPE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "Telescope_lvl10", + "ExportNameConstruction": "spell_factory_const", + "ExportNameLocked": "Telescope_broken", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 5000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "UNIT", + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4l_pit_rockglass", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "newVillage_lab_lvl6", + "PickUpEffect": "Laboratory Pickup", + "PlacingEffect": "Laboratory Placing", + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 800, + "Stage": 1 + } + }, + "Master Builder's Hut": { + "1": { + "BuildingLevel": 1, + "TID": "TID_WORKER2_BUILDING", + "InfoTID": "TID_WORKER2_INFO", + "BuildingClass": "Worker2", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Diamonds", + "BuildCost": 20000, + "TownHallLevel": 1000, + "CapitalHallLevel": 1, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1 + } + }, + "Reinforcement Camp": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_REINFORCEMENT_CAMP", + "InfoTID": "TID_REINFORCEMENT_CAMP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "adv_fireplace_lvl7", + "ExportNameConstruction": "basic_turret_const", + "ExportNameLocked": "adv_fireplace_broken_3x3", + "BuildResource": "Elixir2", + "BuildCost": 1500000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "ArmySlotType": "Reinforcement", + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3s_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "adv_fireplace_lvl1_base", + "PickUpEffect": "Troop Housing Pickup", + "PlacingEffect": "Troop Housing Placing", + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 750, + "Stage": 2 + } + }, + "Firecrackers": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl1", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 15, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 40000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 400, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 19, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit1", + "Projectile": "FireworkMini", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 324, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl2", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 80000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 460, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 21, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit1", + "Projectile": "FireworkMini2", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 330, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl3", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 4, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 120000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 530, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 23, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit2", + "Projectile": "FireworkMini3", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 336, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl4", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 610, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 25, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit2", + "Projectile": "FireworkMini4", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 342, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl5", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 800000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 700, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 27, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit3", + "Projectile": "FireworkMini5", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 348, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl6", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 850, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 30, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit3", + "Projectile": "FireworkMini5", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 354, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl7", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1000, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 33, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit3", + "Projectile": "FireworkMini5", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 360, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl8", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1150, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 36, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit3", + "Projectile": "FireworkMini6", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 366, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl9", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1300, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 40, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit3", + "Projectile": "FireworkMini6", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 372, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_AIR_DEFENSE_SMALL", + "InfoTID": "TID_AIR_DEFENSE_SMALL_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_box_lvl10", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1500, + "RegenTime": 1, + "AttackRange": 900, + "AttackSpeed": 800, + "Damage": 44, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Mini Attack", + "HitEffect": "Air Defence Mini hit3", + "Projectile": "FireworkMini6", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airdefence_box_base_lvl1", + "AirTargets": true, + "GroundTargets": false, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 378, + "BurstCount": 3, + "BurstDelay": 64, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + } + }, + "Guard Post": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl1", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 4, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 200000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 422, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 2, + "HintPriority": 150 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl2", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 240000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 379, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 4, + "HintPriority": 150 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl3", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 280000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 400, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 265, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 6, + "HintPriority": 150 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl4", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 320000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 460, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 265, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 8, + "HintPriority": 150 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl5", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 550, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 212, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 10, + "HintPriority": 150 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl6", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1400000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 212, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 12, + "HintPriority": 150 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl7", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2300000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 190, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 14, + "HintPriority": 150 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl8", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3200000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 190, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 16, + "HintPriority": 150 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl9", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4100000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1000, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 190, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 18, + "HintPriority": 150 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_GUARD_POST", + "InfoTID": "TID_GUARD_POST_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "GuardPost_lvl10", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5100000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "teslatower_upg", + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_lightblue", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "newVillage_guard_post_lvl1", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "StrengthWeight": 190, + "VillageType": 1, + "DefenceTroopCount": 2, + "DefenceTroopCharacter": "Barbarian2", + "DefenceTroopCharacter2": "Archer2", + "DefenceTroopLevel": 20, + "HintPriority": 150 + } + }, + "Mega Tesla": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl1", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 700, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 380, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1493, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl2", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3100000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 800, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 418, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1522, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl3", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3200000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 950, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 460, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1552, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl4", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3300000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1100, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 506, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1583, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl5", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3400000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1300, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 556, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1614, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl6", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3600000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1500, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 612, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1646, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl7", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3800000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1700, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 673, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1678, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl8", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1900, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 741, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1711, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl9", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4800000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2150, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 816, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1744, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_MEGA_TESLA", + "InfoTID": "TID_MEGA_TESLA_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "mega_tesla_lvl10", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5800000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2400, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 4000, + "Damage": 896, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MegaTesla Attack_1", + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 40, + "AttackEffectAlt": "MegaTesla Attack_1_chain", + "HitEffect": "Mega Tesla Hit", + "ExportNameDamaged": "destroyedBuilding_3l_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Tesla Pickup", + "PlacingEffect": "Tesla Placing", + "StrengthWeight": 1770, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + } + }, + "Battle Machine": { + "1": { + "BuildingLevel": 1, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_WARMACHINE_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "heroaltar_warmachine_lvl1", + "ExportNameConstruction": "air_mortar_const", + "ExportNameLocked": "heroaltar_warmachine_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 900000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "heroaltar_barbarian_king_upg", + "LevelRequirementTID": "TID_REQUIRED_BUILDERS_HALL_LEVEL", + "Hitpoints": 250, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "heroaltar_base", + "PickUpEffect": "Hero Altar Pickup", + "PlacingEffect": "Hero Altar Place", + "Locked": true, + "StartingHomeCount": 1, + "IsHeroBarrack": true, + "HeroType": "Warmachine", + "VillageType": 1, + "HintPriority": 700, + "Stage": 1 + } + }, + "Air Bombs": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl1", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 300000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1000, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 270, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_1", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl1", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 556, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl2", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 320000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1100, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 297, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_2", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl2", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 583, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl3", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 340000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1250, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 327, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl3", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 612, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl4", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 360000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1400, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 359, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl4", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 642, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl5", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1600, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 395, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl5", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 674, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl6", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1850, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 435, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl6", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 707, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl7", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2400000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2100, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 478, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_3", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl7", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 742, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl8", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3400000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2350, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 526, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_4", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl8", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 779, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl9", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4400000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2600, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 579, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_4", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl8", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 816, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_AIR_DEFENSE2", + "InfoTID": "TID_AIR_DEFENSE2_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "airDefence_factory_lvl10", + "ExportNameConstruction": "air_mortar_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5400000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2900, + "RegenTime": 1, + "AttackRange": 750, + "AttackSpeed": 3000, + "Damage": 637, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Air Defence Barrel Attack", + "HitEffect": "Air Defense Barrel Hit", + "Projectile": "AirDefenceBalloon_4", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "airDefence_factory_lvl8", + "AirTargets": true, + "GroundTargets": false, + "DamageRadius": 150, + "PushBack": 50, + "PickUpEffect": "Air Defence Pickup", + "PlacingEffect": "Air Defence Placing", + "StrengthWeight": 850, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "AirDefense2" + } + }, + "Crusher": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl1", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 120000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1000, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 440, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 360, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl2", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 0, + "BuildTimeH": 5, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 180000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1100, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 484, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 376, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl3", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 220000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1250, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 532, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 392, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl4", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 350000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1400, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 586, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 408, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl5", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1600, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 644, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 428, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl6", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1850, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 709, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 448, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl7", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2400000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2100, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 779, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 468, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl8", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3400000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2350, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 857, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 488, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl9", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4400000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2600, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 943, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 508, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_CRUSHER", + "InfoTID": "TID_BUILDING_CRUSHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Crusher_lvl10", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5400000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2900, + "RegenTime": 1, + "AttackRange": 230, + "AttackSpeed": 3500, + "CoolDownOverride": 2200, + "Damage": 1037, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "CrusherAttack", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_3m_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl1_base", + "AirTargets": false, + "GroundTargets": true, + "DamageRadius": 280, + "PushBack": 50, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "StrengthWeight": 528, + "VillageType": 1, + "SelfAsAoeCenter": true, + "HintPriority": 150, + "PreviewScenario": "Crusher" + } + }, + "Roaster": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl1", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 800, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 15, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit1-3", + "Projectile": "Flamer_projectile1-3", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl1", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 7200, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl2", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1200000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 950, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 17, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit1-3", + "Projectile": "Flamer_projectile1-3", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl2", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 7344, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl3", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1400000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1100, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 19, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit1-3", + "Projectile": "Flamer_projectile1-3", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl3", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 7490, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl4", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1300, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 21, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit4-6", + "Projectile": "Flamer_projectile4-6", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl4", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 7639, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl5", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1600000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1500, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 23, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit4-6", + "Projectile": "Flamer_projectile4-6", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl5", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 7791, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl6", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1700000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1700, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 25, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit4-6", + "Projectile": "Flamer_projectile4-6", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl6", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 7946, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl7", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2600000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 1900, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 27, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit7-8", + "Projectile": "Flamer_projectile7-8", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl7", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 8104, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl8", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3600000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2100, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 30, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit7-8", + "Projectile": "Flamer_projectile7-8", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl8", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 8266, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl9", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4600000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2350, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 33, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit7-8", + "Projectile": "Flamer_projectile7-8", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl8", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 8432, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_FLAMER", + "InfoTID": "TID_FLAMER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Flamer_lvl10", + "ExportNameConstruction": "darkelixir_storage_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5600000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "Hitpoints": 2600, + "RegenTime": 1, + "AttackRange": 700, + "AttackSpeed": 1800, + "CoolDownOverride": 1500, + "Damage": 36, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Flamer_attack", + "HitEffect": "Flamer_hit7-8", + "Projectile": "Flamer_projectile7-8", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "shadow_flamer_lvl8", + "AirTargets": true, + "GroundTargets": true, + "DamageRadius": 120, + "PickUpEffect": "Double Cannon Pickup", + "PlacingEffect": "Double Cannon Placing", + "StrengthWeight": 8600, + "BurstCount": 15, + "BurstDelay": 140, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + } + }, + "Giant Cannon": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl1", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 700, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 205, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl9_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4200, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl2", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2100000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 800, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 226, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl10_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4284, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl3", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2200000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 950, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 248, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4369, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl4", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2300000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1100, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 273, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4456, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl5", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2400000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1300, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 300, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4545, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl6", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1500, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 330, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4635, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl7", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2700000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "Hitpoints": 1700, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 363, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4727, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl8", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3800000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "Hitpoints": 1900, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 399, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4821, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl9", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4700000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "Hitpoints": 2150, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 439, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4821, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_GIANT_CANNON", + "InfoTID": "TID_GIANT_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "megaCannon_lvl10", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5700000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "Hitpoints": 2400, + "RegenTime": 1, + "AttackRange": 950, + "AttackSpeed": 5000, + "Damage": 483, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Giant Cannon Attack", + "HitEffect": "Generic Hit", + "Projectile": "GiantCannonball1", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 4900, + "PenetratingProjectile": true, + "PenetratingRadius": 100, + "PenetratingExtraRange": 4800, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "Defense2" + } + }, + "Gem Mine": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl1", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 0, + "BuildTimeH": 1, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 120000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 9, + "ResourceMax": 10, + "ResourceIconLimit": 1, + "Hitpoints": 300, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl2", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 0, + "BuildTimeH": 2, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 180000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 10, + "ResourceMax": 11, + "ResourceIconLimit": 1, + "Hitpoints": 350, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl3", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 0, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 240000, + "TownHallLevel": 3, + "CapitalHallLevel": 3, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 11, + "ResourceMax": 12, + "ResourceIconLimit": 1, + "Hitpoints": 400, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl4", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 0, + "BuildTimeH": 8, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 450000, + "TownHallLevel": 4, + "CapitalHallLevel": 4, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 12, + "ResourceMax": 13, + "ResourceIconLimit": 1, + "Hitpoints": 460, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl5", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 0, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1000000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 13, + "ResourceMax": 14, + "ResourceIconLimit": 1, + "Hitpoints": 550, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl6", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 14, + "ResourceMax": 15, + "ResourceIconLimit": 1, + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl7", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 16, + "ResourceMax": 16, + "ResourceIconLimit": 1, + "Hitpoints": 750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl8", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 3500000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 18, + "ResourceMax": 17, + "ResourceIconLimit": 1, + "Hitpoints": 850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl9", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 4500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 20, + "ResourceMax": 18, + "ResourceIconLimit": 1, + "Hitpoints": 1000, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_GEM_MINE", + "InfoTID": "TID_GEM_MINE_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "gem_mine_lvl10", + "ExportNameConstruction": "goldmine_const", + "ExportNameLocked": "gem_mine_broken", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 5500000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "goldmine_upg", + "ProducesResource": "Diamonds", + "ResourcePer100Hours": 21, + "ResourceMax": 19, + "ResourceIconLimit": 1, + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "goldmine_base", + "PickUpEffect": "Gold Mine Pickup", + "PlacingEffect": "Gold Mine Placing", + "Locked": true, + "StartingHomeCount": 1, + "VillageType": 1, + "RedMul": 245, + "GreenMul": 245, + "BlueMul": 255, + "RedAdd": 0, + "GreenAdd": 0, + "BlueAdd": 10, + "HintPriority": 100, + "Stage": 1 + } + }, + "Workshop": { + "1": { + "BuildingLevel": 1, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl1", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 3000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 1, + "UnitProduction": 2, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1000, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl2", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 5000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 2, + "UnitProduction": 3, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1100, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl3", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 7000000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 3, + "UnitProduction": 3, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1200, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl4", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 9000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 3, + "UnitProduction": 3, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1300, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl5", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 10000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 3, + "UnitProduction": 3, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1400, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl6", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 14000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 3, + "UnitProduction": 3, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1500, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_SIEGE_WORKSHOP", + "InfoTID": "TID_SIEGE_WORKSHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "siegeWorkshop_lvl7", + "ExportNameConstruction": "siegeWorkshop_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 19000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "siegeWorkshop_upg", + "HousingSpaceSiege": 3, + "UnitProduction": 3, + "ProducesUnitsOfType": 3, + "LevelRequirementTID": "TID_REQUIRED_SIEGE_WORKSHOP_LEVEL", + "BoostCost": 5, + "Hitpoints": 1600, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_4siege_pit_rockwood_red", + "BuildingW": 4, + "BuildingH": 4, + "ExportNameBase": "siege_workshop_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 800, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Goblin Castle": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_GOBLIN_CASTLE", + "InfoTID": "TID_BUILDING_GOBLIN_CASTLE", + "BuildingClass": "Npc", + "SWF": "sc/buildings.sc", + "ExportName": "goblin_clancastle_01", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 10000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 1000000, + "MaxStoredWarElixir": 1000000, + "MaxStoredWarDarkElixir": 10000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 50, + "HousingSpaceAlt": 0, + "HousingSpaceSiege": 0, + "Hitpoints": 4000, + "RegenTime": 10, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1 + } + }, + "Foreboding Cave": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_DRAGON_CAVE", + "InfoTID": "TID_BUILDING_DRAGON_CAVE", + "BuildingClass": "Npc", + "SWF": "sc/buildings.sc", + "ExportName": "deco_dragoncave_01", + "ExportNameConstruction": "generic_construction_state3", + "ExportNameLocked": "alliance_castle_lvl1_broken", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 10000, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "alliance_castle_upg", + "MaxStoredWarGold": 1000000, + "MaxStoredWarElixir": 1000000, + "MaxStoredWarDarkElixir": 10000, + "LootOnDestruction": true, + "Bunker": true, + "HousingSpace": 50, + "HousingSpaceAlt": 0, + "HousingSpaceSiege": 0, + "Hitpoints": 25000, + "RegenTime": 10, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "alliance_castle_lvl1_broken", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "alliance_castle_base", + "PickUpEffect": "Alliance Castle Pickup", + "PlacingEffect": "Alliance Castle Placing", + "Locked": true, + "StartingHomeCount": 1 + } + }, + "Lava Launcher": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl1", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 500, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 50, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo1", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 5720, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl2", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3100000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 575, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 55, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo2", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 5940, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl3", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3200000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 660, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 61, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo3", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6160, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl4", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3400000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 760, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 67, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo4", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6400, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl5", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3700000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 875, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 73, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo5", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6640, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl6", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1050, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 81, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo6", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 6900, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl7", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4300000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1250, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 89, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo7", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 7160, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl8", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4600000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1450, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 97, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo8", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 7440, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl9", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4900000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1650, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 107, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo9", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 7700, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_LAVA_LAUNCHER", + "InfoTID": "TID_LAVA_LAUNCHER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings2.sc", + "ExportName": "Lava_Launcher_lvl10", + "ExportNameConstruction": "mortar_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5900000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "mortar_upg", + "Hitpoints": 1850, + "RegenTime": 1, + "AttackRange": 1300, + "AttackSpeed": 7000, + "CoolDownOverride": 3000, + "Damage": 118, + "RandomHitPosition": true, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Lavalauncher Attack", + "HitEffect": "Mortar Hit lvl8", + "Projectile": "Lava Ammo10", + "ExportNameDamaged": "destroyedBuilding_3l_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "mortar_base", + "AirTargets": false, + "GroundTargets": true, + "MinAttackRange": 600, + "DamageRadius": 300, + "PickUpEffect": "Mortar Pickup", + "PlacingEffect": "Mortar Placing", + "AnimateTurret": true, + "StrengthWeight": 8000, + "VillageType": 1, + "HintPriority": 150, + "PreviewScenario": "DefenseLongRange2b" + } + }, + "B.O.B's Hut": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BOB_HUT", + "InfoTID": "TID_BOB_HUT_INFO", + "BuildingClass": "Worker2", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut_arto_lvl5_a", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 0, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "BoostCost": 500, + "Hitpoints": 250, + "RegenTime": 20, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing" + } + }, + "B.O.B Control": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BOB_UNLOCK_BUILDING", + "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut_arto_lvl1", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 100000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "Hitpoints": 250, + "RegenTime": 20, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "VillageType": 1, + "HintPriority": 300, + "UpgradeTasks": "Arto Upgrade Tasks", + "UpgradeTasksRequired": 1, + "Stage": 2 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BOB_UNLOCK_BUILDING", + "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut_arto_lvl2", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 500000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "Hitpoints": 250, + "RegenTime": 20, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "VillageType": 1, + "HintPriority": 300, + "UpgradeTasks": "Arto Upgrade Tasks", + "UpgradeTasksRequired": 2, + "Stage": 2 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BOB_UNLOCK_BUILDING", + "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut_arto_lvl3", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "Hitpoints": 250, + "RegenTime": 20, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "VillageType": 1, + "HintPriority": 300, + "UpgradeTasks": "Arto Upgrade Tasks", + "UpgradeTasksRequired": 3, + "Stage": 2 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BOB_UNLOCK_BUILDING", + "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut_arto_lvl4", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "Hitpoints": 250, + "RegenTime": 20, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "VillageType": 1, + "HintPriority": 300, + "UpgradeTasks": "Arto Upgrade Tasks", + "UpgradeTasksRequired": 4, + "Stage": 2 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BOB_UNLOCK_BUILDING", + "InfoTID": "TID_BOB_UNLOCK_BUILDING_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings2.sc", + "ExportName": "new_builders_hut_arto_lvl5", + "ExportNameConstruction": "worker_building_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "worker_building_upg", + "Hitpoints": 250, + "RegenTime": 20, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_2s_pit_wood_darkbrown", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "worker_building_base", + "PickUpEffect": "Worker Building Pickup", + "PlacingEffect": "Worker Building Placing", + "VillageType": 1, + "HintPriority": 300, + "UpgradeTasks": "Arto Upgrade Tasks", + "Stage": 2 + } + }, + "Royal Champion": { + "1": { + "BuildingLevel": 1, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_ROYAL_CHAMPION_INFO", + "BuildingClass": "Army", + "ShopBuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "heroaltar_royal_champion_lvl1", + "ExportNameConstruction": "heroaltar_barbarian_king_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "DarkElixir", + "BuildCost": 50000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "heroaltar_elder_upg", + "BoostCost": 5, + "Hitpoints": 250, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "heroaltar_base", + "PickUpEffect": "Hero Altar Pickup", + "PlacingEffect": "Hero Altar Place", + "IsHeroBarrack": true, + "HeroType": "Warrior Princess", + "HintPriority": 700 + } + }, + "Scattershot": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_SCATTERSHOT", + "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "ice_breaker_lvl1", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 11000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "ice_breaker_lvl1_upgrade", + "Hitpoints": 3600, + "RegenTime": 20, + "AttackRange": 1000, + "AttackSpeed": 3228, + "CoolDownOverride": 1500, + "DPS": 125, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Ice Breaker Attack", + "Projectile": "Ice Breaker Ammo1", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 90, + "AmmoResource": "Elixir", + "AmmoCost": 40000, + "MinAttackRange": 300, + "DamageRadius": 100, + "PickUpEffect": "Scattershot Pickup", + "PlacingEffect": "Scattershot Placing", + "StrengthWeight": 700, + "NewTargetAttackDelay": 2200, + "HintPriority": 150, + "AnimationActionFrame": 5, + "PreviewScenario": "DefenseLongRange3" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_SCATTERSHOT", + "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "ice_breaker_lvl2", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12000000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "ice_breaker_lvl2_upgrade", + "Hitpoints": 4200, + "RegenTime": 22, + "AttackRange": 1000, + "AttackSpeed": 3228, + "CoolDownOverride": 1500, + "DPS": 150, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Ice Breaker Attack", + "Projectile": "Ice Breaker Ammo2", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 90, + "AmmoResource": "Elixir", + "AmmoCost": 40000, + "MinAttackRange": 300, + "DamageRadius": 100, + "PickUpEffect": "Scattershot Pickup", + "PlacingEffect": "Scattershot Placing", + "StrengthWeight": 700, + "NewTargetAttackDelay": 2200, + "HintPriority": 150, + "AnimationActionFrame": 5, + "PreviewScenario": "DefenseLongRange3" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_SCATTERSHOT", + "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "ice_breaker_lvl3", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12600000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "ice_breaker_lvl3_upgrade", + "Hitpoints": 4800, + "RegenTime": 24, + "AttackRange": 1000, + "AttackSpeed": 3228, + "CoolDownOverride": 1500, + "DPS": 175, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Ice Breaker Attack", + "Projectile": "Ice Breaker Ammo3", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 90, + "AmmoResource": "Elixir", + "AmmoCost": 40000, + "MinAttackRange": 300, + "DamageRadius": 100, + "PickUpEffect": "Scattershot Pickup", + "PlacingEffect": "Scattershot Placing", + "StrengthWeight": 700, + "NewTargetAttackDelay": 2200, + "HintPriority": 150, + "AnimationActionFrame": 5, + "PreviewScenario": "DefenseLongRange3" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_SCATTERSHOT", + "InfoTID": "TID_BUILDING_SCATTERSHOT_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "ice_breaker_lvl4", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 21300000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "alliance_castle_upg", + "ExportNameUpgradeAnim": "ice_breaker_lvl4_upgrade", + "Hitpoints": 5100, + "RegenTime": 24, + "AttackRange": 1000, + "AttackSpeed": 3228, + "CoolDownOverride": 1500, + "DPS": 185, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Ice Breaker Attack", + "Projectile": "Ice Breaker Ammo4", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "AirTargets": true, + "GroundTargets": true, + "AmmoCount": 90, + "AmmoResource": "Elixir", + "AmmoCost": 40000, + "MinAttackRange": 300, + "DamageRadius": 100, + "PickUpEffect": "Scattershot Pickup", + "PlacingEffect": "Scattershot Placing", + "StrengthWeight": 700, + "NewTargetAttackDelay": 2200, + "HintPriority": 150, + "AnimationActionFrame": 5, + "PreviewScenario": "DefenseLongRange3" + } + }, + "Pet House": { + "1": { + "BuildingLevel": 1, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl1", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 10000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 700, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl1_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl2", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 12, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 12000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 800, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl2_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl3", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 12, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 14000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 900, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl3_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl4", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 13, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 16000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 1000, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl4_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl5", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 13, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 19750000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 1050, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl5_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl6", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 20000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 1100, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl6_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl7", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 13, + "BuildTimeH": 18, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 20250000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 1150, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl7_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl8", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 20500000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 1200, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl8_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_PET_SHOP", + "InfoTID": "TID_PET_SHOP_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "pet_house_lvl9", + "ExportNameConstruction": "laboratory_const", + "BuildTimeD": 15, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir", + "BuildCost": 21000000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "UpgradesUnitType": "PET", + "Hitpoints": 1250, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "pet_house_lvl9_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Blacksmith": { + "1": { + "BuildingLevel": 1, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl1", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 750000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 10000, + "MaxStoredRareOre": 1000, + "MaxStoredEpicOre": 200, + "Blacksmith": true, + "Hitpoints": 700, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl1", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 1700000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 15000, + "MaxStoredRareOre": 1500, + "MaxStoredEpicOre": 300, + "Blacksmith": true, + "Hitpoints": 800, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl2", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 2300000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 20000, + "MaxStoredRareOre": 2000, + "MaxStoredEpicOre": 400, + "Blacksmith": true, + "Hitpoints": 900, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl2", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 3000000, + "TownHallLevel": 11, + "CapitalHallLevel": 11, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 25000, + "MaxStoredRareOre": 2500, + "MaxStoredEpicOre": 500, + "Blacksmith": true, + "Hitpoints": 1000, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl3", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 5500000, + "TownHallLevel": 12, + "CapitalHallLevel": 12, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 30000, + "MaxStoredRareOre": 3000, + "MaxStoredEpicOre": 600, + "Blacksmith": true, + "Hitpoints": 1100, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl3", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 8500000, + "TownHallLevel": 13, + "CapitalHallLevel": 13, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 35000, + "MaxStoredRareOre": 3500, + "MaxStoredEpicOre": 700, + "Blacksmith": true, + "Hitpoints": 1200, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl4", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 12000000, + "TownHallLevel": 14, + "CapitalHallLevel": 14, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 40000, + "MaxStoredRareOre": 4000, + "MaxStoredEpicOre": 800, + "Blacksmith": true, + "Hitpoints": 1300, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl4", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 8, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 14000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 45000, + "MaxStoredRareOre": 4500, + "MaxStoredEpicOre": 900, + "Blacksmith": true, + "Hitpoints": 1400, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_SMITHY", + "InfoTID": "TID_SMITHY_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings.sc", + "ExportName": "blacksmith_lvl5", + "ExportNameConstruction": "blacksmith_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 16000000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "laboratory_upg", + "MaxStoredCommonOre": 50000, + "MaxStoredRareOre": 5000, + "MaxStoredEpicOre": 1000, + "Blacksmith": true, + "Hitpoints": 1500, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_pit_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "barracks_base", + "PickUpEffect": "Blacksmith Pickup", + "PlacingEffect": "Blacksmith Placing", + "HintPriority": 1000, + "PreviewScenario": "NoCombatBuilding" + } + }, + "Spell Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_SPELL_TOWER", + "InfoTID": "TID_BUILDING_SPELL_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "spell_tower_lvl1", + "ExportNameConstruction": "generic_construction_state2", + "BuildTimeD": 12, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 14000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "Hitpoints": 2500, + "RegenTime": 20, + "AttackRange": 800, + "DestroyEffect": "Building Destroyed", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "PickUpEffect": "Spell Tower Pickup", + "PlacingEffect": "Spell Tower Placing", + "StrengthWeight": 1000, + "HintPriority": 150, + "PreviewScenario": "NoCombatBuilding", + "UnlockWeaponMode": "SpellTowerRage" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_SPELL_TOWER", + "InfoTID": "TID_BUILDING_SPELL_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "spell_tower_lvl2_rage", + "ExportNameConstruction": "generic_construction_state2", + "BuildTimeD": 12, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 16000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "Hitpoints": 2800, + "RegenTime": 20, + "AttackRange": 800, + "DestroyEffect": "Building Destroyed", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "PickUpEffect": "Spell Tower Pickup", + "PlacingEffect": "Spell Tower Placing", + "StrengthWeight": 1400, + "HintPriority": 150, + "PreviewScenario": "NoCombatBuilding", + "UnlockWeaponMode": "SpellTowerPoison" + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_SPELL_TOWER", + "InfoTID": "TID_BUILDING_SPELL_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "spell_tower_lvl3_rage", + "ExportNameConstruction": "generic_construction_state2", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 18000000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 2, + "Height": 2, + "ExportNameBuildAnim": "air_mortar_upg", + "Hitpoints": 3100, + "RegenTime": 20, + "AttackRange": 800, + "DestroyEffect": "Building Destroyed", + "HitEffect": "Generic Hit", + "ExportNameDamaged": "destroyedBuilding_2l_pit_rockwood", + "BuildingW": 1, + "BuildingH": 1, + "ExportNameBase": "dark_tower_base", + "PickUpEffect": "Spell Tower Pickup", + "PlacingEffect": "Spell Tower Placing", + "StrengthWeight": 1800, + "HintPriority": 150, + "PreviewScenario": "NoCombatBuilding", + "UnlockWeaponMode": "SpellTowerInvisibility" + } + }, + "Monolith": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_MONOLITH", + "InfoTID": "TID_BUILDING_MONOLITH_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "monolith_lvl_1", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 13, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "DarkElixir", + "BuildCost": 300000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "monolith_lvl_1_upgrade", + "Hitpoints": 4747, + "RegenTime": 25, + "AttackRange": 1100, + "AttackSpeed": 1500, + "CoolDownOverride": 750, + "DPS": 150, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Monolith Attack", + "HitEffect": "Explosive Arrow", + "Projectile": "MonolithProjectileMin;MonolithProjectileMed;MonolithProjectileMax", + "ExportNameDamaged": "destroyedBuilding_3l_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Monolith Pickup", + "PlacingEffect": "Monolith Placing", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 1400, + "HintPriority": 150, + "AnimationActionFrame": 5, + "DamagePermilHp": 110, + "ProjectileVariantByTargetMaxHP": "600;2500", + "DefaultProjectileVariant": 3, + "PreviewScenario": "Monolith" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_MONOLITH", + "InfoTID": "TID_BUILDING_MONOLITH_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "monolith_lvl_2", + "ExportNameConstruction": "tower_turret_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "DarkElixir", + "BuildCost": 360000, + "TownHallLevel": 15, + "CapitalHallLevel": 15, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "tower_turret_upg", + "ExportNameUpgradeAnim": "monolith_lvl_2_upgrade", + "Hitpoints": 5050, + "RegenTime": 26, + "AttackRange": 1100, + "AttackSpeed": 1500, + "CoolDownOverride": 750, + "DPS": 175, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Monolith Attack", + "HitEffect": "Explosive Arrow", + "Projectile": "MonolithProjectileMin;MonolithProjectileMed;MonolithProjectileMax", + "ExportNameDamaged": "destroyedBuilding_3l_base_rockwood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "dark_tower_base", + "AirTargets": true, + "GroundTargets": true, + "PickUpEffect": "Monolith Pickup", + "PlacingEffect": "Monolith Placing", + "DefenderCount": 1, + "DefenderZ": 155, + "StrengthWeight": 1300, + "HintPriority": 150, + "AnimationActionFrame": 5, + "DamagePermilHp": 120, + "ProjectileVariantByTargetMaxHP": "650;2750", + "DefaultProjectileVariant": 3, + "PreviewScenario": "Monolith" + } + }, + "O.T.T.O's Outpost": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_01", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 0, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 1, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 2, + "SecondaryTroopLvl": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_02", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 1, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 800, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 2, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 2, + "SecondaryTroopLvl": 2 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_03", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1250000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 975, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 3, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 2, + "SecondaryTroopLvl": 3 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_04", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 4, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 3, + "SecondaryTroopLvl": 4 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_05", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 1750000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 1350, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 5, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 3, + "SecondaryTroopLvl": 5 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_06", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 2000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 1600, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 6, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 3, + "SecondaryTroopLvl": 6 + }, + "7": { + "BuildingLevel": 7, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_07", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 7, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 3000000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 1850, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 7, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 4, + "SecondaryTroopLvl": 7 + }, + "8": { + "BuildingLevel": 8, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_08", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 9, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 4000000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 2150, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 8, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 4, + "SecondaryTroopLvl": 8 + }, + "9": { + "BuildingLevel": 9, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_09", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 10, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 5000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 2450, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 9, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 4, + "SecondaryTroopLvl": 9 + }, + "10": { + "BuildingLevel": 10, + "TID": "TID_BUILDING_OTTOS_OUTPOST", + "InfoTID": "TID_BUILDING_OTTOS_OUTPOST_INFO", + "BuildingClass": "Town Hall2", + "SWF": "sc/buildings2.sc", + "ExportName": "outpost_10", + "ExportNameNpc": "outpost_01", + "ExportNameConstruction": "town_hall_const", + "BuildTimeD": 11, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold2", + "BuildCost": 6000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 4, + "Height": 4, + "ExportNameBuildAnim": "town_hall_upg", + "Hitpoints": 2750, + "RegenTime": 1, + "DestroyEffect": "Town Hall Destroyed", + "ExportNameDamaged": "destroyedBuilding_4m_base_rockwoodpanel_yellow", + "BuildingW": 3, + "BuildingH": 3, + "ExportNameBase": "townhall_base", + "PickUpEffect": "Town Hall 2 Pickup", + "PlacingEffect": "Town Hall Placing", + "DestructionXP": 10, + "StartingHomeCount": 1, + "VillageType": 1, + "HintPriority": 100, + "Stage": 2, + "SecondaryTroop": "Zappies", + "SecondaryTroopCnt": 5, + "SecondaryTroopLvl": 10 + } + }, + "Battle Copter": { + "1": { + "BuildingLevel": 1, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "BB_hero_altar_flying", + "ExportNameConstruction": "air_mortar_const", + "ExportNameLocked": "BB_hero_altar_flying", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2500000, + "TownHallLevel": 5, + "CapitalHallLevel": 5, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "heroaltar_barbarian_king_upg", + "LevelRequirementTID": "TID_REQUIRED_BUILDERS_HALL_LEVEL", + "Hitpoints": 250, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "heroaltar_base", + "PickUpEffect": "Hero Altar Pickup", + "PlacingEffect": "Hero Altar Place", + "IsHeroBarrack": true, + "HeroType": "Battle Copter", + "VillageType": 1, + "HintPriority": 700, + "Stage": 2 + } + }, + "Healing Hut": { + "1": { + "BuildingLevel": 1, + "TID": "TID_RECOVERY_BUILDING", + "InfoTID": "TID_RECOVERY_BUILDING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "healing_hut_01", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 1, + "BuildTimeH": 6, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 1500000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "Hitpoints": 550, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_base_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 500, + "Stage": 2, + "HealthRecoveryPercent": 4 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_RECOVERY_BUILDING", + "InfoTID": "TID_RECOVERY_BUILDING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "healing_hut_02", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 2, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2000000, + "TownHallLevel": 6, + "CapitalHallLevel": 6, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "Hitpoints": 650, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_base_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 500, + "Stage": 2, + "HealthRecoveryPercent": 8 + }, + "3": { + "BuildingLevel": 3, + "TID": "TID_RECOVERY_BUILDING", + "InfoTID": "TID_RECOVERY_BUILDING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "healing_hut_03", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 3, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 2500000, + "TownHallLevel": 7, + "CapitalHallLevel": 7, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "Hitpoints": 750, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_base_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 500, + "Stage": 2, + "HealthRecoveryPercent": 12 + }, + "4": { + "BuildingLevel": 4, + "TID": "TID_RECOVERY_BUILDING", + "InfoTID": "TID_RECOVERY_BUILDING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "healing_hut_04", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 4, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 3250000, + "TownHallLevel": 8, + "CapitalHallLevel": 8, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "Hitpoints": 850, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_base_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 500, + "Stage": 2, + "HealthRecoveryPercent": 16 + }, + "5": { + "BuildingLevel": 5, + "TID": "TID_RECOVERY_BUILDING", + "InfoTID": "TID_RECOVERY_BUILDING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "healing_hut_05", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 5, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 4000000, + "TownHallLevel": 9, + "CapitalHallLevel": 9, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "Hitpoints": 1000, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_base_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 500, + "Stage": 2, + "HealthRecoveryPercent": 20 + }, + "6": { + "BuildingLevel": 6, + "TID": "TID_RECOVERY_BUILDING", + "InfoTID": "TID_RECOVERY_BUILDING_INFO", + "BuildingClass": "Army", + "SWF": "sc/buildings2.sc", + "ExportName": "healing_hut_06", + "ExportNameConstruction": "barracks_const", + "BuildTimeD": 6, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Elixir2", + "BuildCost": 5000000, + "TownHallLevel": 10, + "CapitalHallLevel": 10, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "barracks_upg", + "Hitpoints": 1150, + "RegenTime": 1, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3l_base_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "rapidfire_base", + "PickUpEffect": "Training Barrack Pickup", + "PlacingEffect": "Training Barrack Placing", + "VillageType": 1, + "HintPriority": 500, + "Stage": 2, + "HealthRecoveryPercent": 24 + } + }, + "Sour Elixir Cauldron": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_CLASHOWEEN_BUILDING", + "InfoTID": "TID_CLASHOWEEN_BUILDING_INFO", + "BuildingClass": "Resource", + "SWF": "sc/buildings.sc", + "ExportName": "sour_elixir_cauldron_01", + "ExportNameConstruction": "sour_elixir_cauldron_01", + "BuildTimeD": 0, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 0, + "TownHallLevel": 1, + "CapitalHallLevel": 1, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "sour_elixir_cauldron_01", + "MaxStoredSourElixir": 100000000, + "ProducesResource": "SourElixir", + "ResourcePer100Hours": 10000, + "ResourceMax": 2400, + "ResourceIconLimit": 6, + "Hitpoints": 1000, + "RegenTime": 15, + "DestroyEffect": "Building Destroyed", + "ExportNameDamaged": "destroyedBuilding_3m_round_pit_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "elixir_pump_base", + "PickUpEffect": "Elixir Pump Pickup", + "PlacingEffect": "Elixir Pump Placing", + "PreviewScenario": "NoCombatBuilding" + } + }, + "Multi-Archer Tower": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_MULTI_ARCHER_TOWER", + "InfoTID": "TID_MULTI_ARCHER_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "merged_archer_tower_lvl1", + "ExportNameConstruction": "merged_archer_tower_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20000000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "merged_archer_tower_upg", + "Hitpoints": 5000, + "RegenTime": 25, + "AttackRange": 1000, + "AttackSpeed": 500, + "DamageMulti": 55, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MergedArcherTower_attack", + "HitEffect": "Explosive Arrow", + "Projectile": "super_archer_tower_projectile", + "ExportNameDamaged": "destroyedBuilding_3m_grass_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "MultiTargets": true, + "NumMultiTargets": 3, + "MultiHitsTarget": true, + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer12", + "DefenderCount": 3, + "DefenderZ": 197, + "StrengthWeight": 400, + "HintPriority": 150, + "PreviewScenario": "MergedArcherTower", + "MergeRequirement": "Archer Tower:21;Archer Tower:21" + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_MULTI_ARCHER_TOWER", + "InfoTID": "TID_MULTI_ARCHER_TOWER_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "merged_archer_tower_lvl2", + "ExportNameConstruction": "merged_archer_tower_const", + "BuildTimeD": 15, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 22000000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "merged_archer_tower_upg", + "Hitpoints": 5200, + "RegenTime": 25, + "AttackRange": 1000, + "AttackSpeed": 500, + "DamageMulti": 60, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "MergedArcherTower_attack", + "HitEffect": "Explosive Arrow", + "Projectile": "super_archer_tower_projectile", + "ExportNameDamaged": "destroyedBuilding_3m_grass_wood", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "defense_tower_turret_base", + "AirTargets": true, + "GroundTargets": true, + "MultiTargets": true, + "NumMultiTargets": 3, + "MultiHitsTarget": true, + "PickUpEffect": "Tower Turret Pickup", + "PlacingEffect": "Tower Turret Placing", + "DefenderCharacter": "Archer12", + "DefenderCount": 3, + "DefenderZ": 197, + "StrengthWeight": 440, + "HintPriority": 150, + "PreviewScenario": "MergedArcherTower", + "MergeRequirement": "Archer Tower:21;Archer Tower:21" + } + }, + "Ricochet Cannon": { + "1": { + "BuildingLevel": 1, + "TID": "TID_BUILDING_RICOCHET_CANNON", + "InfoTID": "TID_RICOCHET_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "merged_cannon_lvl1", + "ExportNameConstruction": "merged_cannon_const", + "BuildTimeD": 14, + "BuildTimeH": 0, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 20000000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "merged_cannon_upg", + "Hitpoints": 5400, + "RegenTime": 25, + "AttackRange": 900, + "AttackSpeed": 800, + "DPS": 360, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Cannon Attack Larger", + "HitEffect": "Merged_Cannon_Ricochet_Hit", + "Projectile": "MergedCannonProjectile", + "ExportNameDamaged": "destroyedBuilding_3s_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 200, + "HintPriority": 150, + "PreviewScenario": "MergedCannon", + "MergeRequirement": "Cannon:21;Cannon:21", + "ProjectileBounces": 1 + }, + "2": { + "BuildingLevel": 2, + "TID": "TID_BUILDING_RICOCHET_CANNON", + "InfoTID": "TID_RICOCHET_CANNON_INFO", + "BuildingClass": "Defense", + "SWF": "sc/buildings.sc", + "ExportName": "merged_cannon_lvl2", + "ExportNameConstruction": "merged_cannon_const", + "BuildTimeD": 15, + "BuildTimeH": 12, + "BuildTimeM": 0, + "BuildTimeS": 0, + "BuildResource": "Gold", + "BuildCost": 22000000, + "TownHallLevel": 16, + "CapitalHallLevel": 16, + "Width": 3, + "Height": 3, + "ExportNameBuildAnim": "merged_cannon_upg", + "Hitpoints": 5700, + "RegenTime": 25, + "AttackRange": 900, + "AttackSpeed": 800, + "DPS": 390, + "DestroyEffect": "Building Destroyed", + "AttackEffect": "Cannon Attack Larger", + "HitEffect": "Merged_Cannon_Ricochet_Hit", + "Projectile": "MergedCannonProjectile", + "ExportNameDamaged": "destroyedBuilding_3s_base_rock", + "BuildingW": 2, + "BuildingH": 2, + "ExportNameBase": "basic_cannon_lvl11_base", + "AirTargets": false, + "GroundTargets": true, + "PickUpEffect": "Basic Turret Pickup", + "PlacingEffect": "Basic Turret Placing", + "AnimateTurret": true, + "StrengthWeight": 220, + "HintPriority": 150, + "PreviewScenario": "MergedCannon", + "MergeRequirement": "Cannon:21;Cannon:21", + "ProjectileBounces": 1 + } + } } \ No newline at end of file diff --git a/assets/json/hero_equipment.json b/assets/json/hero_equipment.json index 368a92e0..9bf8058c 100644 --- a/assets/json/hero_equipment.json +++ b/assets/json/hero_equipment.json @@ -1,5229 +1,5229 @@ -{ - "Barbarian Puppet": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_a", - "TID": "TID_GEAR_TITLE_BARBARIAN_CROWN", - "InfoTID": "TID_GEAR_INFO_BARBARIAN_CROWN", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 6, - "RequiredCharacterLevel": 1, - "MainAbilities": "RoyalChampionElectrifiedShield", - "MainAbilityLevels": 1 - } - }, - "Rage Vial": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 1, - "DPS": 17, - "PreviewScenario": "GearFist", - "HealOnActivation": 150 - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 1, - "DPS": 22, - "PreviewScenario": "GearFist", - "HealOnActivation": 225 - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 2, - "DPS": 27, - "PreviewScenario": "GearFist", - "HealOnActivation": 300 - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 2, - "DPS": 32, - "PreviewScenario": "GearFist", - "HealOnActivation": 375 - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 2, - "DPS": 37, - "PreviewScenario": "GearFist", - "HealOnActivation": 450 - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 3, - "DPS": 42, - "PreviewScenario": "GearFist", - "HealOnActivation": 525 - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 3, - "DPS": 48, - "PreviewScenario": "GearFist", - "HealOnActivation": 600 - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 3, - "DPS": 54, - "PreviewScenario": "GearFist", - "HealOnActivation": 675 - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 4, - "DPS": 60, - "PreviewScenario": "GearFist", - "HealOnActivation": 780 - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 4, - "DPS": 66, - "PreviewScenario": "GearFist", - "HealOnActivation": 900 - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 4, - "DPS": 72, - "PreviewScenario": "GearFist", - "HealOnActivation": 1020 - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 5, - "DPS": 79, - "PreviewScenario": "GearFist", - "HealOnActivation": 1155 - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 5, - "DPS": 86, - "PreviewScenario": "GearFist", - "HealOnActivation": 1290 - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 5, - "DPS": 94, - "PreviewScenario": "GearFist", - "HealOnActivation": 1410 - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 6, - "DPS": 104, - "PreviewScenario": "GearFist", - "HealOnActivation": 1590 - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 6, - "DPS": 112, - "PreviewScenario": "GearFist", - "HealOnActivation": 1695 - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 6, - "DPS": 120, - "PreviewScenario": "GearFist", - "HealOnActivation": 1800 - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_RageVial", - "TID": "TID_GEAR_TITLE_IRON_FIST", - "InfoTID": "TID_GEAR_INFO_IRON_FIST", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "BarbarianKingRage", - "MainAbilityLevels": 7, - "DPS": 128, - "PreviewScenario": "GearFist", - "HealOnActivation": 1890 - } - }, - "Archer Puppet": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 1, - "DPS": 26, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 160 - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 1, - "DPS": 34, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 175 - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 2, - "DPS": 42, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 190 - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 2, - "DPS": 49, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 205 - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 2, - "DPS": 55, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 220 - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 3, - "DPS": 62, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 235 - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 3, - "DPS": 71, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 250 - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 3, - "DPS": 80, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 265 - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 4, - "DPS": 90, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 280 - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 4, - "DPS": 100, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 295 - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 4, - "DPS": 109, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 310 - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 5, - "DPS": 115, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 325 - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 5, - "DPS": 122, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 340 - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 5, - "DPS": 127, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 360 - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 6, - "DPS": 132, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 380 - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 6, - "DPS": 136, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 400 - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 6, - "DPS": 140, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 420 - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_ArcherDoll", - "TID": "TID_GEAR_TITLE_ARCHER_CROWN", - "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenSpawnArchers", - "MainAbilityLevels": 7, - "DPS": 144, - "PreviewScenario": "GearArcherCrown", - "HealOnActivation": 440 - } - }, - "Invisibility Vial": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 1, - "HitPoints": 80, - "PreviewScenario": "GearRoyalCloak" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 2, - "HitPoints": 100, - "PreviewScenario": "GearRoyalCloak" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 3, - "HitPoints": 120, - "PreviewScenario": "GearRoyalCloak" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 4, - "HitPoints": 140, - "PreviewScenario": "GearRoyalCloak" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 5, - "HitPoints": 170, - "PreviewScenario": "GearRoyalCloak" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 6, - "HitPoints": 200, - "PreviewScenario": "GearRoyalCloak" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 7, - "HitPoints": 250, - "PreviewScenario": "GearRoyalCloak" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 8, - "HitPoints": 300, - "PreviewScenario": "GearRoyalCloak" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 9, - "HitPoints": 340, - "PreviewScenario": "GearRoyalCloak" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 10, - "HitPoints": 380, - "PreviewScenario": "GearRoyalCloak" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 11, - "HitPoints": 420, - "PreviewScenario": "GearRoyalCloak" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 12, - "HitPoints": 460, - "PreviewScenario": "GearRoyalCloak" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 13, - "HitPoints": 500, - "PreviewScenario": "GearRoyalCloak" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 14, - "HitPoints": 540, - "PreviewScenario": "GearRoyalCloak" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 15, - "HitPoints": 580, - "PreviewScenario": "GearRoyalCloak" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 16, - "HitPoints": 620, - "PreviewScenario": "GearRoyalCloak" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 17, - "HitPoints": 660, - "PreviewScenario": "GearRoyalCloak" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_InvisVial", - "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", - "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenInvisibility", - "MainAbilityLevels": 18, - "HitPoints": 700, - "PreviewScenario": "GearRoyalCloak" - } - }, - "Eternal Tome": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 1, - "PreviewScenario": "GearEternalTome" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 2, - "PreviewScenario": "GearEternalTome" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 3, - "PreviewScenario": "GearEternalTome" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 4, - "PreviewScenario": "GearEternalTome" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 5, - "PreviewScenario": "GearEternalTome" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 6, - "PreviewScenario": "GearEternalTome" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 7, - "PreviewScenario": "GearEternalTome" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 8, - "PreviewScenario": "GearEternalTome" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 9, - "PreviewScenario": "GearEternalTome" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 10, - "PreviewScenario": "GearEternalTome" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 11, - "PreviewScenario": "GearEternalTome" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 12, - "PreviewScenario": "GearEternalTome" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 13, - "PreviewScenario": "GearEternalTome" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 14, - "PreviewScenario": "GearEternalTome" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 15, - "PreviewScenario": "GearEternalTome" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 16, - "PreviewScenario": "GearEternalTome" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 17, - "PreviewScenario": "GearEternalTome" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_EternalTome", - "TID": "TID_GEAR_TITLE_ETERNAL_TOME", - "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenInvulnerability", - "MainAbilityLevels": 18, - "PreviewScenario": "GearEternalTome" - } - }, - "Life Gem": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 1, - "HitPoints": 150, - "DPS": 10, - "PreviewScenario": "GearLifeGem" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 1, - "HitPoints": 163, - "DPS": 12, - "PreviewScenario": "GearLifeGem" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 2, - "HitPoints": 172, - "DPS": 14, - "PreviewScenario": "GearLifeGem" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 2, - "HitPoints": 181, - "DPS": 16, - "PreviewScenario": "GearLifeGem" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 2, - "HitPoints": 192, - "DPS": 18, - "PreviewScenario": "GearLifeGem" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 3, - "HitPoints": 203, - "DPS": 20, - "PreviewScenario": "GearLifeGem" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 3, - "HitPoints": 225, - "DPS": 22, - "PreviewScenario": "GearLifeGem" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 3, - "HitPoints": 249, - "DPS": 24, - "PreviewScenario": "GearLifeGem" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 4, - "HitPoints": 275, - "DPS": 28, - "PreviewScenario": "GearLifeGem" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 4, - "HitPoints": 304, - "DPS": 32, - "PreviewScenario": "GearLifeGem" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 4, - "HitPoints": 336, - "DPS": 38, - "PreviewScenario": "GearLifeGem" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 5, - "HitPoints": 351, - "DPS": 42, - "PreviewScenario": "GearLifeGem" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 5, - "HitPoints": 366, - "DPS": 46, - "PreviewScenario": "GearLifeGem" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 5, - "HitPoints": 381, - "DPS": 50, - "PreviewScenario": "GearLifeGem" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 6, - "HitPoints": 396, - "DPS": 54, - "PreviewScenario": "GearLifeGem" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 6, - "HitPoints": 411, - "DPS": 58, - "PreviewScenario": "GearLifeGem" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 6, - "HitPoints": 426, - "DPS": 62, - "PreviewScenario": "GearLifeGem" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HealGem", - "TID": "TID_GEAR_TITLE_LIFE_GEM", - "InfoTID": "TID_GEAR_INFO_LIFE_GEM", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenLifeAura", - "MainAbilityLevels": 7, - "HitPoints": 441, - "DPS": 66, - "PreviewScenario": "GearLifeGem" - } - }, - "Seeking Shield": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 1, - "HitPoints": 40, - "PreviewScenario": "GearSeekingShield" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 1, - "HitPoints": 60, - "PreviewScenario": "GearSeekingShield" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 2, - "HitPoints": 80, - "PreviewScenario": "GearSeekingShield" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 2, - "HitPoints": 100, - "PreviewScenario": "GearSeekingShield" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 2, - "HitPoints": 120, - "PreviewScenario": "GearSeekingShield" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 3, - "HitPoints": 140, - "PreviewScenario": "GearSeekingShield" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 3, - "HitPoints": 160, - "PreviewScenario": "GearSeekingShield" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 3, - "HitPoints": 180, - "PreviewScenario": "GearSeekingShield" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 4, - "HitPoints": 200, - "PreviewScenario": "GearSeekingShield" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 4, - "HitPoints": 220, - "PreviewScenario": "GearSeekingShield" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 4, - "HitPoints": 240, - "PreviewScenario": "GearSeekingShield" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 5, - "HitPoints": 260, - "PreviewScenario": "GearSeekingShield" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 5, - "HitPoints": 280, - "PreviewScenario": "GearSeekingShield" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 5, - "HitPoints": 300, - "PreviewScenario": "GearSeekingShield" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 6, - "HitPoints": 320, - "PreviewScenario": "GearSeekingShield" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 6, - "HitPoints": 340, - "PreviewScenario": "GearSeekingShield" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 6, - "HitPoints": 360, - "PreviewScenario": "GearSeekingShield" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_RC_SeekingShield", - "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", - "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "RoyalChampionShieldBounce", - "MainAbilityLevels": 7, - "HitPoints": 380, - "PreviewScenario": "GearSeekingShield" - } - }, - "Royal Gem": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 6, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 1, - "HitPoints": 123, - "HealOnActivation": 363 - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 1, - "HitPoints": 143, - "HealOnActivation": 423 - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 2, - "HitPoints": 164, - "HealOnActivation": 484 - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 2, - "HitPoints": 184, - "HealOnActivation": 544 - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 2, - "HitPoints": 205, - "HealOnActivation": 605 - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 3, - "HitPoints": 225, - "HealOnActivation": 665 - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 3, - "HitPoints": 246, - "HealOnActivation": 726 - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 3, - "HitPoints": 266, - "HealOnActivation": 786 - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 4, - "HitPoints": 307, - "HealOnActivation": 907 - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 4, - "HitPoints": 375, - "HealOnActivation": 1108 - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 4, - "HitPoints": 443, - "HealOnActivation": 1310 - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 5, - "HitPoints": 511, - "HealOnActivation": 1511 - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 5, - "HitPoints": 579, - "HealOnActivation": 1713 - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 5, - "HitPoints": 648, - "HealOnActivation": 1914 - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 6, - "HitPoints": 716, - "HealOnActivation": 2116 - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 6, - "HitPoints": 784, - "HealOnActivation": 2317 - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 6, - "HitPoints": 852, - "HealOnActivation": 2519 - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_PROTECTIVE_CLOAK", - "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "MainAbilities": "RCProtectiveCloak", - "MainAbilityLevels": 7, - "HitPoints": 920, - "HealOnActivation": 2720 - } - }, - "Earthquake Boots": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 1, - "HitPoints": 209, - "DPS": 13, - "PreviewScenario": "GearEQboots" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 1, - "HitPoints": 244, - "DPS": 15, - "PreviewScenario": "GearEQboots" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 2, - "HitPoints": 278, - "DPS": 17, - "PreviewScenario": "GearEQboots" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 2, - "HitPoints": 313, - "DPS": 19, - "PreviewScenario": "GearEQboots" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 2, - "HitPoints": 348, - "DPS": 21, - "PreviewScenario": "GearEQboots" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 3, - "HitPoints": 383, - "DPS": 23, - "PreviewScenario": "GearEQboots" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 3, - "HitPoints": 418, - "DPS": 26, - "PreviewScenario": "GearEQboots" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 3, - "HitPoints": 452, - "DPS": 28, - "PreviewScenario": "GearEQboots" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 4, - "HitPoints": 522, - "DPS": 32, - "PreviewScenario": "GearEQboots" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 4, - "HitPoints": 677, - "DPS": 40, - "PreviewScenario": "GearEQboots" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 4, - "HitPoints": 831, - "DPS": 48, - "PreviewScenario": "GearEQboots" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 5, - "HitPoints": 986, - "DPS": 55, - "PreviewScenario": "GearEQboots" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 5, - "HitPoints": 1140, - "DPS": 63, - "PreviewScenario": "GearEQboots" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 5, - "HitPoints": 1295, - "DPS": 71, - "PreviewScenario": "GearEQboots" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 6, - "HitPoints": 1449, - "DPS": 79, - "PreviewScenario": "GearEQboots" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 6, - "HitPoints": 1604, - "DPS": 86, - "PreviewScenario": "GearEQboots" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 6, - "HitPoints": 1758, - "DPS": 94, - "PreviewScenario": "GearEQboots" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_StompBoots", - "TID": "TID_GEAR_EARTHQUAKE_BOOTS", - "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "BarbarianKingEarthquakeBoots", - "MainAbilityLevels": 7, - "HitPoints": 1913, - "DPS": 102, - "PreviewScenario": "GearEQboots" - } - }, - "Giant Gauntlet": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 1, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 1, - "DPS": 17, - "PreviewScenario": "GearGauntlet" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 1, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 2, - "DPS": 20, - "PreviewScenario": "GearGauntlet" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 2, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 3, - "DPS": 23, - "PreviewScenario": "GearGauntlet" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 2, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 4, - "DPS": 26, - "PreviewScenario": "GearGauntlet" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 2, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 5, - "DPS": 29, - "PreviewScenario": "GearGauntlet" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 3, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 6, - "DPS": 32, - "PreviewScenario": "GearGauntlet" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 3, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 7, - "DPS": 34, - "PreviewScenario": "GearGauntlet" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "1800;200;10", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 3, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 8, - "DPS": 37, - "PreviewScenario": "GearGauntlet" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 4, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 9, - "DPS": 43, - "PreviewScenario": "GearGauntlet" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 4, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 10, - "DPS": 53, - "PreviewScenario": "GearGauntlet" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "2100;400;20", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 4, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 11, - "DPS": 63, - "PreviewScenario": "GearGauntlet" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 5, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 12, - "DPS": 74, - "PreviewScenario": "GearGauntlet" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 5, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 13, - "DPS": 84, - "PreviewScenario": "GearGauntlet" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "2400;600;30", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 5, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 14, - "DPS": 94, - "PreviewScenario": "GearGauntlet" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 6, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 15, - "DPS": 104, - "PreviewScenario": "GearGauntlet" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 6, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 16, - "DPS": 115, - "PreviewScenario": "GearGauntlet" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "2700;600;50", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 6, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 17, - "DPS": 125, - "PreviewScenario": "GearGauntlet" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2800, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 7, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 18, - "DPS": 135, - "PreviewScenario": "GearGauntlet" - }, - "19": { - "Level": 19, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2900, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 7, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 19, - "DPS": 140, - "PreviewScenario": "GearGauntlet" - }, - "20": { - "Level": 20, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3000;600;100", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 7, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 20, - "DPS": 145, - "PreviewScenario": "GearGauntlet" - }, - "21": { - "Level": 21, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3100, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 8, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 21, - "DPS": 150, - "PreviewScenario": "GearGauntlet" - }, - "22": { - "Level": 22, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 8, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3200, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 8, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 22, - "DPS": 155, - "PreviewScenario": "GearGauntlet" - }, - "23": { - "Level": 23, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 8, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3300;600;120", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 8, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 23, - "DPS": 160, - "PreviewScenario": "GearGauntlet" - }, - "24": { - "Level": 24, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 8, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3400, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 9, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 24, - "DPS": 165, - "PreviewScenario": "GearGauntlet" - }, - "25": { - "Level": 25, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 9, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3500, - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 9, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 25, - "DPS": 170, - "PreviewScenario": "GearGauntlet" - }, - "26": { - "Level": 26, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 9, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3600;600;150", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 9, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 26, - "DPS": 175, - "PreviewScenario": "GearGauntlet" - }, - "27": { - "Level": 27, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_GiantGauntlet", - "TID": "TID_GEAR_GIANT_GAUNTLET", - "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 9, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3600;600;150", - "MainAbilities": "BarbarianKingGetsBig", - "MainAbilityLevels": 10, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 27, - "DPS": 180, - "PreviewScenario": "GearGauntlet" - } - }, - "Vampstache": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 1, - "AttackSpeedPercentage": 5, - "DPS": 9, - "PreviewScenario": "GearVampstache" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 1, - "AttackSpeedPercentage": 6, - "DPS": 10, - "PreviewScenario": "GearVampstache" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 2, - "AttackSpeedPercentage": 7, - "DPS": 12, - "PreviewScenario": "GearVampstache" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 2, - "AttackSpeedPercentage": 8, - "DPS": 13, - "PreviewScenario": "GearVampstache" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 2, - "AttackSpeedPercentage": 9, - "DPS": 15, - "PreviewScenario": "GearVampstache" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 3, - "AttackSpeedPercentage": 10, - "DPS": 16, - "PreviewScenario": "GearVampstache" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 3, - "AttackSpeedPercentage": 11, - "DPS": 18, - "PreviewScenario": "GearVampstache" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 3, - "AttackSpeedPercentage": 12, - "DPS": 19, - "PreviewScenario": "GearVampstache" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 4, - "AttackSpeedPercentage": 13, - "DPS": 22, - "PreviewScenario": "GearVampstache" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 4, - "AttackSpeedPercentage": 14, - "DPS": 27, - "PreviewScenario": "GearVampstache" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 4, - "AttackSpeedPercentage": 15, - "DPS": 32, - "PreviewScenario": "GearVampstache" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 5, - "AttackSpeedPercentage": 16, - "DPS": 37, - "PreviewScenario": "GearVampstache" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 5, - "AttackSpeedPercentage": 17, - "DPS": 42, - "PreviewScenario": "GearVampstache" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 5, - "AttackSpeedPercentage": 18, - "DPS": 48, - "PreviewScenario": "GearVampstache" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 6, - "AttackSpeedPercentage": 19, - "DPS": 53, - "PreviewScenario": "GearVampstache" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 6, - "AttackSpeedPercentage": 20, - "DPS": 58, - "PreviewScenario": "GearVampstache" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 6, - "AttackSpeedPercentage": 21, - "DPS": 63, - "PreviewScenario": "GearVampstache" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_BK_VampStache", - "TID": "TID_GEAR_VAMPSTACHE", - "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", - "AllowedCharacters": "Barbarian King;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "BarbarianKingVampstache", - "MainAbilityLevels": 7, - "AttackSpeedPercentage": 22, - "DPS": 68, - "PreviewScenario": "GearVampstache" - } - }, - "Frozen Arrow": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 1, - "DPS": 35, - "PreviewScenario": "GearFrozenArrow" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 2, - "DPS": 40, - "PreviewScenario": "GearFrozenArrow" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 3, - "DPS": 45, - "PreviewScenario": "GearFrozenArrow" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 4, - "DPS": 50, - "PreviewScenario": "GearFrozenArrow" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 5, - "DPS": 55, - "PreviewScenario": "GearFrozenArrow" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 6, - "DPS": 60, - "PreviewScenario": "GearFrozenArrow" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 7, - "DPS": 66, - "PreviewScenario": "GearFrozenArrow" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "1800;200;10", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 8, - "DPS": 72, - "PreviewScenario": "GearFrozenArrow" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 9, - "DPS": 78, - "PreviewScenario": "GearFrozenArrow" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 10, - "DPS": 85, - "PreviewScenario": "GearFrozenArrow" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "2100;400;20", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 11, - "DPS": 92, - "PreviewScenario": "GearFrozenArrow" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 12, - "DPS": 99, - "PreviewScenario": "GearFrozenArrow" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 13, - "DPS": 105, - "PreviewScenario": "GearFrozenArrow" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "2400;600;30", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 14, - "DPS": 111, - "PreviewScenario": "GearFrozenArrow" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 15, - "DPS": 117, - "PreviewScenario": "GearFrozenArrow" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 16, - "DPS": 122, - "PreviewScenario": "GearFrozenArrow" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "2700;600;50", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 17, - "DPS": 127, - "PreviewScenario": "GearFrozenArrow" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2800, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 18, - "DPS": 132, - "PreviewScenario": "GearFrozenArrow" - }, - "19": { - "Level": 19, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2900, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 19, - "DPS": 136, - "PreviewScenario": "GearFrozenArrow" - }, - "20": { - "Level": 20, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3000;600;100", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 20, - "DPS": 140, - "PreviewScenario": "GearFrozenArrow" - }, - "21": { - "Level": 21, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3100, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 21, - "DPS": 144, - "PreviewScenario": "GearFrozenArrow" - }, - "22": { - "Level": 22, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 8, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3200, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 22, - "DPS": 148, - "PreviewScenario": "GearFrozenArrow" - }, - "23": { - "Level": 23, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 8, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3300;600;120", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 23, - "DPS": 152, - "PreviewScenario": "GearFrozenArrow" - }, - "24": { - "Level": 24, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 8, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3400, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 24, - "DPS": 156, - "PreviewScenario": "GearFrozenArrow" - }, - "25": { - "Level": 25, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 9, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 3500, - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 25, - "DPS": 160, - "PreviewScenario": "GearFrozenArrow" - }, - "26": { - "Level": 26, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 9, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3600;600;150", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 26, - "DPS": 164, - "PreviewScenario": "GearFrozenArrow" - }, - "27": { - "Level": 27, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_FreezeArrow", - "TID": "TID_GEAR_FROZEN_ARROW", - "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Epic", - "Claimable": true, - "RequiredBlacksmithLevel": 9, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre; EpicOre", - "UpgradeCosts": "3600;600;150", - "MainAbilities": "ArcherQueenAttackFreeze", - "MainAbilityLevels": 27, - "DPS": 168, - "PreviewScenario": "GearFrozenArrow" - } - }, - "Giant Arrow": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 2, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 1, - "HitPoints": 80, - "DPS": 20, - "PreviewScenario": "GearPiercingArrow" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 1, - "HitPoints": 93, - "DPS": 23, - "PreviewScenario": "GearPiercingArrow" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 2, - "HitPoints": 106, - "DPS": 27, - "PreviewScenario": "GearPiercingArrow" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 2, - "HitPoints": 119, - "DPS": 30, - "PreviewScenario": "GearPiercingArrow" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 2, - "HitPoints": 133, - "DPS": 33, - "PreviewScenario": "GearPiercingArrow" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 3, - "HitPoints": 146, - "DPS": 37, - "PreviewScenario": "GearPiercingArrow" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 3, - "HitPoints": 159, - "DPS": 40, - "PreviewScenario": "GearPiercingArrow" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 3, - "HitPoints": 172, - "DPS": 43, - "PreviewScenario": "GearPiercingArrow" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 4, - "HitPoints": 199, - "DPS": 50, - "PreviewScenario": "GearPiercingArrow" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 4, - "HitPoints": 241, - "DPS": 59, - "PreviewScenario": "GearPiercingArrow" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 4, - "HitPoints": 284, - "DPS": 68, - "PreviewScenario": "GearPiercingArrow" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 5, - "HitPoints": 326, - "DPS": 77, - "PreviewScenario": "GearPiercingArrow" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 5, - "HitPoints": 369, - "DPS": 86, - "PreviewScenario": "GearPiercingArrow" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 5, - "HitPoints": 411, - "DPS": 96, - "PreviewScenario": "GearPiercingArrow" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 6, - "HitPoints": 454, - "DPS": 105, - "PreviewScenario": "GearPiercingArrow" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 6, - "HitPoints": 496, - "DPS": 114, - "PreviewScenario": "GearPiercingArrow" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 6, - "HitPoints": 539, - "DPS": 123, - "PreviewScenario": "GearPiercingArrow" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_MagicArrow", - "TID": "TID_GEAR_PIERCING_ARROW", - "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenPierceProjectile", - "MainAbilityLevels": 7, - "HitPoints": 581, - "DPS": 132, - "PreviewScenario": "GearPiercingArrow" - } - }, - "Healer Puppet": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 1, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 1, - "HitPoints": 132, - "PreviewScenario": "GearHealerJar" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 1, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 2, - "HitPoints": 154, - "PreviewScenario": "GearHealerJar" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 2, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 3, - "HitPoints": 177, - "PreviewScenario": "GearHealerJar" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 2, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 4, - "HitPoints": 199, - "PreviewScenario": "GearHealerJar" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 2, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 5, - "HitPoints": 221, - "PreviewScenario": "GearHealerJar" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 3, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 6, - "HitPoints": 243, - "PreviewScenario": "GearHealerJar" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 3, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 7, - "HitPoints": 265, - "PreviewScenario": "GearHealerJar" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 3, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 8, - "HitPoints": 287, - "PreviewScenario": "GearHealerJar" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 4, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 9, - "HitPoints": 331, - "PreviewScenario": "GearHealerJar" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 4, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 10, - "HitPoints": 402, - "PreviewScenario": "GearHealerJar" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 4, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 11, - "HitPoints": 473, - "PreviewScenario": "GearHealerJar" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 5, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 12, - "HitPoints": 543, - "PreviewScenario": "GearHealerJar" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 5, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 13, - "HitPoints": 614, - "PreviewScenario": "GearHealerJar" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 5, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 14, - "HitPoints": 685, - "PreviewScenario": "GearHealerJar" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 6, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 15, - "HitPoints": 756, - "PreviewScenario": "GearHealerJar" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 6, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 16, - "HitPoints": 826, - "PreviewScenario": "GearHealerJar" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 6, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 17, - "HitPoints": 897, - "PreviewScenario": "GearHealerJar" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_AQ_HealerDoll", - "TID": "TID_GEAR_HEALER_JAR", - "InfoTID": "TID_GEAR_INFO_HEALER_JAR", - "AllowedCharacters": "Archer Queen;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "ArcherQueenSpawnHealers", - "MainAbilityLevels": 7, - "ExtraAbilities": "Regeneration", - "ExtraAbilityLevels": 18, - "HitPoints": 968, - "PreviewScenario": "GearHealerJar" - } - }, - "Magic Tinderbox": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_FireSack", - "TID": "TID_GEAR_FIRE_IN_A_CAN", - "InfoTID": "TID_GEAR_INFO_FIRE_IN_A_CAN", - "Deprecated": true, - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 2, - "RequiredCharacterLevel": 1, - "MainAbilities": "GrandWardenFireball", - "MainAbilityLevels": 1, - "PreviewScenario": "GearFireInCan" - } - }, - "Rage Gem": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 4, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 1, - "AttackSpeedPercentage": 5, - "DPS": 12, - "PreviewScenario": "GearAngryTome" - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 1, - "AttackSpeedPercentage": 6, - "DPS": 14, - "PreviewScenario": "GearAngryTome" - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 2, - "AttackSpeedPercentage": 7, - "DPS": 16, - "PreviewScenario": "GearAngryTome" - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 2, - "AttackSpeedPercentage": 8, - "DPS": 18, - "PreviewScenario": "GearAngryTome" - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 2, - "AttackSpeedPercentage": 9, - "DPS": 20, - "PreviewScenario": "GearAngryTome" - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 3, - "AttackSpeedPercentage": 10, - "DPS": 22, - "PreviewScenario": "GearAngryTome" - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 3, - "AttackSpeedPercentage": 11, - "DPS": 24, - "PreviewScenario": "GearAngryTome" - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 3, - "AttackSpeedPercentage": 12, - "DPS": 26, - "PreviewScenario": "GearAngryTome" - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 4, - "AttackSpeedPercentage": 13, - "DPS": 30, - "PreviewScenario": "GearAngryTome" - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 4, - "AttackSpeedPercentage": 14, - "DPS": 36, - "PreviewScenario": "GearAngryTome" - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 4, - "AttackSpeedPercentage": 15, - "DPS": 43, - "PreviewScenario": "GearAngryTome" - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 5, - "AttackSpeedPercentage": 16, - "DPS": 49, - "PreviewScenario": "GearAngryTome" - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 5, - "AttackSpeedPercentage": 17, - "DPS": 56, - "PreviewScenario": "GearAngryTome" - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 5, - "AttackSpeedPercentage": 18, - "DPS": 62, - "PreviewScenario": "GearAngryTome" - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 6, - "AttackSpeedPercentage": 19, - "DPS": 69, - "PreviewScenario": "GearAngryTome" - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 6, - "AttackSpeedPercentage": 20, - "DPS": 75, - "PreviewScenario": "GearAngryTome" - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 6, - "AttackSpeedPercentage": 21, - "DPS": 82, - "PreviewScenario": "GearAngryTome" - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_RageGem", - "TID": "TID_GEAR_ANGRY_TOME", - "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenRageAura", - "MainAbilityLevels": 7, - "AttackSpeedPercentage": 22, - "DPS": 88, - "PreviewScenario": "GearAngryTome" - } - }, - "Hog Rider Puppet": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_a", - "TID": "TID_GEAR_HOG_TOTEM", - "InfoTID": "TID_GEAR_INFO_HOG_TOTEM", - "Deprecated": true, - "AllowedCharacters": "Warrior Princess;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 4, - "RequiredCharacterLevel": 1, - "MainAbilities": "RoyalChampionSpawnHeadhunter", - "MainAbilityLevels": 1 - } - }, - "Healing Tome": { - "1": { - "Level": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 6, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 120, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 1, - "HitPoints": 92, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 165 - }, - "2": { - "Level": 2, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "240;20", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 1, - "HitPoints": 107, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 193 - }, - "3": { - "Level": 3, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 400, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 2, - "HitPoints": 122, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 220 - }, - "4": { - "Level": 4, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 600, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 2, - "HitPoints": 137, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 248 - }, - "5": { - "Level": 5, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "840;100", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 2, - "HitPoints": 153, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 275 - }, - "6": { - "Level": 6, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1120, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 3, - "HitPoints": 168, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 303 - }, - "7": { - "Level": 7, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1440, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 3, - "HitPoints": 183, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 330 - }, - "8": { - "Level": 8, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "1800;200", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 3, - "HitPoints": 198, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 358 - }, - "9": { - "Level": 9, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 1, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 1900, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 4, - "HitPoints": 229, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 413 - }, - "10": { - "Level": 10, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2000, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 4, - "HitPoints": 280, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 463 - }, - "11": { - "Level": 11, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2100;400", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 4, - "HitPoints": 330, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 513 - }, - "12": { - "Level": 12, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 3, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2200, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 5, - "HitPoints": 381, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 563 - }, - "13": { - "Level": 13, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2300, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 5, - "HitPoints": 432, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 613 - }, - "14": { - "Level": 14, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2400;600", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 5, - "HitPoints": 482, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 663 - }, - "15": { - "Level": 15, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 5, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2500, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 6, - "HitPoints": 533, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 713 - }, - "16": { - "Level": 16, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre", - "UpgradeCosts": 2600, - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 6, - "HitPoints": 584, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 763 - }, - "17": { - "Level": 17, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 6, - "HitPoints": 634, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 813 - }, - "18": { - "Level": 18, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_gear_GW_HeartTome", - "TID": "TID_GEAR_HEALING_TOME", - "InfoTID": "TID_GEAR_INFO_HEALING_TOME", - "AllowedCharacters": "Grand Warden;", - "Rarity": "Common", - "RequiredBlacksmithLevel": 7, - "RequiredCharacterLevel": 1, - "UpgradeResources": "CommonOre; RareOre", - "UpgradeCosts": "2700;600", - "MainAbilities": "GrandWardenHealAura", - "MainAbilityLevels": 7, - "HitPoints": 685, - "PreviewScenario": "GearHealingTome", - "HealOnActivation": 863 - } - } +{ + "Barbarian Puppet": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_a", + "TID": "TID_GEAR_TITLE_BARBARIAN_CROWN", + "InfoTID": "TID_GEAR_INFO_BARBARIAN_CROWN", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 6, + "RequiredCharacterLevel": 1, + "MainAbilities": "RoyalChampionElectrifiedShield", + "MainAbilityLevels": 1 + } + }, + "Rage Vial": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 1, + "DPS": 17, + "PreviewScenario": "GearFist", + "HealOnActivation": 150 + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 1, + "DPS": 22, + "PreviewScenario": "GearFist", + "HealOnActivation": 225 + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 2, + "DPS": 27, + "PreviewScenario": "GearFist", + "HealOnActivation": 300 + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 2, + "DPS": 32, + "PreviewScenario": "GearFist", + "HealOnActivation": 375 + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 2, + "DPS": 37, + "PreviewScenario": "GearFist", + "HealOnActivation": 450 + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 3, + "DPS": 42, + "PreviewScenario": "GearFist", + "HealOnActivation": 525 + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 3, + "DPS": 48, + "PreviewScenario": "GearFist", + "HealOnActivation": 600 + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 3, + "DPS": 54, + "PreviewScenario": "GearFist", + "HealOnActivation": 675 + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 4, + "DPS": 60, + "PreviewScenario": "GearFist", + "HealOnActivation": 780 + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 4, + "DPS": 66, + "PreviewScenario": "GearFist", + "HealOnActivation": 900 + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 4, + "DPS": 72, + "PreviewScenario": "GearFist", + "HealOnActivation": 1020 + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 5, + "DPS": 79, + "PreviewScenario": "GearFist", + "HealOnActivation": 1155 + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 5, + "DPS": 86, + "PreviewScenario": "GearFist", + "HealOnActivation": 1290 + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 5, + "DPS": 94, + "PreviewScenario": "GearFist", + "HealOnActivation": 1410 + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 6, + "DPS": 104, + "PreviewScenario": "GearFist", + "HealOnActivation": 1590 + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 6, + "DPS": 112, + "PreviewScenario": "GearFist", + "HealOnActivation": 1695 + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 6, + "DPS": 120, + "PreviewScenario": "GearFist", + "HealOnActivation": 1800 + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_RageVial", + "TID": "TID_GEAR_TITLE_IRON_FIST", + "InfoTID": "TID_GEAR_INFO_IRON_FIST", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "BarbarianKingRage", + "MainAbilityLevels": 7, + "DPS": 128, + "PreviewScenario": "GearFist", + "HealOnActivation": 1890 + } + }, + "Archer Puppet": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 1, + "DPS": 26, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 160 + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 1, + "DPS": 34, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 175 + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 2, + "DPS": 42, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 190 + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 2, + "DPS": 49, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 205 + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 2, + "DPS": 55, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 220 + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 3, + "DPS": 62, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 235 + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 3, + "DPS": 71, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 250 + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 3, + "DPS": 80, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 265 + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 4, + "DPS": 90, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 280 + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 4, + "DPS": 100, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 295 + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 4, + "DPS": 109, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 310 + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 5, + "DPS": 115, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 325 + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 5, + "DPS": 122, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 340 + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 5, + "DPS": 127, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 360 + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 6, + "DPS": 132, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 380 + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 6, + "DPS": 136, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 400 + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 6, + "DPS": 140, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 420 + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_ArcherDoll", + "TID": "TID_GEAR_TITLE_ARCHER_CROWN", + "InfoTID": "TID_GEAR_INFO_ARCHER_CROWN", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenSpawnArchers", + "MainAbilityLevels": 7, + "DPS": 144, + "PreviewScenario": "GearArcherCrown", + "HealOnActivation": 440 + } + }, + "Invisibility Vial": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 1, + "HitPoints": 80, + "PreviewScenario": "GearRoyalCloak" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 2, + "HitPoints": 100, + "PreviewScenario": "GearRoyalCloak" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 3, + "HitPoints": 120, + "PreviewScenario": "GearRoyalCloak" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 4, + "HitPoints": 140, + "PreviewScenario": "GearRoyalCloak" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 5, + "HitPoints": 170, + "PreviewScenario": "GearRoyalCloak" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 6, + "HitPoints": 200, + "PreviewScenario": "GearRoyalCloak" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 7, + "HitPoints": 250, + "PreviewScenario": "GearRoyalCloak" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 8, + "HitPoints": 300, + "PreviewScenario": "GearRoyalCloak" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 9, + "HitPoints": 340, + "PreviewScenario": "GearRoyalCloak" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 10, + "HitPoints": 380, + "PreviewScenario": "GearRoyalCloak" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 11, + "HitPoints": 420, + "PreviewScenario": "GearRoyalCloak" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 12, + "HitPoints": 460, + "PreviewScenario": "GearRoyalCloak" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 13, + "HitPoints": 500, + "PreviewScenario": "GearRoyalCloak" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 14, + "HitPoints": 540, + "PreviewScenario": "GearRoyalCloak" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 15, + "HitPoints": 580, + "PreviewScenario": "GearRoyalCloak" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 16, + "HitPoints": 620, + "PreviewScenario": "GearRoyalCloak" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 17, + "HitPoints": 660, + "PreviewScenario": "GearRoyalCloak" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_InvisVial", + "TID": "TID_GEAR_TITLE_ROYAL_CLOAK", + "InfoTID": "TID_GEAR_INFO_ROYAL_CLOAK", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenInvisibility", + "MainAbilityLevels": 18, + "HitPoints": 700, + "PreviewScenario": "GearRoyalCloak" + } + }, + "Eternal Tome": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 1, + "PreviewScenario": "GearEternalTome" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 2, + "PreviewScenario": "GearEternalTome" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 3, + "PreviewScenario": "GearEternalTome" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 4, + "PreviewScenario": "GearEternalTome" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 5, + "PreviewScenario": "GearEternalTome" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 6, + "PreviewScenario": "GearEternalTome" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 7, + "PreviewScenario": "GearEternalTome" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 8, + "PreviewScenario": "GearEternalTome" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 9, + "PreviewScenario": "GearEternalTome" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 10, + "PreviewScenario": "GearEternalTome" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 11, + "PreviewScenario": "GearEternalTome" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 12, + "PreviewScenario": "GearEternalTome" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 13, + "PreviewScenario": "GearEternalTome" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 14, + "PreviewScenario": "GearEternalTome" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 15, + "PreviewScenario": "GearEternalTome" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 16, + "PreviewScenario": "GearEternalTome" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 17, + "PreviewScenario": "GearEternalTome" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_EternalTome", + "TID": "TID_GEAR_TITLE_ETERNAL_TOME", + "InfoTID": "TID_GEAR_INFO_ETERNAL_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenInvulnerability", + "MainAbilityLevels": 18, + "PreviewScenario": "GearEternalTome" + } + }, + "Life Gem": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 1, + "HitPoints": 150, + "DPS": 10, + "PreviewScenario": "GearLifeGem" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 1, + "HitPoints": 163, + "DPS": 12, + "PreviewScenario": "GearLifeGem" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 2, + "HitPoints": 172, + "DPS": 14, + "PreviewScenario": "GearLifeGem" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 2, + "HitPoints": 181, + "DPS": 16, + "PreviewScenario": "GearLifeGem" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 2, + "HitPoints": 192, + "DPS": 18, + "PreviewScenario": "GearLifeGem" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 3, + "HitPoints": 203, + "DPS": 20, + "PreviewScenario": "GearLifeGem" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 3, + "HitPoints": 225, + "DPS": 22, + "PreviewScenario": "GearLifeGem" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 3, + "HitPoints": 249, + "DPS": 24, + "PreviewScenario": "GearLifeGem" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 4, + "HitPoints": 275, + "DPS": 28, + "PreviewScenario": "GearLifeGem" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 4, + "HitPoints": 304, + "DPS": 32, + "PreviewScenario": "GearLifeGem" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 4, + "HitPoints": 336, + "DPS": 38, + "PreviewScenario": "GearLifeGem" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 5, + "HitPoints": 351, + "DPS": 42, + "PreviewScenario": "GearLifeGem" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 5, + "HitPoints": 366, + "DPS": 46, + "PreviewScenario": "GearLifeGem" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 5, + "HitPoints": 381, + "DPS": 50, + "PreviewScenario": "GearLifeGem" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 6, + "HitPoints": 396, + "DPS": 54, + "PreviewScenario": "GearLifeGem" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 6, + "HitPoints": 411, + "DPS": 58, + "PreviewScenario": "GearLifeGem" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 6, + "HitPoints": 426, + "DPS": 62, + "PreviewScenario": "GearLifeGem" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HealGem", + "TID": "TID_GEAR_TITLE_LIFE_GEM", + "InfoTID": "TID_GEAR_INFO_LIFE_GEM", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenLifeAura", + "MainAbilityLevels": 7, + "HitPoints": 441, + "DPS": 66, + "PreviewScenario": "GearLifeGem" + } + }, + "Seeking Shield": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 1, + "HitPoints": 40, + "PreviewScenario": "GearSeekingShield" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 1, + "HitPoints": 60, + "PreviewScenario": "GearSeekingShield" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 2, + "HitPoints": 80, + "PreviewScenario": "GearSeekingShield" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 2, + "HitPoints": 100, + "PreviewScenario": "GearSeekingShield" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 2, + "HitPoints": 120, + "PreviewScenario": "GearSeekingShield" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 3, + "HitPoints": 140, + "PreviewScenario": "GearSeekingShield" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 3, + "HitPoints": 160, + "PreviewScenario": "GearSeekingShield" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 3, + "HitPoints": 180, + "PreviewScenario": "GearSeekingShield" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 4, + "HitPoints": 200, + "PreviewScenario": "GearSeekingShield" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 4, + "HitPoints": 220, + "PreviewScenario": "GearSeekingShield" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 4, + "HitPoints": 240, + "PreviewScenario": "GearSeekingShield" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 5, + "HitPoints": 260, + "PreviewScenario": "GearSeekingShield" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 5, + "HitPoints": 280, + "PreviewScenario": "GearSeekingShield" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 5, + "HitPoints": 300, + "PreviewScenario": "GearSeekingShield" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 6, + "HitPoints": 320, + "PreviewScenario": "GearSeekingShield" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 6, + "HitPoints": 340, + "PreviewScenario": "GearSeekingShield" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 6, + "HitPoints": 360, + "PreviewScenario": "GearSeekingShield" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_RC_SeekingShield", + "TID": "TID_GEAR_TITLE_SEEKING_SHIELD", + "InfoTID": "TID_GEAR_INFO_SEEKING_SHIELD", + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "RoyalChampionShieldBounce", + "MainAbilityLevels": 7, + "HitPoints": 380, + "PreviewScenario": "GearSeekingShield" + } + }, + "Royal Gem": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 6, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 1, + "HitPoints": 123, + "HealOnActivation": 363 + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 1, + "HitPoints": 143, + "HealOnActivation": 423 + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 2, + "HitPoints": 164, + "HealOnActivation": 484 + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 2, + "HitPoints": 184, + "HealOnActivation": 544 + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 2, + "HitPoints": 205, + "HealOnActivation": 605 + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 3, + "HitPoints": 225, + "HealOnActivation": 665 + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 3, + "HitPoints": 246, + "HealOnActivation": 726 + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 3, + "HitPoints": 266, + "HealOnActivation": 786 + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 4, + "HitPoints": 307, + "HealOnActivation": 907 + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 4, + "HitPoints": 375, + "HealOnActivation": 1108 + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 4, + "HitPoints": 443, + "HealOnActivation": 1310 + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 5, + "HitPoints": 511, + "HealOnActivation": 1511 + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 5, + "HitPoints": 579, + "HealOnActivation": 1713 + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 5, + "HitPoints": 648, + "HealOnActivation": 1914 + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 6, + "HitPoints": 716, + "HealOnActivation": 2116 + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 6, + "HitPoints": 784, + "HealOnActivation": 2317 + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 6, + "HitPoints": 852, + "HealOnActivation": 2519 + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_PROTECTIVE_CLOAK", + "InfoTID": "TID_GEAR_INFO_PROTECTIVE_CLOAK", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "MainAbilities": "RCProtectiveCloak", + "MainAbilityLevels": 7, + "HitPoints": 920, + "HealOnActivation": 2720 + } + }, + "Earthquake Boots": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 1, + "HitPoints": 209, + "DPS": 13, + "PreviewScenario": "GearEQboots" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 1, + "HitPoints": 244, + "DPS": 15, + "PreviewScenario": "GearEQboots" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 2, + "HitPoints": 278, + "DPS": 17, + "PreviewScenario": "GearEQboots" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 2, + "HitPoints": 313, + "DPS": 19, + "PreviewScenario": "GearEQboots" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 2, + "HitPoints": 348, + "DPS": 21, + "PreviewScenario": "GearEQboots" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 3, + "HitPoints": 383, + "DPS": 23, + "PreviewScenario": "GearEQboots" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 3, + "HitPoints": 418, + "DPS": 26, + "PreviewScenario": "GearEQboots" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 3, + "HitPoints": 452, + "DPS": 28, + "PreviewScenario": "GearEQboots" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 4, + "HitPoints": 522, + "DPS": 32, + "PreviewScenario": "GearEQboots" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 4, + "HitPoints": 677, + "DPS": 40, + "PreviewScenario": "GearEQboots" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 4, + "HitPoints": 831, + "DPS": 48, + "PreviewScenario": "GearEQboots" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 5, + "HitPoints": 986, + "DPS": 55, + "PreviewScenario": "GearEQboots" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 5, + "HitPoints": 1140, + "DPS": 63, + "PreviewScenario": "GearEQboots" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 5, + "HitPoints": 1295, + "DPS": 71, + "PreviewScenario": "GearEQboots" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 6, + "HitPoints": 1449, + "DPS": 79, + "PreviewScenario": "GearEQboots" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 6, + "HitPoints": 1604, + "DPS": 86, + "PreviewScenario": "GearEQboots" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 6, + "HitPoints": 1758, + "DPS": 94, + "PreviewScenario": "GearEQboots" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_StompBoots", + "TID": "TID_GEAR_EARTHQUAKE_BOOTS", + "InfoTID": "TID_GEAR_INFO_EARTHQUAKE_BOOTS", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "BarbarianKingEarthquakeBoots", + "MainAbilityLevels": 7, + "HitPoints": 1913, + "DPS": 102, + "PreviewScenario": "GearEQboots" + } + }, + "Giant Gauntlet": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 1, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 1, + "DPS": 17, + "PreviewScenario": "GearGauntlet" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 1, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 2, + "DPS": 20, + "PreviewScenario": "GearGauntlet" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 2, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 3, + "DPS": 23, + "PreviewScenario": "GearGauntlet" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 2, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 4, + "DPS": 26, + "PreviewScenario": "GearGauntlet" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 2, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 5, + "DPS": 29, + "PreviewScenario": "GearGauntlet" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 3, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 6, + "DPS": 32, + "PreviewScenario": "GearGauntlet" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 3, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 7, + "DPS": 34, + "PreviewScenario": "GearGauntlet" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "1800;200;10", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 3, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 8, + "DPS": 37, + "PreviewScenario": "GearGauntlet" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 4, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 9, + "DPS": 43, + "PreviewScenario": "GearGauntlet" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 4, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 10, + "DPS": 53, + "PreviewScenario": "GearGauntlet" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "2100;400;20", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 4, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 11, + "DPS": 63, + "PreviewScenario": "GearGauntlet" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 5, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 12, + "DPS": 74, + "PreviewScenario": "GearGauntlet" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 5, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 13, + "DPS": 84, + "PreviewScenario": "GearGauntlet" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "2400;600;30", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 5, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 14, + "DPS": 94, + "PreviewScenario": "GearGauntlet" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 6, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 15, + "DPS": 104, + "PreviewScenario": "GearGauntlet" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 6, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 16, + "DPS": 115, + "PreviewScenario": "GearGauntlet" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "2700;600;50", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 6, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 17, + "DPS": 125, + "PreviewScenario": "GearGauntlet" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2800, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 7, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 18, + "DPS": 135, + "PreviewScenario": "GearGauntlet" + }, + "19": { + "Level": 19, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2900, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 7, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 19, + "DPS": 140, + "PreviewScenario": "GearGauntlet" + }, + "20": { + "Level": 20, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3000;600;100", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 7, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 20, + "DPS": 145, + "PreviewScenario": "GearGauntlet" + }, + "21": { + "Level": 21, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3100, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 8, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 21, + "DPS": 150, + "PreviewScenario": "GearGauntlet" + }, + "22": { + "Level": 22, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 8, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3200, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 8, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 22, + "DPS": 155, + "PreviewScenario": "GearGauntlet" + }, + "23": { + "Level": 23, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 8, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3300;600;120", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 8, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 23, + "DPS": 160, + "PreviewScenario": "GearGauntlet" + }, + "24": { + "Level": 24, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 8, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3400, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 9, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 24, + "DPS": 165, + "PreviewScenario": "GearGauntlet" + }, + "25": { + "Level": 25, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 9, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3500, + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 9, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 25, + "DPS": 170, + "PreviewScenario": "GearGauntlet" + }, + "26": { + "Level": 26, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 9, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3600;600;150", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 9, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 26, + "DPS": 175, + "PreviewScenario": "GearGauntlet" + }, + "27": { + "Level": 27, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_GiantGauntlet", + "TID": "TID_GEAR_GIANT_GAUNTLET", + "InfoTID": "TID_GEAR_INFO_GIANT_GAUNTLET", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 9, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3600;600;150", + "MainAbilities": "BarbarianKingGetsBig", + "MainAbilityLevels": 10, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 27, + "DPS": 180, + "PreviewScenario": "GearGauntlet" + } + }, + "Vampstache": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 1, + "AttackSpeedPercentage": 5, + "DPS": 9, + "PreviewScenario": "GearVampstache" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 1, + "AttackSpeedPercentage": 6, + "DPS": 10, + "PreviewScenario": "GearVampstache" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 2, + "AttackSpeedPercentage": 7, + "DPS": 12, + "PreviewScenario": "GearVampstache" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 2, + "AttackSpeedPercentage": 8, + "DPS": 13, + "PreviewScenario": "GearVampstache" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 2, + "AttackSpeedPercentage": 9, + "DPS": 15, + "PreviewScenario": "GearVampstache" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 3, + "AttackSpeedPercentage": 10, + "DPS": 16, + "PreviewScenario": "GearVampstache" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 3, + "AttackSpeedPercentage": 11, + "DPS": 18, + "PreviewScenario": "GearVampstache" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 3, + "AttackSpeedPercentage": 12, + "DPS": 19, + "PreviewScenario": "GearVampstache" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 4, + "AttackSpeedPercentage": 13, + "DPS": 22, + "PreviewScenario": "GearVampstache" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 4, + "AttackSpeedPercentage": 14, + "DPS": 27, + "PreviewScenario": "GearVampstache" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 4, + "AttackSpeedPercentage": 15, + "DPS": 32, + "PreviewScenario": "GearVampstache" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 5, + "AttackSpeedPercentage": 16, + "DPS": 37, + "PreviewScenario": "GearVampstache" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 5, + "AttackSpeedPercentage": 17, + "DPS": 42, + "PreviewScenario": "GearVampstache" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 5, + "AttackSpeedPercentage": 18, + "DPS": 48, + "PreviewScenario": "GearVampstache" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 6, + "AttackSpeedPercentage": 19, + "DPS": 53, + "PreviewScenario": "GearVampstache" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 6, + "AttackSpeedPercentage": 20, + "DPS": 58, + "PreviewScenario": "GearVampstache" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 6, + "AttackSpeedPercentage": 21, + "DPS": 63, + "PreviewScenario": "GearVampstache" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_BK_VampStache", + "TID": "TID_GEAR_VAMPSTACHE", + "InfoTID": "TID_GEAR_INFO_VAMPSTACHE", + "AllowedCharacters": "Barbarian King;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "BarbarianKingVampstache", + "MainAbilityLevels": 7, + "AttackSpeedPercentage": 22, + "DPS": 68, + "PreviewScenario": "GearVampstache" + } + }, + "Frozen Arrow": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 1, + "DPS": 35, + "PreviewScenario": "GearFrozenArrow" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 2, + "DPS": 40, + "PreviewScenario": "GearFrozenArrow" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 3, + "DPS": 45, + "PreviewScenario": "GearFrozenArrow" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 4, + "DPS": 50, + "PreviewScenario": "GearFrozenArrow" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 5, + "DPS": 55, + "PreviewScenario": "GearFrozenArrow" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 6, + "DPS": 60, + "PreviewScenario": "GearFrozenArrow" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 7, + "DPS": 66, + "PreviewScenario": "GearFrozenArrow" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "1800;200;10", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 8, + "DPS": 72, + "PreviewScenario": "GearFrozenArrow" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 9, + "DPS": 78, + "PreviewScenario": "GearFrozenArrow" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 10, + "DPS": 85, + "PreviewScenario": "GearFrozenArrow" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "2100;400;20", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 11, + "DPS": 92, + "PreviewScenario": "GearFrozenArrow" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 12, + "DPS": 99, + "PreviewScenario": "GearFrozenArrow" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 13, + "DPS": 105, + "PreviewScenario": "GearFrozenArrow" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "2400;600;30", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 14, + "DPS": 111, + "PreviewScenario": "GearFrozenArrow" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 15, + "DPS": 117, + "PreviewScenario": "GearFrozenArrow" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 16, + "DPS": 122, + "PreviewScenario": "GearFrozenArrow" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "2700;600;50", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 17, + "DPS": 127, + "PreviewScenario": "GearFrozenArrow" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2800, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 18, + "DPS": 132, + "PreviewScenario": "GearFrozenArrow" + }, + "19": { + "Level": 19, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2900, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 19, + "DPS": 136, + "PreviewScenario": "GearFrozenArrow" + }, + "20": { + "Level": 20, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3000;600;100", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 20, + "DPS": 140, + "PreviewScenario": "GearFrozenArrow" + }, + "21": { + "Level": 21, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3100, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 21, + "DPS": 144, + "PreviewScenario": "GearFrozenArrow" + }, + "22": { + "Level": 22, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 8, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3200, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 22, + "DPS": 148, + "PreviewScenario": "GearFrozenArrow" + }, + "23": { + "Level": 23, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 8, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3300;600;120", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 23, + "DPS": 152, + "PreviewScenario": "GearFrozenArrow" + }, + "24": { + "Level": 24, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 8, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3400, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 24, + "DPS": 156, + "PreviewScenario": "GearFrozenArrow" + }, + "25": { + "Level": 25, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 9, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 3500, + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 25, + "DPS": 160, + "PreviewScenario": "GearFrozenArrow" + }, + "26": { + "Level": 26, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 9, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3600;600;150", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 26, + "DPS": 164, + "PreviewScenario": "GearFrozenArrow" + }, + "27": { + "Level": 27, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_FreezeArrow", + "TID": "TID_GEAR_FROZEN_ARROW", + "InfoTID": "TID_GEAR_INFO_FROZEN_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Epic", + "Claimable": true, + "RequiredBlacksmithLevel": 9, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre; EpicOre", + "UpgradeCosts": "3600;600;150", + "MainAbilities": "ArcherQueenAttackFreeze", + "MainAbilityLevels": 27, + "DPS": 168, + "PreviewScenario": "GearFrozenArrow" + } + }, + "Giant Arrow": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 2, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 1, + "HitPoints": 80, + "DPS": 20, + "PreviewScenario": "GearPiercingArrow" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 1, + "HitPoints": 93, + "DPS": 23, + "PreviewScenario": "GearPiercingArrow" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 2, + "HitPoints": 106, + "DPS": 27, + "PreviewScenario": "GearPiercingArrow" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 2, + "HitPoints": 119, + "DPS": 30, + "PreviewScenario": "GearPiercingArrow" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 2, + "HitPoints": 133, + "DPS": 33, + "PreviewScenario": "GearPiercingArrow" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 3, + "HitPoints": 146, + "DPS": 37, + "PreviewScenario": "GearPiercingArrow" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 3, + "HitPoints": 159, + "DPS": 40, + "PreviewScenario": "GearPiercingArrow" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 3, + "HitPoints": 172, + "DPS": 43, + "PreviewScenario": "GearPiercingArrow" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 4, + "HitPoints": 199, + "DPS": 50, + "PreviewScenario": "GearPiercingArrow" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 4, + "HitPoints": 241, + "DPS": 59, + "PreviewScenario": "GearPiercingArrow" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 4, + "HitPoints": 284, + "DPS": 68, + "PreviewScenario": "GearPiercingArrow" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 5, + "HitPoints": 326, + "DPS": 77, + "PreviewScenario": "GearPiercingArrow" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 5, + "HitPoints": 369, + "DPS": 86, + "PreviewScenario": "GearPiercingArrow" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 5, + "HitPoints": 411, + "DPS": 96, + "PreviewScenario": "GearPiercingArrow" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 6, + "HitPoints": 454, + "DPS": 105, + "PreviewScenario": "GearPiercingArrow" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 6, + "HitPoints": 496, + "DPS": 114, + "PreviewScenario": "GearPiercingArrow" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 6, + "HitPoints": 539, + "DPS": 123, + "PreviewScenario": "GearPiercingArrow" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_MagicArrow", + "TID": "TID_GEAR_PIERCING_ARROW", + "InfoTID": "TID_GEAR_INFO_PIERCING_ARROW", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenPierceProjectile", + "MainAbilityLevels": 7, + "HitPoints": 581, + "DPS": 132, + "PreviewScenario": "GearPiercingArrow" + } + }, + "Healer Puppet": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 1, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 1, + "HitPoints": 132, + "PreviewScenario": "GearHealerJar" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 1, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 2, + "HitPoints": 154, + "PreviewScenario": "GearHealerJar" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 2, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 3, + "HitPoints": 177, + "PreviewScenario": "GearHealerJar" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 2, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 4, + "HitPoints": 199, + "PreviewScenario": "GearHealerJar" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 2, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 5, + "HitPoints": 221, + "PreviewScenario": "GearHealerJar" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 3, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 6, + "HitPoints": 243, + "PreviewScenario": "GearHealerJar" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 3, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 7, + "HitPoints": 265, + "PreviewScenario": "GearHealerJar" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 3, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 8, + "HitPoints": 287, + "PreviewScenario": "GearHealerJar" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 4, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 9, + "HitPoints": 331, + "PreviewScenario": "GearHealerJar" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 4, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 10, + "HitPoints": 402, + "PreviewScenario": "GearHealerJar" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 4, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 11, + "HitPoints": 473, + "PreviewScenario": "GearHealerJar" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 5, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 12, + "HitPoints": 543, + "PreviewScenario": "GearHealerJar" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 5, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 13, + "HitPoints": 614, + "PreviewScenario": "GearHealerJar" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 5, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 14, + "HitPoints": 685, + "PreviewScenario": "GearHealerJar" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 6, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 15, + "HitPoints": 756, + "PreviewScenario": "GearHealerJar" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 6, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 16, + "HitPoints": 826, + "PreviewScenario": "GearHealerJar" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 6, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 17, + "HitPoints": 897, + "PreviewScenario": "GearHealerJar" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_AQ_HealerDoll", + "TID": "TID_GEAR_HEALER_JAR", + "InfoTID": "TID_GEAR_INFO_HEALER_JAR", + "AllowedCharacters": "Archer Queen;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "ArcherQueenSpawnHealers", + "MainAbilityLevels": 7, + "ExtraAbilities": "Regeneration", + "ExtraAbilityLevels": 18, + "HitPoints": 968, + "PreviewScenario": "GearHealerJar" + } + }, + "Magic Tinderbox": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_FireSack", + "TID": "TID_GEAR_FIRE_IN_A_CAN", + "InfoTID": "TID_GEAR_INFO_FIRE_IN_A_CAN", + "Deprecated": true, + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 2, + "RequiredCharacterLevel": 1, + "MainAbilities": "GrandWardenFireball", + "MainAbilityLevels": 1, + "PreviewScenario": "GearFireInCan" + } + }, + "Rage Gem": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 4, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 1, + "AttackSpeedPercentage": 5, + "DPS": 12, + "PreviewScenario": "GearAngryTome" + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 1, + "AttackSpeedPercentage": 6, + "DPS": 14, + "PreviewScenario": "GearAngryTome" + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 2, + "AttackSpeedPercentage": 7, + "DPS": 16, + "PreviewScenario": "GearAngryTome" + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 2, + "AttackSpeedPercentage": 8, + "DPS": 18, + "PreviewScenario": "GearAngryTome" + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 2, + "AttackSpeedPercentage": 9, + "DPS": 20, + "PreviewScenario": "GearAngryTome" + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 3, + "AttackSpeedPercentage": 10, + "DPS": 22, + "PreviewScenario": "GearAngryTome" + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 3, + "AttackSpeedPercentage": 11, + "DPS": 24, + "PreviewScenario": "GearAngryTome" + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 3, + "AttackSpeedPercentage": 12, + "DPS": 26, + "PreviewScenario": "GearAngryTome" + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 4, + "AttackSpeedPercentage": 13, + "DPS": 30, + "PreviewScenario": "GearAngryTome" + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 4, + "AttackSpeedPercentage": 14, + "DPS": 36, + "PreviewScenario": "GearAngryTome" + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 4, + "AttackSpeedPercentage": 15, + "DPS": 43, + "PreviewScenario": "GearAngryTome" + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 5, + "AttackSpeedPercentage": 16, + "DPS": 49, + "PreviewScenario": "GearAngryTome" + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 5, + "AttackSpeedPercentage": 17, + "DPS": 56, + "PreviewScenario": "GearAngryTome" + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 5, + "AttackSpeedPercentage": 18, + "DPS": 62, + "PreviewScenario": "GearAngryTome" + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 6, + "AttackSpeedPercentage": 19, + "DPS": 69, + "PreviewScenario": "GearAngryTome" + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 6, + "AttackSpeedPercentage": 20, + "DPS": 75, + "PreviewScenario": "GearAngryTome" + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 6, + "AttackSpeedPercentage": 21, + "DPS": 82, + "PreviewScenario": "GearAngryTome" + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_RageGem", + "TID": "TID_GEAR_ANGRY_TOME", + "InfoTID": "TID_GEAR_INFO_ANGRY_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenRageAura", + "MainAbilityLevels": 7, + "AttackSpeedPercentage": 22, + "DPS": 88, + "PreviewScenario": "GearAngryTome" + } + }, + "Hog Rider Puppet": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_a", + "TID": "TID_GEAR_HOG_TOTEM", + "InfoTID": "TID_GEAR_INFO_HOG_TOTEM", + "Deprecated": true, + "AllowedCharacters": "Warrior Princess;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 4, + "RequiredCharacterLevel": 1, + "MainAbilities": "RoyalChampionSpawnHeadhunter", + "MainAbilityLevels": 1 + } + }, + "Healing Tome": { + "1": { + "Level": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 6, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 120, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 1, + "HitPoints": 92, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 165 + }, + "2": { + "Level": 2, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "240;20", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 1, + "HitPoints": 107, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 193 + }, + "3": { + "Level": 3, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 400, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 2, + "HitPoints": 122, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 220 + }, + "4": { + "Level": 4, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 600, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 2, + "HitPoints": 137, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 248 + }, + "5": { + "Level": 5, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "840;100", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 2, + "HitPoints": 153, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 275 + }, + "6": { + "Level": 6, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1120, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 3, + "HitPoints": 168, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 303 + }, + "7": { + "Level": 7, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1440, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 3, + "HitPoints": 183, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 330 + }, + "8": { + "Level": 8, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "1800;200", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 3, + "HitPoints": 198, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 358 + }, + "9": { + "Level": 9, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 1, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 1900, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 4, + "HitPoints": 229, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 413 + }, + "10": { + "Level": 10, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2000, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 4, + "HitPoints": 280, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 463 + }, + "11": { + "Level": 11, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2100;400", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 4, + "HitPoints": 330, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 513 + }, + "12": { + "Level": 12, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 3, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2200, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 5, + "HitPoints": 381, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 563 + }, + "13": { + "Level": 13, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2300, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 5, + "HitPoints": 432, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 613 + }, + "14": { + "Level": 14, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2400;600", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 5, + "HitPoints": 482, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 663 + }, + "15": { + "Level": 15, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 5, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2500, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 6, + "HitPoints": 533, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 713 + }, + "16": { + "Level": 16, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre", + "UpgradeCosts": 2600, + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 6, + "HitPoints": 584, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 763 + }, + "17": { + "Level": 17, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 6, + "HitPoints": 634, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 813 + }, + "18": { + "Level": 18, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_gear_GW_HeartTome", + "TID": "TID_GEAR_HEALING_TOME", + "InfoTID": "TID_GEAR_INFO_HEALING_TOME", + "AllowedCharacters": "Grand Warden;", + "Rarity": "Common", + "RequiredBlacksmithLevel": 7, + "RequiredCharacterLevel": 1, + "UpgradeResources": "CommonOre; RareOre", + "UpgradeCosts": "2700;600", + "MainAbilities": "GrandWardenHealAura", + "MainAbilityLevels": 7, + "HitPoints": 685, + "PreviewScenario": "GearHealingTome", + "HealOnActivation": 863 + } + } } \ No newline at end of file diff --git a/assets/json/heroes.json b/assets/json/heroes.json index c7ed446d..77748163 100644 --- a/assets/json/heroes.json +++ b/assets/json/heroes.json @@ -1,25972 +1,25972 @@ -{ - "Barbarian King": { - "1": { - "VisualLevel": 1, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1445, - "UpgradeTimeH": 4, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 5000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 102, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 0, - "AbilitySpeedBoost2": 0, - "AbilityDamageBoostPercent": 0, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 0, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 20, - "StrengthWeight2": 10, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKing", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "2": { - "VisualLevel": 2, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1481, - "UpgradeTimeH": 6, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 6000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 104, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 0, - "AbilitySpeedBoost2": 0, - "AbilityDamageBoostPercent": 0, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 0, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 20, - "StrengthWeight2": 10, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKing", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "3": { - "VisualLevel": 3, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1518, - "UpgradeTimeH": 8, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 7000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 105, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 0, - "AbilitySpeedBoost2": 0, - "AbilityDamageBoostPercent": 0, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 0, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 20, - "StrengthWeight2": 10, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKing", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "4": { - "VisualLevel": 4, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1556, - "UpgradeTimeH": 10, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 8000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 108, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 0, - "AbilitySpeedBoost2": 0, - "AbilityDamageBoostPercent": 0, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 0, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 20, - "StrengthWeight2": 10, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKing", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "5": { - "VisualLevel": 5, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1595, - "UpgradeTimeH": 12, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 9000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 110, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 18, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 120, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 6, - "AbilityDamageBoostOffset": 56, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 21, - "StrengthWeight2": 11, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "6": { - "VisualLevel": 6, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1635, - "UpgradeTimeH": 14, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 10000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 18, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 120, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 6, - "AbilityDamageBoostOffset": 56, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 21, - "StrengthWeight2": 11, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "7": { - "VisualLevel": 7, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1675, - "UpgradeTimeH": 16, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 11000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 115, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 18, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 120, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 6, - "AbilityDamageBoostOffset": 56, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 21, - "StrengthWeight2": 11, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "8": { - "VisualLevel": 8, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1717, - "UpgradeTimeH": 18, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 12000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 116, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 18, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 120, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 6, - "AbilityDamageBoostOffset": 56, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 21, - "StrengthWeight2": 11, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "9": { - "VisualLevel": 9, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1760, - "UpgradeTimeH": 20, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 13000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 119, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 18, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 120, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 6, - "AbilityDamageBoostOffset": 56, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 21, - "StrengthWeight2": 11, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "10": { - "VisualLevel": 10, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1805, - "UpgradeTimeH": 22, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 14000, - "RequiredTownHallLevel": 7, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 122, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 19, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 124, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 8, - "AbilityDamageBoostOffset": 101, - "AbilityHealthIncrease": 620, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 22, - "StrengthWeight2": 12, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 1 - }, - "11": { - "VisualLevel": 11, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1850, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 15000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 124, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 19, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 124, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 8, - "AbilityDamageBoostOffset": 101, - "AbilityHealthIncrease": 620, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 22, - "StrengthWeight2": 12, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "12": { - "VisualLevel": 12, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1896, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 16000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 127, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 19, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 124, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 8, - "AbilityDamageBoostOffset": 101, - "AbilityHealthIncrease": 620, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 22, - "StrengthWeight2": 12, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "13": { - "VisualLevel": 13, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1943, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 17000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 129, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 19, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 124, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 8, - "AbilityDamageBoostOffset": 101, - "AbilityHealthIncrease": 620, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 22, - "StrengthWeight2": 12, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "14": { - "VisualLevel": 14, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 1992, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 18500, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 132, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 19, - "AbilitySpeedBoost2": 9, - "AbilityDamageBoostPercent": 124, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 8, - "AbilityDamageBoostOffset": 101, - "AbilityHealthIncrease": 620, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 22, - "StrengthWeight2": 12, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "15": { - "VisualLevel": 15, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2042, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 20000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 134, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 20, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 128, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 10, - "AbilityDamageBoostOffset": 147, - "AbilityHealthIncrease": 752, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 23, - "StrengthWeight2": 13, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "16": { - "VisualLevel": 16, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2093, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 21500, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 137, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 20, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 128, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 10, - "AbilityDamageBoostOffset": 147, - "AbilityHealthIncrease": 752, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 23, - "StrengthWeight2": 13, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "17": { - "VisualLevel": 17, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2145, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 23000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 139, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 20, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 128, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 10, - "AbilityDamageBoostOffset": 147, - "AbilityHealthIncrease": 752, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 23, - "StrengthWeight2": 13, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "18": { - "VisualLevel": 18, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2198, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 24500, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 143, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 20, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 128, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 10, - "AbilityDamageBoostOffset": 147, - "AbilityHealthIncrease": 752, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 23, - "StrengthWeight2": 13, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "19": { - "VisualLevel": 19, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2253, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 26000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 145, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 20, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 128, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 10, - "AbilityDamageBoostOffset": 147, - "AbilityHealthIncrease": 752, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 23, - "StrengthWeight2": 13, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "20": { - "VisualLevel": 20, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2309, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 28000, - "RequiredTownHallLevel": 8, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 148, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 21, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 132, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 12, - "AbilityDamageBoostOffset": 195, - "AbilityHealthIncrease": 899, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 24, - "StrengthWeight2": 14, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 2 - }, - "21": { - "VisualLevel": 21, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2367, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 29000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 151, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 21, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 132, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 12, - "AbilityDamageBoostOffset": 195, - "AbilityHealthIncrease": 899, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 24, - "StrengthWeight2": 14, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 3 - }, - "22": { - "VisualLevel": 22, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2427, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 31000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 154, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 21, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 132, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 12, - "AbilityDamageBoostOffset": 195, - "AbilityHealthIncrease": 899, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 24, - "StrengthWeight2": 14, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 3 - }, - "23": { - "VisualLevel": 23, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2487, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 32000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 157, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 21, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 132, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 12, - "AbilityDamageBoostOffset": 195, - "AbilityHealthIncrease": 899, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 24, - "StrengthWeight2": 14, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 3 - }, - "24": { - "VisualLevel": 24, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2549, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 34000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 161, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 21, - "AbilitySpeedBoost2": 10, - "AbilityDamageBoostPercent": 132, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 12, - "AbilityDamageBoostOffset": 195, - "AbilityHealthIncrease": 899, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 24, - "StrengthWeight2": 14, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 3 - }, - "25": { - "VisualLevel": 25, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2613, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 35000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 164, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 22, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 136, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 14, - "AbilityDamageBoostOffset": 245, - "AbilityHealthIncrease": 1063, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 25, - "StrengthWeight2": 15, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 3 - }, - "26": { - "VisualLevel": 26, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2678, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 37000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 167, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 22, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 136, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 14, - "AbilityDamageBoostOffset": 245, - "AbilityHealthIncrease": 1063, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 25, - "StrengthWeight2": 15, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 4 - }, - "27": { - "VisualLevel": 27, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2746, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 38000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 170, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 22, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 136, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 14, - "AbilityDamageBoostOffset": 245, - "AbilityHealthIncrease": 1063, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 25, - "StrengthWeight2": 15, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 4 - }, - "28": { - "VisualLevel": 28, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2814, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 40000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 173, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 22, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 136, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 14, - "AbilityDamageBoostOffset": 245, - "AbilityHealthIncrease": 1063, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 25, - "StrengthWeight2": 15, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 4 - }, - "29": { - "VisualLevel": 29, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2885, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 41000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 177, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 22, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 136, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 14, - "AbilityDamageBoostOffset": 245, - "AbilityHealthIncrease": 1063, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 25, - "StrengthWeight2": 15, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 4 - }, - "30": { - "VisualLevel": 30, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 2956, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 43000, - "RequiredTownHallLevel": 9, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 181, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 23, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 140, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 16, - "AbilityDamageBoostOffset": 298, - "AbilityHealthIncrease": 1247, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 26, - "StrengthWeight2": 16, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 4 - }, - "31": { - "VisualLevel": 31, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3030, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 44000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 184, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 23, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 140, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 16, - "AbilityDamageBoostOffset": 298, - "AbilityHealthIncrease": 1247, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 26, - "StrengthWeight2": 16, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 5 - }, - "32": { - "VisualLevel": 32, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3107, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 46000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 188, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 23, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 140, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 16, - "AbilityDamageBoostOffset": 298, - "AbilityHealthIncrease": 1247, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 26, - "StrengthWeight2": 16, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 5 - }, - "33": { - "VisualLevel": 33, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3184, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 47000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 192, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 23, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 140, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 16, - "AbilityDamageBoostOffset": 298, - "AbilityHealthIncrease": 1247, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 26, - "StrengthWeight2": 16, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 5 - }, - "34": { - "VisualLevel": 34, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3264, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 49000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 196, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 23, - "AbilitySpeedBoost2": 11, - "AbilityDamageBoostPercent": 140, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 16, - "AbilityDamageBoostOffset": 298, - "AbilityHealthIncrease": 1247, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 26, - "StrengthWeight2": 16, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 5 - }, - "35": { - "VisualLevel": 35, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3346, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 50000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 200, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 24, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 144, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 18, - "AbilityDamageBoostOffset": 354, - "AbilityHealthIncrease": 1455, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 27, - "StrengthWeight2": 17, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 5 - }, - "36": { - "VisualLevel": 36, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3429, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 52000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 203, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 24, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 144, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 18, - "AbilityDamageBoostOffset": 354, - "AbilityHealthIncrease": 1455, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 27, - "StrengthWeight2": 17, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 6 - }, - "37": { - "VisualLevel": 37, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3515, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 53000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 207, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 24, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 144, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 18, - "AbilityDamageBoostOffset": 354, - "AbilityHealthIncrease": 1455, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 27, - "StrengthWeight2": 17, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 6 - }, - "38": { - "VisualLevel": 38, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3602, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 55000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 212, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 24, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 144, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 18, - "AbilityDamageBoostOffset": 354, - "AbilityHealthIncrease": 1455, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 27, - "StrengthWeight2": 17, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 6 - }, - "39": { - "VisualLevel": 39, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3692, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 56000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 216, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 24, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 144, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 18, - "AbilityDamageBoostOffset": 354, - "AbilityHealthIncrease": 1455, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 27, - "StrengthWeight2": 17, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 6 - }, - "40": { - "VisualLevel": 40, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3785, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 60000, - "RequiredTownHallLevel": 10, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 220, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 25, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 150, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 20, - "AbilityDamageBoostOffset": 414, - "AbilityHealthIncrease": 1692, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 28, - "StrengthWeight2": 18, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 6 - }, - "41": { - "VisualLevel": 41, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3879, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 64000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 234, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 25, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 150, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 20, - "AbilityDamageBoostOffset": 414, - "AbilityHealthIncrease": 1692, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 28, - "StrengthWeight2": 18, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 7 - }, - "42": { - "VisualLevel": 42, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 3976, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 68000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 239, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 25, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 150, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 20, - "AbilityDamageBoostOffset": 414, - "AbilityHealthIncrease": 1692, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 28, - "StrengthWeight2": 18, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 7 - }, - "43": { - "VisualLevel": 43, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4076, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 72000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 244, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 25, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 150, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 20, - "AbilityDamageBoostOffset": 414, - "AbilityHealthIncrease": 1692, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 28, - "StrengthWeight2": 18, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 7 - }, - "44": { - "VisualLevel": 44, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4178, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 76000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 249, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 25, - "AbilitySpeedBoost2": 12, - "AbilityDamageBoostPercent": 150, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 20, - "AbilityDamageBoostOffset": 414, - "AbilityHealthIncrease": 1692, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 28, - "StrengthWeight2": 18, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 7 - }, - "45": { - "VisualLevel": 45, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4282, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 80000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 254, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 26, - "AbilitySpeedBoost2": 13, - "AbilityDamageBoostPercent": 155, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 22, - "AbilityDamageBoostOffset": 478, - "AbilityHealthIncrease": 1963, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 29, - "StrengthWeight2": 19, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 7 - }, - "46": { - "VisualLevel": 46, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4389, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 84000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 259, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 26, - "AbilitySpeedBoost2": 13, - "AbilityDamageBoostPercent": 155, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 22, - "AbilityDamageBoostOffset": 478, - "AbilityHealthIncrease": 1963, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 29, - "StrengthWeight2": 19, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 8 - }, - "47": { - "VisualLevel": 47, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4499, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 88000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 265, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 26, - "AbilitySpeedBoost2": 13, - "AbilityDamageBoostPercent": 155, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 22, - "AbilityDamageBoostOffset": 478, - "AbilityHealthIncrease": 1963, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 29, - "StrengthWeight2": 19, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 8 - }, - "48": { - "VisualLevel": 48, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4611, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 92000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 270, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 26, - "AbilitySpeedBoost2": 13, - "AbilityDamageBoostPercent": 155, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 22, - "AbilityDamageBoostOffset": 478, - "AbilityHealthIncrease": 1963, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 29, - "StrengthWeight2": 19, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 8 - }, - "49": { - "VisualLevel": 49, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4727, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 96000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 276, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 26, - "AbilitySpeedBoost2": 13, - "AbilityDamageBoostPercent": 155, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 22, - "AbilityDamageBoostOffset": 478, - "AbilityHealthIncrease": 1963, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 29, - "StrengthWeight2": 19, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 8 - }, - "50": { - "VisualLevel": 50, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4845, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 100000, - "RequiredTownHallLevel": 11, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 282, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 27, - "AbilitySpeedBoost2": 14, - "AbilityDamageBoostPercent": 160, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 24, - "AbilityDamageBoostOffset": 546, - "AbilityHealthIncrease": 2263, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 30, - "StrengthWeight2": 20, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 8 - }, - "51": { - "VisualLevel": 51, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 4967, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 105000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 288, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 27, - "AbilitySpeedBoost2": 14, - "AbilityDamageBoostPercent": 160, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 24, - "AbilityDamageBoostOffset": 546, - "AbilityHealthIncrease": 2263, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 30, - "StrengthWeight2": 20, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 9 - }, - "52": { - "VisualLevel": 52, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5092, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 110000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 294, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 27, - "AbilitySpeedBoost2": 14, - "AbilityDamageBoostPercent": 160, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 24, - "AbilityDamageBoostOffset": 546, - "AbilityHealthIncrease": 2263, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 30, - "StrengthWeight2": 20, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 9 - }, - "53": { - "VisualLevel": 53, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5219, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 115000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 300, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 27, - "AbilitySpeedBoost2": 14, - "AbilityDamageBoostPercent": 160, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 24, - "AbilityDamageBoostOffset": 546, - "AbilityHealthIncrease": 2263, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 30, - "StrengthWeight2": 20, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 9 - }, - "54": { - "VisualLevel": 54, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5350, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 120000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 307, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 27, - "AbilitySpeedBoost2": 14, - "AbilityDamageBoostPercent": 160, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 24, - "AbilityDamageBoostOffset": 546, - "AbilityHealthIncrease": 2263, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 30, - "StrengthWeight2": 20, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 9 - }, - "55": { - "VisualLevel": 55, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5484, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 125000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 314, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 28, - "AbilitySpeedBoost2": 15, - "AbilityDamageBoostPercent": 165, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 26, - "AbilityDamageBoostOffset": 618, - "AbilityHealthIncrease": 2592, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 31, - "StrengthWeight2": 21, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 9 - }, - "56": { - "VisualLevel": 56, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5622, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 130000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 320, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 28, - "AbilitySpeedBoost2": 15, - "AbilityDamageBoostPercent": 165, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 26, - "AbilityDamageBoostOffset": 618, - "AbilityHealthIncrease": 2592, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 31, - "StrengthWeight2": 21, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 10 - }, - "57": { - "VisualLevel": 57, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5763, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 135000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 327, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 28, - "AbilitySpeedBoost2": 15, - "AbilityDamageBoostPercent": 165, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 26, - "AbilityDamageBoostOffset": 618, - "AbilityHealthIncrease": 2592, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 31, - "StrengthWeight2": 21, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 10 - }, - "58": { - "VisualLevel": 58, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 5908, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 140000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 334, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 28, - "AbilitySpeedBoost2": 15, - "AbilityDamageBoostPercent": 165, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 26, - "AbilityDamageBoostOffset": 618, - "AbilityHealthIncrease": 2592, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 31, - "StrengthWeight2": 21, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 10 - }, - "59": { - "VisualLevel": 59, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 6055, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 145000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 341, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 28, - "AbilitySpeedBoost2": 15, - "AbilityDamageBoostPercent": 165, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 26, - "AbilityDamageBoostOffset": 618, - "AbilityHealthIncrease": 2592, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 31, - "StrengthWeight2": 21, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 10 - }, - "60": { - "VisualLevel": 60, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 6208, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 150000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 349, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 29, - "AbilitySpeedBoost2": 16, - "AbilityDamageBoostPercent": 170, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 28, - "AbilityDamageBoostOffset": 694, - "AbilityHealthIncrease": 2980, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 32, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 10 - }, - "61": { - "VisualLevel": 61, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 6363, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 155000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 355, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 29, - "AbilitySpeedBoost2": 16, - "AbilityDamageBoostPercent": 170, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 28, - "AbilityDamageBoostOffset": 694, - "AbilityHealthIncrease": 2980, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 32, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 11 - }, - "62": { - "VisualLevel": 62, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 6522, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 160000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 362, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 29, - "AbilitySpeedBoost2": 16, - "AbilityDamageBoostPercent": 170, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 28, - "AbilityDamageBoostOffset": 694, - "AbilityHealthIncrease": 2980, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 32, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 11 - }, - "63": { - "VisualLevel": 63, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 6685, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 165000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 370, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 29, - "AbilitySpeedBoost2": 16, - "AbilityDamageBoostPercent": 170, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 28, - "AbilityDamageBoostOffset": 694, - "AbilityHealthIncrease": 2980, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 32, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 11 - }, - "64": { - "VisualLevel": 64, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 6853, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 170000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 377, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 29, - "AbilitySpeedBoost2": 16, - "AbilityDamageBoostPercent": 170, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 28, - "AbilityDamageBoostOffset": 694, - "AbilityHealthIncrease": 2980, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 32, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 11 - }, - "65": { - "VisualLevel": 65, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 7024, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 175000, - "RequiredTownHallLevel": 12, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 385, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 30, - "AbilitySpeedBoost2": 17, - "AbilityDamageBoostPercent": 175, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 30, - "AbilityDamageBoostOffset": 770, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 33, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 11 - }, - "66": { - "VisualLevel": 66, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 7200, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 180000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 393, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 30, - "AbilitySpeedBoost2": 17, - "AbilityDamageBoostPercent": 175, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 30, - "AbilityDamageBoostOffset": 770, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 33, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 12 - }, - "67": { - "VisualLevel": 67, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 7378, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 185000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 400, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 30, - "AbilitySpeedBoost2": 17, - "AbilityDamageBoostPercent": 175, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 30, - "AbilityDamageBoostOffset": 770, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 33, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 12 - }, - "68": { - "VisualLevel": 68, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 7557, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 408, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 30, - "AbilitySpeedBoost2": 17, - "AbilityDamageBoostPercent": 175, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 30, - "AbilityDamageBoostOffset": 770, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 33, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 12 - }, - "69": { - "VisualLevel": 69, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 7735, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 195000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 417, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 30, - "AbilitySpeedBoost2": 17, - "AbilityDamageBoostPercent": 175, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 30, - "AbilityDamageBoostOffset": 770, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 33, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 12 - }, - "70": { - "VisualLevel": 70, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 7905, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 425, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 31, - "AbilitySpeedBoost2": 18, - "AbilityDamageBoostPercent": 180, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 32, - "AbilityDamageBoostOffset": 846, - "AbilityHealthIncrease": 3850, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 34, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 12 - }, - "71": { - "VisualLevel": 71, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 8075, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 205000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 434, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 31, - "AbilitySpeedBoost2": 18, - "AbilityDamageBoostPercent": 180, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 32, - "AbilityDamageBoostOffset": 846, - "AbilityHealthIncrease": 3850, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 34, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 13 - }, - "72": { - "VisualLevel": 72, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 8245, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 442, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 31, - "AbilitySpeedBoost2": 18, - "AbilityDamageBoostPercent": 180, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 32, - "AbilityDamageBoostOffset": 846, - "AbilityHealthIncrease": 3850, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 34, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 13 - }, - "73": { - "VisualLevel": 73, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 8415, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 451, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 31, - "AbilitySpeedBoost2": 18, - "AbilityDamageBoostPercent": 180, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 32, - "AbilityDamageBoostOffset": 846, - "AbilityHealthIncrease": 3850, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 34, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 13 - }, - "74": { - "VisualLevel": 74, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 8585, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 220000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 459, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 31, - "AbilitySpeedBoost2": 18, - "AbilityDamageBoostPercent": 180, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 32, - "AbilityDamageBoostOffset": 846, - "AbilityHealthIncrease": 3850, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 34, - "StrengthWeight2": 22, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 13 - }, - "75": { - "VisualLevel": 75, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 8755, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "RequiredTownHallLevel": 13, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 468, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 32, - "AbilitySpeedBoost2": 19, - "AbilityDamageBoostPercent": 185, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 34, - "AbilityDamageBoostOffset": 922, - "AbilityHealthIncrease": 4300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 35, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 13 - }, - "76": { - "VisualLevel": 76, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 8917, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "RequiredTownHallLevel": 14, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 475, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 32, - "AbilitySpeedBoost2": 19, - "AbilityDamageBoostPercent": 185, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 34, - "AbilityDamageBoostOffset": 922, - "AbilityHealthIncrease": 4300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 35, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 14 - }, - "77": { - "VisualLevel": 77, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9078, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 235000, - "RequiredTownHallLevel": 14, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 483, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 32, - "AbilitySpeedBoost2": 19, - "AbilityDamageBoostPercent": 185, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 34, - "AbilityDamageBoostOffset": 922, - "AbilityHealthIncrease": 4300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 35, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 14 - }, - "78": { - "VisualLevel": 78, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9240, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "RequiredTownHallLevel": 14, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 490, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 32, - "AbilitySpeedBoost2": 19, - "AbilityDamageBoostPercent": 185, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 34, - "AbilityDamageBoostOffset": 922, - "AbilityHealthIncrease": 4300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 35, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 14 - }, - "79": { - "VisualLevel": 79, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9401, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "RequiredTownHallLevel": 14, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 498, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 32, - "AbilitySpeedBoost2": 19, - "AbilityDamageBoostPercent": 185, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 34, - "AbilityDamageBoostOffset": 922, - "AbilityHealthIncrease": 4300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 35, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 14 - }, - "80": { - "VisualLevel": 80, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9563, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 250000, - "RequiredTownHallLevel": 14, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 506, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 33, - "AbilitySpeedBoost2": 20, - "AbilityDamageBoostPercent": 190, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 36, - "AbilityDamageBoostOffset": 990, - "AbilityHealthIncrease": 4700, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 36, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 14 - }, - "81": { - "VisualLevel": 81, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9690, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 255000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 513, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 33, - "AbilitySpeedBoost2": 20, - "AbilityDamageBoostPercent": 190, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 36, - "AbilityDamageBoostOffset": 990, - "AbilityHealthIncrease": 4700, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 36, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "82": { - "VisualLevel": 82, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9818, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 260000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 519, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 33, - "AbilitySpeedBoost2": 20, - "AbilityDamageBoostPercent": 190, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 36, - "AbilityDamageBoostOffset": 990, - "AbilityHealthIncrease": 4700, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 36, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "83": { - "VisualLevel": 83, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 9945, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 265000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 526, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 33, - "AbilitySpeedBoost2": 20, - "AbilityDamageBoostPercent": 190, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 36, - "AbilityDamageBoostOffset": 990, - "AbilityHealthIncrease": 4700, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 36, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "84": { - "VisualLevel": 84, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10073, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 270000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 533, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 33, - "AbilitySpeedBoost2": 20, - "AbilityDamageBoostPercent": 190, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 36, - "AbilityDamageBoostOffset": 990, - "AbilityHealthIncrease": 4700, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 36, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "85": { - "VisualLevel": 85, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10200, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 275000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 540, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 34, - "AbilitySpeedBoost2": 21, - "AbilityDamageBoostPercent": 195, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 38, - "AbilityDamageBoostOffset": 1050, - "AbilityHealthIncrease": 5000, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 37, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "86": { - "VisualLevel": 86, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10328, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 278000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 547, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 34, - "AbilitySpeedBoost2": 21, - "AbilityDamageBoostPercent": 195, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 38, - "AbilityDamageBoostOffset": 1050, - "AbilityHealthIncrease": 5000, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 37, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "87": { - "VisualLevel": 87, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10455, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 280000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 553, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 34, - "AbilitySpeedBoost2": 21, - "AbilityDamageBoostPercent": 195, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 38, - "AbilityDamageBoostOffset": 1050, - "AbilityHealthIncrease": 5000, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 37, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "88": { - "VisualLevel": 88, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10583, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 282000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 560, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 34, - "AbilitySpeedBoost2": 21, - "AbilityDamageBoostPercent": 195, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 38, - "AbilityDamageBoostOffset": 1050, - "AbilityHealthIncrease": 5000, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 37, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "89": { - "VisualLevel": 89, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10710, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 285000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 567, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 34, - "AbilitySpeedBoost2": 21, - "AbilityDamageBoostPercent": 195, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 38, - "AbilityDamageBoostOffset": 1050, - "AbilityHealthIncrease": 5000, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 37, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "90": { - "VisualLevel": 90, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10838, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 290000, - "RequiredTownHallLevel": 15, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 574, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 35, - "AbilitySpeedBoost2": 22, - "AbilityDamageBoostPercent": 200, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 40, - "AbilityDamageBoostOffset": 1100, - "AbilityHealthIncrease": 5300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 38, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "91": { - "VisualLevel": 91, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 10965, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 300000, - "RequiredTownHallLevel": 16, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 581, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 35, - "AbilitySpeedBoost2": 22, - "AbilityDamageBoostPercent": 200, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 40, - "AbilityDamageBoostOffset": 1100, - "AbilityHealthIncrease": 5300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 38, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "92": { - "VisualLevel": 92, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 11093, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 310000, - "RequiredTownHallLevel": 16, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 587, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 35, - "AbilitySpeedBoost2": 22, - "AbilityDamageBoostPercent": 200, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 40, - "AbilityDamageBoostOffset": 1100, - "AbilityHealthIncrease": 5300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 38, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "93": { - "VisualLevel": 93, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 11220, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 320000, - "RequiredTownHallLevel": 16, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 594, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 35, - "AbilitySpeedBoost2": 22, - "AbilityDamageBoostPercent": 200, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 40, - "AbilityDamageBoostOffset": 1100, - "AbilityHealthIncrease": 5300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 38, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "94": { - "VisualLevel": 94, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 11348, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 330000, - "RequiredTownHallLevel": 16, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 601, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 35, - "AbilitySpeedBoost2": 22, - "AbilityDamageBoostPercent": 200, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 40, - "AbilityDamageBoostOffset": 1100, - "AbilityHealthIncrease": 5300, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 38, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - }, - "95": { - "VisualLevel": 95, - "TID": "TID_BARBARIAN_KING", - "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", - "Speed": 200, - "Hitpoints": 11475, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 330000, - "RequiredTownHallLevel": 16, - "AttackRange": 100, - "AttackSpeed": 1200, - "DPS": 608, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_barbarianKing", - "BigPicture": "unit_barbarianKing_big", - "BigPictureSWF": "sc/info_barbarian.sc", - "SmallPicture": "unit_barbarianKing_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Barbarian King Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 21, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 48, - "TrainingResource": "Elixir", - "CelebrateEffect": "Barbarian King Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 10000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySpeedBoost": 36, - "AbilitySpeedBoost2": 23, - "AbilityDamageBoostPercent": 205, - "AbilitySummonTroop": "Barbarian", - "AbilitySummonTroopCount": 42, - "AbilityDamageBoostOffset": 1150, - "AbilityHealthIncrease": 5600, - "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", - "AbilityIcon": "icon_hero_barbarianKing_ability1", - "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 39, - "StrengthWeight2": 23, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "AbilityAffectsSummonedUnits": true, - "DefaultSkin": "BarbarianKingDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "BarbarianKingAbilityHeal", - "SpecialAbilitiesLevel": 20, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroKingLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Barbarian Crown; Iron Fist;", - "MigrationGearLevel": 15 - } - }, - "Archer Queen": { - "1": { - "VisualLevel": 1, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 580, - "UpgradeTimeH": 4, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 10000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 136, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 0, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 50, - "StrengthWeight2": 28, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueen", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "2": { - "VisualLevel": 2, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 592, - "UpgradeTimeH": 6, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 11000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 139, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 0, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 50, - "StrengthWeight2": 28, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueen", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "3": { - "VisualLevel": 3, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 604, - "UpgradeTimeH": 8, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 12000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 143, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 0, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 50, - "StrengthWeight2": 28, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueen", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "4": { - "VisualLevel": 4, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 617, - "UpgradeTimeH": 10, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 13000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 146, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 10, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 0, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 0, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 50, - "StrengthWeight2": 28, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueen", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "5": { - "VisualLevel": 5, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 630, - "UpgradeTimeH": 12, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 14000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 150, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 5, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 300, - "AbilityHealthIncrease": 150, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 51, - "StrengthWeight2": 29, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "6": { - "VisualLevel": 6, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 643, - "UpgradeTimeH": 14, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 15000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 154, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 5, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 300, - "AbilityHealthIncrease": 150, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 51, - "StrengthWeight2": 29, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "7": { - "VisualLevel": 7, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 657, - "UpgradeTimeH": 16, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 16000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 157, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 5, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 300, - "AbilityHealthIncrease": 150, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 51, - "StrengthWeight2": 29, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "8": { - "VisualLevel": 8, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 670, - "UpgradeTimeH": 18, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 17000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 162, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 5, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 300, - "AbilityHealthIncrease": 150, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 51, - "StrengthWeight2": 29, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "9": { - "VisualLevel": 9, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 685, - "UpgradeTimeH": 20, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 18000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 165, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 12, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 5, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 300, - "AbilityHealthIncrease": 150, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 51, - "StrengthWeight2": 29, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "10": { - "VisualLevel": 10, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 699, - "UpgradeTimeH": 22, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 19000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 169, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 6, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 355, - "AbilityHealthIncrease": 175, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 52, - "StrengthWeight2": 30, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 1 - }, - "11": { - "VisualLevel": 11, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 714, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 20000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 173, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 6, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 355, - "AbilityHealthIncrease": 175, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 52, - "StrengthWeight2": 30, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "12": { - "VisualLevel": 12, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 729, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 21000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 178, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 6, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 355, - "AbilityHealthIncrease": 175, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 52, - "StrengthWeight2": 30, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "13": { - "VisualLevel": 13, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 744, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 22000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 183, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 6, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 355, - "AbilityHealthIncrease": 175, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 52, - "StrengthWeight2": 30, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "14": { - "VisualLevel": 14, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 759, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 23000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 187, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 14, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 3800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 6, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 355, - "AbilityHealthIncrease": 175, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 52, - "StrengthWeight2": 30, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "15": { - "VisualLevel": 15, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 775, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 24000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 192, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 7, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 416, - "AbilityHealthIncrease": 200, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 53, - "StrengthWeight2": 31, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "16": { - "VisualLevel": 16, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 792, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 25000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 196, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 7, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 416, - "AbilityHealthIncrease": 200, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 53, - "StrengthWeight2": 31, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "17": { - "VisualLevel": 17, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 808, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 27000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 201, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 7, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 416, - "AbilityHealthIncrease": 200, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 53, - "StrengthWeight2": 31, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "18": { - "VisualLevel": 18, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 826, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 28000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 207, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 7, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 416, - "AbilityHealthIncrease": 200, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 53, - "StrengthWeight2": 31, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "19": { - "VisualLevel": 19, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 842, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 30000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 212, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl1", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 16, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 7, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 416, - "AbilityHealthIncrease": 200, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 53, - "StrengthWeight2": 31, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "20": { - "VisualLevel": 20, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 861, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 31000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 217, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 8, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 483, - "AbilityHealthIncrease": 225, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 54, - "StrengthWeight2": 32, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 2 - }, - "21": { - "VisualLevel": 21, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 878, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 33000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 223, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 8, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 483, - "AbilityHealthIncrease": 225, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 54, - "StrengthWeight2": 32, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 3 - }, - "22": { - "VisualLevel": 22, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 897, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 34000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 228, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 8, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 483, - "AbilityHealthIncrease": 225, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 54, - "StrengthWeight2": 32, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 3 - }, - "23": { - "VisualLevel": 23, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 916, - "UpgradeTimeH": 48, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 36000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 234, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 8, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 483, - "AbilityHealthIncrease": 225, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 54, - "StrengthWeight2": 32, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 3 - }, - "24": { - "VisualLevel": 24, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 935, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 37000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 240, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 18, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 8, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 483, - "AbilityHealthIncrease": 225, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 54, - "StrengthWeight2": 32, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 3 - }, - "25": { - "VisualLevel": 25, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 954, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 39000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 246, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 9, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 557, - "AbilityHealthIncrease": 250, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 55, - "StrengthWeight2": 33, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 3 - }, - "26": { - "VisualLevel": 26, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 974, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 40000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 252, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 9, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 557, - "AbilityHealthIncrease": 250, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 55, - "StrengthWeight2": 33, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 4 - }, - "27": { - "VisualLevel": 27, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 995, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 42000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 258, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 9, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 557, - "AbilityHealthIncrease": 250, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 55, - "StrengthWeight2": 33, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 4 - }, - "28": { - "VisualLevel": 28, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1016, - "UpgradeTimeH": 60, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 43000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 264, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 9, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 557, - "AbilityHealthIncrease": 250, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 55, - "StrengthWeight2": 33, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 4 - }, - "29": { - "VisualLevel": 29, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1038, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 45000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 271, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 9, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 557, - "AbilityHealthIncrease": 250, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 55, - "StrengthWeight2": 33, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 4 - }, - "30": { - "VisualLevel": 30, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1059, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 47000, - "RequiredTownHallLevel": 9, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 278, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 10, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 638, - "AbilityHealthIncrease": 275, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 56, - "StrengthWeight2": 34, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 4 - }, - "31": { - "VisualLevel": 31, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1082, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 49000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 285, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 10, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 638, - "AbilityHealthIncrease": 275, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 56, - "StrengthWeight2": 34, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 5 - }, - "32": { - "VisualLevel": 32, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1104, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 51000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 292, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 10, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 638, - "AbilityHealthIncrease": 275, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 56, - "StrengthWeight2": 34, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 5 - }, - "33": { - "VisualLevel": 33, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1127, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 53000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 299, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 10, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 638, - "AbilityHealthIncrease": 275, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 56, - "StrengthWeight2": 34, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 5 - }, - "34": { - "VisualLevel": 34, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1151, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 55000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 307, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 10, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 638, - "AbilityHealthIncrease": 275, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 56, - "StrengthWeight2": 34, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 5 - }, - "35": { - "VisualLevel": 35, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1175, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 57000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 315, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 11, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 725, - "AbilityHealthIncrease": 300, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 57, - "StrengthWeight2": 35, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 5 - }, - "36": { - "VisualLevel": 36, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1200, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 59000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 322, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 11, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 725, - "AbilityHealthIncrease": 300, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 57, - "StrengthWeight2": 35, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 6 - }, - "37": { - "VisualLevel": 37, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1226, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 61000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 331, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 11, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 725, - "AbilityHealthIncrease": 300, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 57, - "StrengthWeight2": 35, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 6 - }, - "38": { - "VisualLevel": 38, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1251, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 63000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 338, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 11, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 725, - "AbilityHealthIncrease": 300, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 57, - "StrengthWeight2": 35, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 6 - }, - "39": { - "VisualLevel": 39, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1278, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 65000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 347, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 4800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 11, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 725, - "AbilityHealthIncrease": 300, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 57, - "StrengthWeight2": 35, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 6 - }, - "40": { - "VisualLevel": 40, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1304, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 68000, - "RequiredTownHallLevel": 10, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 356, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl2", - "RageProjectile": "ArcherQueen arrow rage", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 12, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 819, - "AbilityHealthIncrease": 325, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 58, - "StrengthWeight2": 36, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 6 - }, - "41": { - "VisualLevel": 41, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1331, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 72000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 365, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 12, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 819, - "AbilityHealthIncrease": 325, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 58, - "StrengthWeight2": 36, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 7 - }, - "42": { - "VisualLevel": 42, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1359, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 75000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 374, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 12, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 819, - "AbilityHealthIncrease": 325, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 58, - "StrengthWeight2": 36, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 7 - }, - "43": { - "VisualLevel": 43, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1388, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 79000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 383, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 12, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 819, - "AbilityHealthIncrease": 325, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 58, - "StrengthWeight2": 36, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 7 - }, - "44": { - "VisualLevel": 44, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1417, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 82000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 393, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 12, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 819, - "AbilityHealthIncrease": 325, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 58, - "StrengthWeight2": 36, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 7 - }, - "45": { - "VisualLevel": 45, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1447, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 86000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 403, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 13, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 920, - "AbilityHealthIncrease": 350, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 59, - "StrengthWeight2": 37, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 7 - }, - "46": { - "VisualLevel": 46, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1478, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 89000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 413, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 13, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 920, - "AbilityHealthIncrease": 350, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 59, - "StrengthWeight2": 37, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 8 - }, - "47": { - "VisualLevel": 47, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1508, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 93000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 423, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 13, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 920, - "AbilityHealthIncrease": 350, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 59, - "StrengthWeight2": 37, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 8 - }, - "48": { - "VisualLevel": 48, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1540, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 98000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 434, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 13, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 920, - "AbilityHealthIncrease": 350, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 59, - "StrengthWeight2": 37, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 8 - }, - "49": { - "VisualLevel": 49, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1572, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 103000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 445, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 13, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 920, - "AbilityHealthIncrease": 350, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 59, - "StrengthWeight2": 37, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 8 - }, - "50": { - "VisualLevel": 50, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1606, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 108000, - "RequiredTownHallLevel": 11, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 456, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 14, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1020, - "AbilityHealthIncrease": 375, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 60, - "StrengthWeight2": 38, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 8 - }, - "51": { - "VisualLevel": 51, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1646, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 113000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 465, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 14, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1020, - "AbilityHealthIncrease": 375, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 60, - "StrengthWeight2": 38, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 9 - }, - "52": { - "VisualLevel": 52, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1688, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 118000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 474, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 14, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1020, - "AbilityHealthIncrease": 375, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 60, - "StrengthWeight2": 38, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 9 - }, - "53": { - "VisualLevel": 53, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1730, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 123000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 485, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 14, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1020, - "AbilityHealthIncrease": 375, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 60, - "StrengthWeight2": 38, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 9 - }, - "54": { - "VisualLevel": 54, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1774, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 128000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 495, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 14, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1020, - "AbilityHealthIncrease": 375, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 60, - "StrengthWeight2": 38, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 9 - }, - "55": { - "VisualLevel": 55, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1819, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 133000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 505, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 15, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1120, - "AbilityHealthIncrease": 400, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 62, - "StrengthWeight2": 39, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 9 - }, - "56": { - "VisualLevel": 56, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1865, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 138000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 515, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 15, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1120, - "AbilityHealthIncrease": 400, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 62, - "StrengthWeight2": 39, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 10 - }, - "57": { - "VisualLevel": 57, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1912, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 143000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 526, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 15, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1120, - "AbilityHealthIncrease": 400, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 62, - "StrengthWeight2": 39, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 10 - }, - "58": { - "VisualLevel": 58, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 1960, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 148000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 537, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 15, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1120, - "AbilityHealthIncrease": 400, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 62, - "StrengthWeight2": 39, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 10 - }, - "59": { - "VisualLevel": 59, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2010, - "UpgradeTimeH": 138, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 153000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 548, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 15, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1120, - "AbilityHealthIncrease": 400, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 62, - "StrengthWeight2": 39, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 10 - }, - "60": { - "VisualLevel": 60, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2060, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 158000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 559, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 16, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1220, - "AbilityHealthIncrease": 425, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 64, - "StrengthWeight2": 40, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 10 - }, - "61": { - "VisualLevel": 61, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2111, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 163000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 570, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 16, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1220, - "AbilityHealthIncrease": 425, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 64, - "StrengthWeight2": 40, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 11 - }, - "62": { - "VisualLevel": 62, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2164, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 168000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 581, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 16, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1220, - "AbilityHealthIncrease": 425, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 64, - "StrengthWeight2": 40, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 11 - }, - "63": { - "VisualLevel": 63, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2218, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 173000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 593, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 16, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1220, - "AbilityHealthIncrease": 425, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 64, - "StrengthWeight2": 40, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 11 - }, - "64": { - "VisualLevel": 64, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2274, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 178000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 605, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 5800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 16, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1220, - "AbilityHealthIncrease": 425, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 64, - "StrengthWeight2": 40, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 11 - }, - "65": { - "VisualLevel": 65, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2330, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 183000, - "RequiredTownHallLevel": 12, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 617, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 17, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1300, - "AbilityHealthIncrease": 450, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 41, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 11 - }, - "66": { - "VisualLevel": 66, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2384, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 188000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 628, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 17, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1300, - "AbilityHealthIncrease": 450, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 41, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 12 - }, - "67": { - "VisualLevel": 67, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2432, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 193000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 638, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 17, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1300, - "AbilityHealthIncrease": 450, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 41, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 12 - }, - "68": { - "VisualLevel": 68, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2476, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 198000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 648, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 17, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1300, - "AbilityHealthIncrease": 450, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 41, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 12 - }, - "69": { - "VisualLevel": 69, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2516, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 203000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 656, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 17, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1300, - "AbilityHealthIncrease": 450, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 41, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 12 - }, - "70": { - "VisualLevel": 70, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2552, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 208000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 664, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 18, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1370, - "AbilityHealthIncrease": 475, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 68, - "StrengthWeight2": 42, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 12 - }, - "71": { - "VisualLevel": 71, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2584, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 214000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 671, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 18, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1370, - "AbilityHealthIncrease": 475, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 68, - "StrengthWeight2": 42, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 13 - }, - "72": { - "VisualLevel": 72, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2616, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 221000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 677, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 18, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1370, - "AbilityHealthIncrease": 475, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 68, - "StrengthWeight2": 42, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 13 - }, - "73": { - "VisualLevel": 73, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2648, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 229000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 682, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 18, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1370, - "AbilityHealthIncrease": 475, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 68, - "StrengthWeight2": 42, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 13 - }, - "74": { - "VisualLevel": 74, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2680, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 234000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 687, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 18, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1370, - "AbilityHealthIncrease": 475, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 68, - "StrengthWeight2": 42, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 13 - }, - "75": { - "VisualLevel": 75, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2712, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 239000, - "RequiredTownHallLevel": 13, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 692, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 19, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1430, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 70, - "StrengthWeight2": 43, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 13 - }, - "76": { - "VisualLevel": 76, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2740, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 244000, - "RequiredTownHallLevel": 14, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 697, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 19, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1430, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 70, - "StrengthWeight2": 43, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 14 - }, - "77": { - "VisualLevel": 77, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2768, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 249000, - "RequiredTownHallLevel": 14, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 701, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 19, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1430, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 70, - "StrengthWeight2": 43, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 14 - }, - "78": { - "VisualLevel": 78, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2796, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 254000, - "RequiredTownHallLevel": 14, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 706, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 19, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1430, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 70, - "StrengthWeight2": 43, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 14 - }, - "79": { - "VisualLevel": 79, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2824, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 259000, - "RequiredTownHallLevel": 14, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 710, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6400, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 19, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1430, - "AbilityHealthIncrease": 500, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 70, - "StrengthWeight2": 43, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 16, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 14 - }, - "80": { - "VisualLevel": 80, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2852, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 264000, - "RequiredTownHallLevel": 14, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 714, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 20, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1480, - "AbilityHealthIncrease": 525, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 72, - "StrengthWeight2": 44, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 14 - }, - "81": { - "VisualLevel": 81, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2880, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 268000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 717, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 20, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1480, - "AbilityHealthIncrease": 525, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 72, - "StrengthWeight2": 44, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "82": { - "VisualLevel": 82, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2904, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 272000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 721, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 20, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1480, - "AbilityHealthIncrease": 525, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 72, - "StrengthWeight2": 44, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "83": { - "VisualLevel": 83, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2928, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 276000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 724, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 20, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1480, - "AbilityHealthIncrease": 525, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 72, - "StrengthWeight2": 44, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "84": { - "VisualLevel": 84, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2952, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 280000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 728, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6600, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 20, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1480, - "AbilityHealthIncrease": 525, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 72, - "StrengthWeight2": 44, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 17, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "85": { - "VisualLevel": 85, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 2976, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 282000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 731, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 21, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1520, - "AbilityHealthIncrease": 550, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 74, - "StrengthWeight2": 45, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "86": { - "VisualLevel": 86, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3000, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 284000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 734, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 21, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1520, - "AbilityHealthIncrease": 550, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 74, - "StrengthWeight2": 45, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "87": { - "VisualLevel": 87, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3024, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 286000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 738, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 21, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1520, - "AbilityHealthIncrease": 550, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 74, - "StrengthWeight2": 45, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "88": { - "VisualLevel": 88, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3048, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 288000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 741, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 21, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1520, - "AbilityHealthIncrease": 550, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 74, - "StrengthWeight2": 45, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "89": { - "VisualLevel": 89, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3072, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 290000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 745, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 6800, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 21, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1520, - "AbilityHealthIncrease": 550, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 74, - "StrengthWeight2": 45, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 18, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "90": { - "VisualLevel": 90, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3096, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 300000, - "RequiredTownHallLevel": 15, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 748, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 7000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 22, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1560, - "AbilityHealthIncrease": 575, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 76, - "StrengthWeight2": 46, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "91": { - "VisualLevel": 91, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3120, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 310000, - "RequiredTownHallLevel": 16, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 751, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 7000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 22, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1560, - "AbilityHealthIncrease": 575, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 76, - "StrengthWeight2": 46, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "92": { - "VisualLevel": 92, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3144, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 320000, - "RequiredTownHallLevel": 16, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 755, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 7000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 22, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1560, - "AbilityHealthIncrease": 575, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 76, - "StrengthWeight2": 46, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "93": { - "VisualLevel": 93, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3168, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 330000, - "RequiredTownHallLevel": 16, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 758, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 7000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 22, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1560, - "AbilityHealthIncrease": 575, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 76, - "StrengthWeight2": 46, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "94": { - "VisualLevel": 94, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3192, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 340000, - "RequiredTownHallLevel": 16, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 762, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 7000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 22, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1560, - "AbilityHealthIncrease": 575, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 76, - "StrengthWeight2": 46, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 19, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - }, - "95": { - "VisualLevel": 95, - "TID": "TID_ARCHER_QUEEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", - "Speed": 300, - "Hitpoints": 3216, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 340000, - "RequiredTownHallLevel": 16, - "AttackRange": 500, - "AttackSpeed": 750, - "DPS": 765, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_archerQueen", - "BigPicture": "unit_archerQueen_big", - "BigPictureSWF": "sc/info_archer.sc", - "SmallPicture": "unit_archerQueen_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "ArcherQueen arrow lvl3", - "RageProjectile": "ArcherQueen arrow rage2", - "DeployEffect": "Hero Deploy", - "HitEffect": "Archer Queen Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 1000, - "HousingSpace": 25, - "HealerWeight": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 48, - "TrainingResource": "Elixir", - "CelebrateEffect": "Archer Queen Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityRadius": 2500, - "AbilityTime": 7200, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroop": "Archer", - "AbilitySummonTroopCount": 23, - "AbilityStealth": true, - "AbilityDamageBoostOffset": 1600, - "AbilityHealthIncrease": 600, - "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", - "AbilityIcon": "icon_hero_archerQueen_ability1", - "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", - "AbilityDelay": 0, - "StrengthWeight": 78, - "StrengthWeight2": 47, - "AlertRadius": 1300, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "ArcherQueenDefault", - "UseAutoHeroAbility": true, - "Gender": "F", - "SpecialAbilities": "ArcherQueenAbilityHeal", - "SpecialAbilitiesLevel": 20, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroQueenLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Archer Crown; Royal Cloak;", - "MigrationGearLevel": 15 - } - }, - "Grand Warden": { - "1": { - "VisualLevel": 1, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 850, - "UpgradeTimeH": 2, - "UpgradeResource": "Elixir", - "UpgradeCost": 1000000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 43, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 140, - "StrengthWeight2": 70, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWarden", - "AltPreviewScenario": "HeroGrandWardenAir", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 1 - }, - "2": { - "VisualLevel": 2, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 868, - "UpgradeTimeH": 4, - "UpgradeResource": "Elixir", - "UpgradeCost": 1100000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 44, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 140, - "StrengthWeight2": 70, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWarden", - "AltPreviewScenario": "HeroGrandWardenAir", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 1 - }, - "3": { - "VisualLevel": 3, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 886, - "UpgradeTimeH": 8, - "UpgradeResource": "Elixir", - "UpgradeCost": 1200000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 46, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 140, - "StrengthWeight2": 70, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWarden", - "AltPreviewScenario": "HeroGrandWardenAir", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 1 - }, - "4": { - "VisualLevel": 4, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 904, - "UpgradeTimeH": 12, - "UpgradeResource": "Elixir", - "UpgradeCost": 1400000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 48, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 20, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 140, - "StrengthWeight2": 70, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWarden", - "AltPreviewScenario": "HeroGrandWardenAir", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 2 - }, - "5": { - "VisualLevel": 5, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 923, - "UpgradeTimeH": 16, - "UpgradeResource": "Elixir", - "UpgradeCost": 1500000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 49, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 145, - "StrengthWeight2": 71, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 2 - }, - "6": { - "VisualLevel": 6, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 942, - "UpgradeTimeH": 22, - "UpgradeResource": "Elixir", - "UpgradeCost": 1700000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 51, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 145, - "StrengthWeight2": 71, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 3 - }, - "7": { - "VisualLevel": 7, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 961, - "UpgradeTimeH": 24, - "UpgradeResource": "Elixir", - "UpgradeCost": 1800000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 54, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 145, - "StrengthWeight2": 71, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 3 - }, - "8": { - "VisualLevel": 8, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 982, - "UpgradeTimeH": 24, - "UpgradeResource": "Elixir", - "UpgradeCost": 2000000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 56, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 145, - "StrengthWeight2": 71, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 4 - }, - "9": { - "VisualLevel": 9, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1003, - "UpgradeTimeH": 36, - "UpgradeResource": "Elixir", - "UpgradeCost": 2300000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 59, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 22, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 145, - "StrengthWeight2": 71, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 4 - }, - "10": { - "VisualLevel": 10, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1025, - "UpgradeTimeH": 36, - "UpgradeResource": "Elixir", - "UpgradeCost": 2700000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 61, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 150, - "StrengthWeight2": 72, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 5 - }, - "11": { - "VisualLevel": 11, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1048, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir", - "UpgradeCost": 3000000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 64, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 150, - "StrengthWeight2": 72, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 5 - }, - "12": { - "VisualLevel": 12, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1072, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir", - "UpgradeCost": 3400000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 66, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 150, - "StrengthWeight2": 72, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 6 - }, - "13": { - "VisualLevel": 13, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1097, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir", - "UpgradeCost": 3700000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 70, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 150, - "StrengthWeight2": 72, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 6 - }, - "14": { - "VisualLevel": 14, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1122, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir", - "UpgradeCost": 4100000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 73, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 24, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 150, - "StrengthWeight2": 72, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 7 - }, - "15": { - "VisualLevel": 15, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1148, - "UpgradeTimeH": 66, - "UpgradeResource": "Elixir", - "UpgradeCost": 4400000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 77, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 155, - "StrengthWeight2": 73, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 7 - }, - "16": { - "VisualLevel": 16, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1173, - "UpgradeTimeH": 66, - "UpgradeResource": "Elixir", - "UpgradeCost": 4800000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 80, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 155, - "StrengthWeight2": 73, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 8 - }, - "17": { - "VisualLevel": 17, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1199, - "UpgradeTimeH": 66, - "UpgradeResource": "Elixir", - "UpgradeCost": 5100000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 83, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 155, - "StrengthWeight2": 73, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 8 - }, - "18": { - "VisualLevel": 18, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1224, - "UpgradeTimeH": 66, - "UpgradeResource": "Elixir", - "UpgradeCost": 5500000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 87, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 155, - "StrengthWeight2": 73, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 8 - }, - "19": { - "VisualLevel": 19, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1250, - "UpgradeTimeH": 66, - "UpgradeResource": "Elixir", - "UpgradeCost": 6000000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 90, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 26, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 155, - "StrengthWeight2": 73, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 8 - }, - "20": { - "VisualLevel": 20, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1275, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 6500000, - "RequiredTownHallLevel": 11, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 94, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 160, - "StrengthWeight2": 74, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 8 - }, - "21": { - "VisualLevel": 21, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1301, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 6600000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 98, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 160, - "StrengthWeight2": 74, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "22": { - "VisualLevel": 22, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1327, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 6700000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 102, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 160, - "StrengthWeight2": 74, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "23": { - "VisualLevel": 23, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1354, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 6800000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 106, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 160, - "StrengthWeight2": 74, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "24": { - "VisualLevel": 24, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1381, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 6900000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 111, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 28, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 160, - "StrengthWeight2": 74, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "25": { - "VisualLevel": 25, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1409, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 7000000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 116, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 165, - "StrengthWeight2": 75, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "26": { - "VisualLevel": 26, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1438, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 7100000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 121, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 165, - "StrengthWeight2": 75, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "27": { - "VisualLevel": 27, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1467, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 7200000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 126, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 165, - "StrengthWeight2": 75, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "28": { - "VisualLevel": 28, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1497, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 7300000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 131, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 165, - "StrengthWeight2": 75, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "29": { - "VisualLevel": 29, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1527, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 7400000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 137, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 165, - "StrengthWeight2": 75, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "30": { - "VisualLevel": 30, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1558, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir", - "UpgradeCost": 7500000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 143, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 170, - "StrengthWeight2": 76, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 9 - }, - "31": { - "VisualLevel": 31, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1590, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir", - "UpgradeCost": 7600000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 149, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 170, - "StrengthWeight2": 76, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 10 - }, - "32": { - "VisualLevel": 32, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1622, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir", - "UpgradeCost": 7700000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 155, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 170, - "StrengthWeight2": 76, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 10 - }, - "33": { - "VisualLevel": 33, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1655, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir", - "UpgradeCost": 7800000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 162, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 170, - "StrengthWeight2": 76, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 10 - }, - "34": { - "VisualLevel": 34, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1688, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir", - "UpgradeCost": 7900000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 168, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 170, - "StrengthWeight2": 76, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 10 - }, - "35": { - "VisualLevel": 35, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1722, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 8000000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 175, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 175, - "StrengthWeight2": 77, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 10 - }, - "36": { - "VisualLevel": 36, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1757, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 8100000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 183, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 175, - "StrengthWeight2": 77, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 11 - }, - "37": { - "VisualLevel": 37, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1793, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 8200000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 190, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 175, - "StrengthWeight2": 77, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 11 - }, - "38": { - "VisualLevel": 38, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1829, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 8300000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 198, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 175, - "StrengthWeight2": 77, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 11 - }, - "39": { - "VisualLevel": 39, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1867, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 8400000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 207, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 175, - "StrengthWeight2": 77, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 11 - }, - "40": { - "VisualLevel": 40, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1904, - "UpgradeTimeH": 150, - "UpgradeResource": "Elixir", - "UpgradeCost": 8500000, - "RequiredTownHallLevel": 12, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 215, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 180, - "StrengthWeight2": 78, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 11 - }, - "41": { - "VisualLevel": 41, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1921, - "UpgradeTimeH": 150, - "UpgradeResource": "Elixir", - "UpgradeCost": 8800000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 221, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 180, - "StrengthWeight2": 78, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 12 - }, - "42": { - "VisualLevel": 42, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1938, - "UpgradeTimeH": 150, - "UpgradeResource": "Elixir", - "UpgradeCost": 9100000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 226, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 180, - "StrengthWeight2": 78, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 12 - }, - "43": { - "VisualLevel": 43, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1955, - "UpgradeTimeH": 150, - "UpgradeResource": "Elixir", - "UpgradeCost": 9400000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 230, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 180, - "StrengthWeight2": 78, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 12 - }, - "44": { - "VisualLevel": 44, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1972, - "UpgradeTimeH": 150, - "UpgradeResource": "Elixir", - "UpgradeCost": 9700000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 234, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 180, - "StrengthWeight2": 78, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 12 - }, - "45": { - "VisualLevel": 45, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 1989, - "UpgradeTimeH": 162, - "UpgradeResource": "Elixir", - "UpgradeCost": 10000000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 237, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 185, - "StrengthWeight2": 79, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 12 - }, - "46": { - "VisualLevel": 46, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2006, - "UpgradeTimeH": 162, - "UpgradeResource": "Elixir", - "UpgradeCost": 10300000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 241, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 185, - "StrengthWeight2": 79, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 13 - }, - "47": { - "VisualLevel": 47, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2023, - "UpgradeTimeH": 162, - "UpgradeResource": "Elixir", - "UpgradeCost": 10600000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 244, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 185, - "StrengthWeight2": 79, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 13 - }, - "48": { - "VisualLevel": 48, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2040, - "UpgradeTimeH": 162, - "UpgradeResource": "Elixir", - "UpgradeCost": 11000000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 247, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 185, - "StrengthWeight2": 79, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 13 - }, - "49": { - "VisualLevel": 49, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2057, - "UpgradeTimeH": 162, - "UpgradeResource": "Elixir", - "UpgradeCost": 11500000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 251, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 185, - "StrengthWeight2": 79, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 13 - }, - "50": { - "VisualLevel": 50, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2074, - "UpgradeTimeH": 174, - "UpgradeResource": "Elixir", - "UpgradeCost": 12000000, - "RequiredTownHallLevel": 13, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 254, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 190, - "StrengthWeight2": 80, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 13 - }, - "51": { - "VisualLevel": 51, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2091, - "UpgradeTimeH": 174, - "UpgradeResource": "Elixir", - "UpgradeCost": 12500000, - "RequiredTownHallLevel": 14, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 258, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 190, - "StrengthWeight2": 80, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 14 - }, - "52": { - "VisualLevel": 52, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2108, - "UpgradeTimeH": 174, - "UpgradeResource": "Elixir", - "UpgradeCost": 13000000, - "RequiredTownHallLevel": 14, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 261, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 190, - "StrengthWeight2": 80, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 14 - }, - "53": { - "VisualLevel": 53, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2125, - "UpgradeTimeH": 174, - "UpgradeResource": "Elixir", - "UpgradeCost": 13500000, - "RequiredTownHallLevel": 14, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 264, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 190, - "StrengthWeight2": 80, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 14 - }, - "54": { - "VisualLevel": 54, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2142, - "UpgradeTimeH": 174, - "UpgradeResource": "Elixir", - "UpgradeCost": 14000000, - "RequiredTownHallLevel": 14, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 268, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 190, - "StrengthWeight2": 80, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 11, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 14 - }, - "55": { - "VisualLevel": 55, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2159, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 14500000, - "RequiredTownHallLevel": 14, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 271, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 195, - "StrengthWeight2": 81, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 14 - }, - "56": { - "VisualLevel": 56, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2176, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 15000000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 274, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 195, - "StrengthWeight2": 81, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "57": { - "VisualLevel": 57, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2193, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 15500000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 276, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 195, - "StrengthWeight2": 81, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "58": { - "VisualLevel": 58, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2210, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 16000000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 279, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 195, - "StrengthWeight2": 81, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "59": { - "VisualLevel": 59, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2227, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 16200000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 281, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 195, - "StrengthWeight2": 81, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 12, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "60": { - "VisualLevel": 60, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2244, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 16700000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 284, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 200, - "StrengthWeight2": 82, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "61": { - "VisualLevel": 61, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2261, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 16900000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 286, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 200, - "StrengthWeight2": 82, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "62": { - "VisualLevel": 62, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2278, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 17100000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 289, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 200, - "StrengthWeight2": 82, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "63": { - "VisualLevel": 63, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2295, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 17300000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 292, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 200, - "StrengthWeight2": 82, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "64": { - "VisualLevel": 64, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2312, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 17500000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 294, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 200, - "StrengthWeight2": 82, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 13, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "65": { - "VisualLevel": 65, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2329, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 18000000, - "RequiredTownHallLevel": 15, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 297, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 205, - "StrengthWeight2": 83, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "66": { - "VisualLevel": 66, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2346, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 18500000, - "RequiredTownHallLevel": 16, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 299, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 205, - "StrengthWeight2": 83, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "67": { - "VisualLevel": 67, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2363, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 19000000, - "RequiredTownHallLevel": 16, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 302, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 205, - "StrengthWeight2": 83, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "68": { - "VisualLevel": 68, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2380, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 19500000, - "RequiredTownHallLevel": 16, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 304, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 205, - "StrengthWeight2": 83, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "69": { - "VisualLevel": 69, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2397, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 20000000, - "RequiredTownHallLevel": 16, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 307, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 205, - "StrengthWeight2": 83, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 14, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - }, - "70": { - "VisualLevel": 70, - "TID": "TID_GRAND_WARDEN", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", - "Speed": 200, - "Hitpoints": 2414, - "UpgradeTimeH": 192, - "UpgradeResource": "Elixir", - "UpgradeCost": 20000000, - "RequiredTownHallLevel": 16, - "AttackRange": 700, - "AltAttackRange": 650, - "AttackSpeed": 1800, - "CoolDownOverride": 1050, - "DPS": 309, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_grandwarden", - "BigPicture": "unit_elder_big", - "BigPictureSWF": "sc/info_ancientelder.sc", - "SmallPicture": "unit_grandwarden_small", - "SmallPictureSWF": "sc/ui.sc", - "DeployEffect": "Hero Deploy", - "HitEffect": "Grand Warden Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 15, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 47, - "TrainingResource": "Elixir", - "CelebrateEffect": "Grand Warden Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-50", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilitySummonTroopCount": 0, - "AbilityStealth": false, - "AbilityDamageBoostOffset": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", - "AbilityIcon": "icon_hero_grandwarden_ability1", - "AbilityBigPictureExportName": "unit_elder_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 210, - "StrengthWeight2": 84, - "AlertRadius": 1300, - "AuraSpell": "GrandWardenRangeRing", - "AuraSpellLevel": 0, - "HasAltMode": true, - "AltModeFlying": true, - "FightWithGroups": true, - "TargetGroupsRadius": 500, - "TargetGroupsRange": 1300, - "TargetGroupsMinWeight": 2000, - "SmoothJump": true, - "WakeUpSpeed": 792, - "WakeUpSpace": 1, - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 500, - "AttackEffectShared": "Grand Warden Statue Attack", - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "GrandWardenDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "GrandWardenAbilityHeal", - "SpecialAbilitiesLevel": 15, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroGrandWardenLVL5", - "AltPreviewScenario": "HeroGrandWardenLVL5Air", - "ItemSlotCount": 2, - "DefaultItems": "Eternal Tome; Life Gem;", - "MigrationGearLevel": 15 - } - }, - "Battle Machine": { - "1": { - "VisualLevel": 1, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3000, - "UpgradeTimeH": 12, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1000000, - "RequiredTownHallLevel": 5, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 125, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 38, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "2": { - "VisualLevel": 2, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3070, - "UpgradeTimeH": 12, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1100000, - "RequiredTownHallLevel": 5, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 127, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 40, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "3": { - "VisualLevel": 3, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3140, - "UpgradeTimeH": 24, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1200000, - "RequiredTownHallLevel": 5, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 130, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 41, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "4": { - "VisualLevel": 4, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3210, - "UpgradeTimeH": 24, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1300000, - "RequiredTownHallLevel": 5, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 132, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 42, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "5": { - "VisualLevel": 5, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3280, - "UpgradeTimeH": 36, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1500000, - "RequiredTownHallLevel": 5, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 135, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 47, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "6": { - "VisualLevel": 6, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3350, - "UpgradeTimeH": 36, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1600000, - "RequiredTownHallLevel": 6, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 137, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 48, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "7": { - "VisualLevel": 7, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3420, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1700000, - "RequiredTownHallLevel": 6, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 140, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 50, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "8": { - "VisualLevel": 8, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3490, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1800000, - "RequiredTownHallLevel": 6, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 142, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 51, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "9": { - "VisualLevel": 9, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3560, - "UpgradeTimeH": 60, - "UpgradeResource": "Elixir2", - "UpgradeCost": 1900000, - "RequiredTownHallLevel": 6, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 145, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 53, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "10": { - "VisualLevel": 10, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3630, - "UpgradeTimeH": 60, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2100000, - "RequiredTownHallLevel": 6, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 147, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 59, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "11": { - "VisualLevel": 11, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3700, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2200000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 150, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 61, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "12": { - "VisualLevel": 12, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3770, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2300000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 154, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 62, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "13": { - "VisualLevel": 13, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3840, - "UpgradeTimeH": 84, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2400000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 157, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 64, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "14": { - "VisualLevel": 14, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3910, - "UpgradeTimeH": 84, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2500000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 160, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "15": { - "VisualLevel": 15, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 3980, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 164, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 73, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "16": { - "VisualLevel": 16, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4050, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2700000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 167, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 75, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "17": { - "VisualLevel": 17, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4120, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2800000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 170, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 77, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "18": { - "VisualLevel": 18, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4190, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2900000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 174, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 80, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "19": { - "VisualLevel": 19, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4260, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3000000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 177, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 83, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "20": { - "VisualLevel": 20, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4330, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3100000, - "RequiredTownHallLevel": 7, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 180, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 91, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "21": { - "VisualLevel": 21, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4400, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3200000, - "RequiredTownHallLevel": 8, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 186, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 94, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "5;5;5", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "22": { - "VisualLevel": 22, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4470, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3300000, - "RequiredTownHallLevel": 8, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 192, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 96, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "5;5;5", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "23": { - "VisualLevel": 23, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4540, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3400000, - "RequiredTownHallLevel": 8, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 198, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 100, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "5;5;5", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "24": { - "VisualLevel": 24, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4610, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3500000, - "RequiredTownHallLevel": 8, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 204, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 104, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "5;5;5", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "25": { - "VisualLevel": 25, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4680, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3600000, - "RequiredTownHallLevel": 8, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 210, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 113, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "5;5;5", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "26": { - "VisualLevel": 26, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4750, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3700000, - "RequiredTownHallLevel": 9, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 218, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 116, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "6;6;6", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "27": { - "VisualLevel": 27, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4820, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3800000, - "RequiredTownHallLevel": 9, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 226, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 120, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "6;6;6", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "28": { - "VisualLevel": 28, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4890, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3900000, - "RequiredTownHallLevel": 9, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 234, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 124, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "6;6;6", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "29": { - "VisualLevel": 29, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 4960, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4000000, - "RequiredTownHallLevel": 9, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 242, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 127, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "6;6;6", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "30": { - "VisualLevel": 30, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 5030, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4100000, - "RequiredTownHallLevel": 9, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 250, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 137, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "6;6;6", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "31": { - "VisualLevel": 31, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 5100, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4200000, - "RequiredTownHallLevel": 10, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 258, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 140, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", - "SpecialAbilitiesLevel": "7;7;7", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "32": { - "VisualLevel": 32, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 5170, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4300000, - "RequiredTownHallLevel": 10, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 266, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 143, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "33": { - "VisualLevel": 33, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 5240, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4400000, - "RequiredTownHallLevel": 10, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 274, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 146, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "34": { - "VisualLevel": 34, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 5310, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4500000, - "RequiredTownHallLevel": 10, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 282, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 149, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "35": { - "VisualLevel": 35, - "TID": "TID_WARMACHINE", - "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", - "Speed": 200, - "Hitpoints": 5380, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4500000, - "RequiredTownHallLevel": 10, - "AttackRange": 125, - "AttackSpeed": 1200, - "DPS": 290, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warmachine", - "BigPicture": "unit_warmachine_big", - "BigPictureSWF": "sc/info_warmachine.sc", - "SmallPicture": "unit_warmachine_small", - "SmallPictureSWF": "sc/ui.sc", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", - "AbilityIcon": "icon_hero_warmachine_ability1", - "AbilityBigPictureExportName": "unit_warmachine_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 160, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "WarmachineDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - } - }, - "Royal Champion": { - "1": { - "VisualLevel": 1, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2508, - "UpgradeTimeH": 8, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 70000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 340, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 110, - "StrengthWeight2": 31, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampion", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 1 - }, - "2": { - "VisualLevel": 2, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2550, - "UpgradeTimeH": 12, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 75000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 350, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 110, - "StrengthWeight2": 31, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampion", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 1 - }, - "3": { - "VisualLevel": 3, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2593, - "UpgradeTimeH": 16, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 80000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 360, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 110, - "StrengthWeight2": 31, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampion", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 2 - }, - "4": { - "VisualLevel": 4, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2635, - "UpgradeTimeH": 20, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 90000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 370, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 30, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 0, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 110, - "StrengthWeight2": 31, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 1, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampion", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 3 - }, - "5": { - "VisualLevel": 5, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2678, - "UpgradeTimeH": 44, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 100000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 375, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 1700, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 150, - "StrengthWeight2": 33, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 4 - }, - "6": { - "VisualLevel": 6, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2720, - "UpgradeTimeH": 66, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 110000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 380, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 1700, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 150, - "StrengthWeight2": 33, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 5 - }, - "7": { - "VisualLevel": 7, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2763, - "UpgradeTimeH": 78, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 120000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 385, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 1700, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 150, - "StrengthWeight2": 33, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 5 - }, - "8": { - "VisualLevel": 8, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2805, - "UpgradeTimeH": 90, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 130000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 390, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 1700, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 150, - "StrengthWeight2": 33, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 6 - }, - "9": { - "VisualLevel": 9, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2848, - "UpgradeTimeH": 102, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 140000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 396, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 32, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 1700, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 150, - "StrengthWeight2": 33, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 2, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 6 - }, - "10": { - "VisualLevel": 10, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2890, - "UpgradeTimeH": 108, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 150000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 402, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 160, - "StrengthWeight2": 35, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 7 - }, - "11": { - "VisualLevel": 11, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2933, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 160000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 408, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 160, - "StrengthWeight2": 35, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 7 - }, - "12": { - "VisualLevel": 12, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 2975, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 165000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 414, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 160, - "StrengthWeight2": 35, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 8 - }, - "13": { - "VisualLevel": 13, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3018, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 170000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 420, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 160, - "StrengthWeight2": 35, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 8 - }, - "14": { - "VisualLevel": 14, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3060, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 175000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 426, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 34, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 160, - "StrengthWeight2": 35, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 3, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 8 - }, - "15": { - "VisualLevel": 15, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3103, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 180000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 432, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2300, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 170, - "StrengthWeight2": 37, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 9 - }, - "16": { - "VisualLevel": 16, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3145, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 185000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 438, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2300, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 170, - "StrengthWeight2": 37, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 9 - }, - "17": { - "VisualLevel": 17, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3188, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 444, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2300, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 170, - "StrengthWeight2": 37, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 9 - }, - "18": { - "VisualLevel": 18, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3230, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 195000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 448, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2300, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 170, - "StrengthWeight2": 37, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 10 - }, - "19": { - "VisualLevel": 19, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3273, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 452, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 36, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2300, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 170, - "StrengthWeight2": 37, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 4, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 11 - }, - "20": { - "VisualLevel": 20, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3315, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 205000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 456, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2600, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 180, - "StrengthWeight2": 39, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 12 - }, - "21": { - "VisualLevel": 21, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3349, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 460, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2600, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 180, - "StrengthWeight2": 39, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 12 - }, - "22": { - "VisualLevel": 22, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3383, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 465, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2600, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 180, - "StrengthWeight2": 39, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 12 - }, - "23": { - "VisualLevel": 23, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3417, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 220000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 470, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2600, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 180, - "StrengthWeight2": 39, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 12 - }, - "24": { - "VisualLevel": 24, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3451, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 474, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 38, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2600, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 180, - "StrengthWeight2": 39, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 5, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 12 - }, - "25": { - "VisualLevel": 25, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3485, - "UpgradeTimeH": 174, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "RequiredTownHallLevel": 13, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 477, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2800, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 190, - "StrengthWeight2": 41, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 13 - }, - "26": { - "VisualLevel": 26, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3519, - "UpgradeTimeH": 174, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 235000, - "RequiredTownHallLevel": 14, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 480, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2800, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 190, - "StrengthWeight2": 41, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 13 - }, - "27": { - "VisualLevel": 27, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3553, - "UpgradeTimeH": 174, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "RequiredTownHallLevel": 14, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 483, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2800, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 190, - "StrengthWeight2": 41, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 14 - }, - "28": { - "VisualLevel": 28, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3587, - "UpgradeTimeH": 174, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "RequiredTownHallLevel": 14, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 486, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2800, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 190, - "StrengthWeight2": 41, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 14 - }, - "29": { - "VisualLevel": 29, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3621, - "UpgradeTimeH": 174, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 250000, - "RequiredTownHallLevel": 14, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 489, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 40, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 2800, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 190, - "StrengthWeight2": 41, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 6, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 14 - }, - "30": { - "VisualLevel": 30, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3655, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 260000, - "RequiredTownHallLevel": 14, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 492, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 43, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "31": { - "VisualLevel": 31, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3681, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 265000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 495, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 43, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "32": { - "VisualLevel": 32, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3706, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 270000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 498, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 43, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "33": { - "VisualLevel": 33, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3732, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 275000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 502, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 43, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "34": { - "VisualLevel": 34, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3757, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 280000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 506, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 42, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3000, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 43, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 7, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "35": { - "VisualLevel": 35, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3783, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 285000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 510, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3200, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 45, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "36": { - "VisualLevel": 36, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3808, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 290000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 514, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3200, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 45, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "37": { - "VisualLevel": 37, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3834, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 295000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 518, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3200, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 45, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "38": { - "VisualLevel": 38, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3859, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 300000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 522, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3200, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 45, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "39": { - "VisualLevel": 39, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3885, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 305000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 526, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 44, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3200, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 45, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 8, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "40": { - "VisualLevel": 40, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3910, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 315000, - "RequiredTownHallLevel": 15, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 530, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 47, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "41": { - "VisualLevel": 41, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3936, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 325000, - "RequiredTownHallLevel": 16, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 533, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityTime": 4000, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 47, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "42": { - "VisualLevel": 42, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3961, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 335000, - "RequiredTownHallLevel": 16, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 536, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 47, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "43": { - "VisualLevel": 43, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 3987, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 345000, - "RequiredTownHallLevel": 16, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 539, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 47, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "44": { - "VisualLevel": 44, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 4012, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 355000, - "RequiredTownHallLevel": 16, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 542, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 46, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3400, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 47, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 9, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - }, - "45": { - "VisualLevel": 45, - "TID": "TID_HERO_ROYAL_CHAMPION", - "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", - "Speed": 300, - "Hitpoints": 4038, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 355000, - "RequiredTownHallLevel": 16, - "AttackRange": 300, - "AttackSpeed": 1200, - "DPS": 545, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_warriorPrincess", - "BigPicture": "unit_royal_champion_big", - "BigPictureSWF": "sc/info_royal_champion.sc", - "SmallPicture": "unit_royal_champion_smalll", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "AmazonQueen_javelin", - "DeployEffect": "Hero Deploy", - "HitEffect": "AmazonQ ability hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": true, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "HealerWeight": 23, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 48, - "TrainingResource": "Elixir", - "CelebrateEffect": "Warrior Princess Scream", - "SleepOffsetX": 70, - "SleepOffsetY": "-40", - "PatrolRadius": 300, - "AbilityAffectsHero": true, - "AbilityOnce": true, - "AbilityCooldown": 0, - "AbilityHealthIncrease": 3600, - "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", - "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", - "AbilityIcon": "icon_hero_warriorPrincess_ability1", - "AbilityBigPictureExportName": "unit_royal_champion_ability_big", - "StrengthWeight": 200, - "StrengthWeight2": 49, - "AlertRadius": 1200, - "PreferedTargetBuildingClass": "Defense", - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 1000, - "TargetedEffectOffset": "-50", - "TriggersTraps": true, - "DefaultSkin": "WarriorPrincessDefault", - "UseAutoHeroAbility": true, - "NewTargetAttackDelay": 400, - "Gender": "F", - "SpecialAbilities": "RoyalChampionAbilityHeal", - "SpecialAbilitiesLevel": 10, - "AvoidNoiseInAttackPositionSelection": true, - "PreviewScenario": "HeroRoyalChampionLVL5", - "ItemSlotCount": 2, - "DefaultItems": "Seeking Shield; Protective Cloak;", - "MigrationGearLevel": 15 - } - }, - "Battle Copter": { - "1": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "2": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "3": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "4": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "5": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "6": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "7": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "8": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "9": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "10": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "11": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "12": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "13": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "14": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "15": { - "VisualLevel": 15, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2857, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 112, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 66, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "16": { - "VisualLevel": 16, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2885, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2700000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 116, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 69, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "17": { - "VisualLevel": 17, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2915, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2800000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 119, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 71, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "18": { - "VisualLevel": 18, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2943, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 2900000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 123, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 74, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "19": { - "VisualLevel": 19, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 2972, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3000000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 126, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 76, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "1;1;1", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "20": { - "VisualLevel": 20, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3003, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3100000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 130, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 86, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "21": { - "VisualLevel": 21, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3032, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3200000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 134, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 88, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "22": { - "VisualLevel": 22, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3062, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3300000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 137, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 91, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "23": { - "VisualLevel": 23, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3094, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3400000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 141, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 95, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "24": { - "VisualLevel": 24, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3124, - "UpgradeTimeH": 120, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3500000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 144, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 98, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "2;2;2", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "25": { - "VisualLevel": 25, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3155, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3600000, - "RequiredTownHallLevel": 8, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 148, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 108, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "26": { - "VisualLevel": 26, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3187, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3700000, - "RequiredTownHallLevel": 9, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 153, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 112, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "27": { - "VisualLevel": 27, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3220, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3800000, - "RequiredTownHallLevel": 9, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 157, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 116, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "28": { - "VisualLevel": 28, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3252, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 3900000, - "RequiredTownHallLevel": 9, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 162, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 120, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "29": { - "VisualLevel": 29, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3285, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4000000, - "RequiredTownHallLevel": 9, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 166, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 125, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "3;3;3", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "30": { - "VisualLevel": 30, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3318, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4100000, - "RequiredTownHallLevel": 9, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 171, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 136, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "31": { - "VisualLevel": 31, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3348, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4200000, - "RequiredTownHallLevel": 10, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 175, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 141, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "32": { - "VisualLevel": 32, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3375, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4300000, - "RequiredTownHallLevel": 10, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 180, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 146, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "33": { - "VisualLevel": 33, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3402, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4400000, - "RequiredTownHallLevel": 10, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 184, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 152, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "34": { - "VisualLevel": 34, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3429, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4500000, - "RequiredTownHallLevel": 10, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 189, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 157, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "4;4;4", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - }, - "35": { - "VisualLevel": 35, - "TID": "TID_HERO_BATTLE_COPTER", - "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", - "Speed": 180, - "Hitpoints": 3456, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir2", - "UpgradeCost": 4500000, - "RequiredTownHallLevel": 10, - "AttackRange": 600, - "AttackSpeed": 650, - "DPS": 193, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_hero_battlecopter", - "BigPicture": "unit_battlecopter_big", - "BigPictureSWF": "sc/info_battlecopter.sc", - "SmallPicture": "icon_hero_battlecopter_small", - "SmallPictureSWF": "sc/ui.sc", - "Projectile": "BattleCopterProjectile", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "IsJumper": false, - "MaxSearchRadiusForDefender": 900, - "HousingSpace": 25, - "SpecialAbilityEffect": "Building Ready", - "RegenerationTimeMinutes": 0, - "TrainingResource": "Elixir2", - "CelebrateEffect": "Warmachine Scream", - "SleepOffsetX": 0, - "SleepOffsetY": "-100", - "PatrolRadius": 300, - "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", - "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", - "AbilityIcon": "icon_hero_battlecopter_ability1", - "AbilityBigPictureExportName": "unit_battlecopter_ability_big", - "AbilityDelay": 0, - "StrengthWeight": 171, - "StrengthWeight2": 0, - "AlertRadius": 1200, - "FriendlyGroupWeight": 2100, - "EnemyGroupWeight": 2500, - "TargetedEffectOffset": 100, - "TriggersTraps": true, - "VillageType": 1, - "NoDefence": true, - "DefaultSkin": "BattleCopterDefault", - "UseAutoHeroAbility": true, - "Gender": "M", - "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", - "SpecialAbilitiesLevel": "5;5;5", - "AvoidNoiseInAttackPositionSelection": true, - "AbilityExtraPowerMaxLevel": 2 - } - } +{ + "Barbarian King": { + "1": { + "VisualLevel": 1, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1445, + "UpgradeTimeH": 4, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 5000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 102, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 0, + "AbilitySpeedBoost2": 0, + "AbilityDamageBoostPercent": 0, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 0, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 20, + "StrengthWeight2": 10, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKing", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "2": { + "VisualLevel": 2, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1481, + "UpgradeTimeH": 6, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 6000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 104, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 0, + "AbilitySpeedBoost2": 0, + "AbilityDamageBoostPercent": 0, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 0, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 20, + "StrengthWeight2": 10, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKing", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "3": { + "VisualLevel": 3, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1518, + "UpgradeTimeH": 8, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 7000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 105, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 0, + "AbilitySpeedBoost2": 0, + "AbilityDamageBoostPercent": 0, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 0, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 20, + "StrengthWeight2": 10, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKing", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "4": { + "VisualLevel": 4, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1556, + "UpgradeTimeH": 10, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 8000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 108, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 0, + "AbilitySpeedBoost2": 0, + "AbilityDamageBoostPercent": 0, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 0, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 20, + "StrengthWeight2": 10, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKing", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "5": { + "VisualLevel": 5, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1595, + "UpgradeTimeH": 12, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 9000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 110, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 18, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 120, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 6, + "AbilityDamageBoostOffset": 56, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 21, + "StrengthWeight2": 11, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "6": { + "VisualLevel": 6, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1635, + "UpgradeTimeH": 14, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 10000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 18, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 120, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 6, + "AbilityDamageBoostOffset": 56, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 21, + "StrengthWeight2": 11, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "7": { + "VisualLevel": 7, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1675, + "UpgradeTimeH": 16, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 11000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 115, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 18, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 120, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 6, + "AbilityDamageBoostOffset": 56, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 21, + "StrengthWeight2": 11, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "8": { + "VisualLevel": 8, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1717, + "UpgradeTimeH": 18, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 12000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 116, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 18, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 120, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 6, + "AbilityDamageBoostOffset": 56, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 21, + "StrengthWeight2": 11, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "9": { + "VisualLevel": 9, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1760, + "UpgradeTimeH": 20, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 13000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 119, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 18, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 120, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 6, + "AbilityDamageBoostOffset": 56, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 21, + "StrengthWeight2": 11, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "10": { + "VisualLevel": 10, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1805, + "UpgradeTimeH": 22, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 14000, + "RequiredTownHallLevel": 7, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 122, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 19, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 124, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 8, + "AbilityDamageBoostOffset": 101, + "AbilityHealthIncrease": 620, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 22, + "StrengthWeight2": 12, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 1 + }, + "11": { + "VisualLevel": 11, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1850, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 15000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 124, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 19, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 124, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 8, + "AbilityDamageBoostOffset": 101, + "AbilityHealthIncrease": 620, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 22, + "StrengthWeight2": 12, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "12": { + "VisualLevel": 12, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1896, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 16000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 127, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 19, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 124, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 8, + "AbilityDamageBoostOffset": 101, + "AbilityHealthIncrease": 620, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 22, + "StrengthWeight2": 12, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "13": { + "VisualLevel": 13, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1943, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 17000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 129, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 19, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 124, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 8, + "AbilityDamageBoostOffset": 101, + "AbilityHealthIncrease": 620, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 22, + "StrengthWeight2": 12, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "14": { + "VisualLevel": 14, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 1992, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 18500, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 132, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 19, + "AbilitySpeedBoost2": 9, + "AbilityDamageBoostPercent": 124, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 8, + "AbilityDamageBoostOffset": 101, + "AbilityHealthIncrease": 620, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 22, + "StrengthWeight2": 12, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "15": { + "VisualLevel": 15, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2042, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 20000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 134, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 20, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 128, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 10, + "AbilityDamageBoostOffset": 147, + "AbilityHealthIncrease": 752, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 23, + "StrengthWeight2": 13, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "16": { + "VisualLevel": 16, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2093, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 21500, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 137, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 20, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 128, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 10, + "AbilityDamageBoostOffset": 147, + "AbilityHealthIncrease": 752, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 23, + "StrengthWeight2": 13, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "17": { + "VisualLevel": 17, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2145, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 23000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 139, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 20, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 128, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 10, + "AbilityDamageBoostOffset": 147, + "AbilityHealthIncrease": 752, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 23, + "StrengthWeight2": 13, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "18": { + "VisualLevel": 18, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2198, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 24500, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 143, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 20, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 128, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 10, + "AbilityDamageBoostOffset": 147, + "AbilityHealthIncrease": 752, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 23, + "StrengthWeight2": 13, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "19": { + "VisualLevel": 19, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2253, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 26000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 145, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 20, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 128, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 10, + "AbilityDamageBoostOffset": 147, + "AbilityHealthIncrease": 752, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 23, + "StrengthWeight2": 13, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "20": { + "VisualLevel": 20, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2309, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 28000, + "RequiredTownHallLevel": 8, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 148, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 21, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 132, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 12, + "AbilityDamageBoostOffset": 195, + "AbilityHealthIncrease": 899, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 24, + "StrengthWeight2": 14, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 2 + }, + "21": { + "VisualLevel": 21, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2367, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 29000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 151, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 21, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 132, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 12, + "AbilityDamageBoostOffset": 195, + "AbilityHealthIncrease": 899, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 24, + "StrengthWeight2": 14, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 3 + }, + "22": { + "VisualLevel": 22, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2427, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 31000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 154, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 21, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 132, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 12, + "AbilityDamageBoostOffset": 195, + "AbilityHealthIncrease": 899, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 24, + "StrengthWeight2": 14, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 3 + }, + "23": { + "VisualLevel": 23, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2487, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 32000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 157, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 21, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 132, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 12, + "AbilityDamageBoostOffset": 195, + "AbilityHealthIncrease": 899, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 24, + "StrengthWeight2": 14, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 3 + }, + "24": { + "VisualLevel": 24, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2549, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 34000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 161, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 21, + "AbilitySpeedBoost2": 10, + "AbilityDamageBoostPercent": 132, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 12, + "AbilityDamageBoostOffset": 195, + "AbilityHealthIncrease": 899, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 24, + "StrengthWeight2": 14, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 3 + }, + "25": { + "VisualLevel": 25, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2613, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 35000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 164, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 22, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 136, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 14, + "AbilityDamageBoostOffset": 245, + "AbilityHealthIncrease": 1063, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 25, + "StrengthWeight2": 15, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 3 + }, + "26": { + "VisualLevel": 26, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2678, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 37000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 167, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 22, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 136, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 14, + "AbilityDamageBoostOffset": 245, + "AbilityHealthIncrease": 1063, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 25, + "StrengthWeight2": 15, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 4 + }, + "27": { + "VisualLevel": 27, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2746, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 38000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 170, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 22, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 136, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 14, + "AbilityDamageBoostOffset": 245, + "AbilityHealthIncrease": 1063, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 25, + "StrengthWeight2": 15, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 4 + }, + "28": { + "VisualLevel": 28, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2814, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 40000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 173, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 22, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 136, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 14, + "AbilityDamageBoostOffset": 245, + "AbilityHealthIncrease": 1063, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 25, + "StrengthWeight2": 15, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 4 + }, + "29": { + "VisualLevel": 29, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2885, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 41000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 177, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 22, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 136, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 14, + "AbilityDamageBoostOffset": 245, + "AbilityHealthIncrease": 1063, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 25, + "StrengthWeight2": 15, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 4 + }, + "30": { + "VisualLevel": 30, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 2956, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 43000, + "RequiredTownHallLevel": 9, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 181, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 23, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 140, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 16, + "AbilityDamageBoostOffset": 298, + "AbilityHealthIncrease": 1247, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 26, + "StrengthWeight2": 16, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 4 + }, + "31": { + "VisualLevel": 31, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3030, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 44000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 184, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 23, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 140, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 16, + "AbilityDamageBoostOffset": 298, + "AbilityHealthIncrease": 1247, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 26, + "StrengthWeight2": 16, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 5 + }, + "32": { + "VisualLevel": 32, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3107, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 46000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 188, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 23, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 140, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 16, + "AbilityDamageBoostOffset": 298, + "AbilityHealthIncrease": 1247, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 26, + "StrengthWeight2": 16, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 5 + }, + "33": { + "VisualLevel": 33, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3184, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 47000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 192, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 23, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 140, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 16, + "AbilityDamageBoostOffset": 298, + "AbilityHealthIncrease": 1247, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 26, + "StrengthWeight2": 16, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 5 + }, + "34": { + "VisualLevel": 34, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3264, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 49000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 196, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 23, + "AbilitySpeedBoost2": 11, + "AbilityDamageBoostPercent": 140, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 16, + "AbilityDamageBoostOffset": 298, + "AbilityHealthIncrease": 1247, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 26, + "StrengthWeight2": 16, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 5 + }, + "35": { + "VisualLevel": 35, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3346, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 50000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 200, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 24, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 144, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 18, + "AbilityDamageBoostOffset": 354, + "AbilityHealthIncrease": 1455, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 27, + "StrengthWeight2": 17, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 5 + }, + "36": { + "VisualLevel": 36, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3429, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 52000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 203, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 24, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 144, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 18, + "AbilityDamageBoostOffset": 354, + "AbilityHealthIncrease": 1455, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 27, + "StrengthWeight2": 17, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 6 + }, + "37": { + "VisualLevel": 37, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3515, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 53000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 207, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 24, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 144, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 18, + "AbilityDamageBoostOffset": 354, + "AbilityHealthIncrease": 1455, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 27, + "StrengthWeight2": 17, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 6 + }, + "38": { + "VisualLevel": 38, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3602, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 55000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 212, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 24, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 144, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 18, + "AbilityDamageBoostOffset": 354, + "AbilityHealthIncrease": 1455, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 27, + "StrengthWeight2": 17, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 6 + }, + "39": { + "VisualLevel": 39, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3692, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 56000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 216, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 24, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 144, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 18, + "AbilityDamageBoostOffset": 354, + "AbilityHealthIncrease": 1455, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 27, + "StrengthWeight2": 17, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 6 + }, + "40": { + "VisualLevel": 40, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3785, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 60000, + "RequiredTownHallLevel": 10, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 220, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 25, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 150, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 20, + "AbilityDamageBoostOffset": 414, + "AbilityHealthIncrease": 1692, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 28, + "StrengthWeight2": 18, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 6 + }, + "41": { + "VisualLevel": 41, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3879, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 64000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 234, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 25, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 150, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 20, + "AbilityDamageBoostOffset": 414, + "AbilityHealthIncrease": 1692, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 28, + "StrengthWeight2": 18, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 7 + }, + "42": { + "VisualLevel": 42, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 3976, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 68000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 239, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 25, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 150, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 20, + "AbilityDamageBoostOffset": 414, + "AbilityHealthIncrease": 1692, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 28, + "StrengthWeight2": 18, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 7 + }, + "43": { + "VisualLevel": 43, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4076, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 72000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 244, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 25, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 150, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 20, + "AbilityDamageBoostOffset": 414, + "AbilityHealthIncrease": 1692, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 28, + "StrengthWeight2": 18, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 7 + }, + "44": { + "VisualLevel": 44, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4178, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 76000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 249, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 25, + "AbilitySpeedBoost2": 12, + "AbilityDamageBoostPercent": 150, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 20, + "AbilityDamageBoostOffset": 414, + "AbilityHealthIncrease": 1692, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 28, + "StrengthWeight2": 18, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 7 + }, + "45": { + "VisualLevel": 45, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4282, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 80000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 254, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 26, + "AbilitySpeedBoost2": 13, + "AbilityDamageBoostPercent": 155, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 22, + "AbilityDamageBoostOffset": 478, + "AbilityHealthIncrease": 1963, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 29, + "StrengthWeight2": 19, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 7 + }, + "46": { + "VisualLevel": 46, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4389, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 84000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 259, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 26, + "AbilitySpeedBoost2": 13, + "AbilityDamageBoostPercent": 155, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 22, + "AbilityDamageBoostOffset": 478, + "AbilityHealthIncrease": 1963, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 29, + "StrengthWeight2": 19, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 8 + }, + "47": { + "VisualLevel": 47, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4499, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 88000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 265, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 26, + "AbilitySpeedBoost2": 13, + "AbilityDamageBoostPercent": 155, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 22, + "AbilityDamageBoostOffset": 478, + "AbilityHealthIncrease": 1963, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 29, + "StrengthWeight2": 19, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 8 + }, + "48": { + "VisualLevel": 48, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4611, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 92000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 270, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 26, + "AbilitySpeedBoost2": 13, + "AbilityDamageBoostPercent": 155, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 22, + "AbilityDamageBoostOffset": 478, + "AbilityHealthIncrease": 1963, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 29, + "StrengthWeight2": 19, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 8 + }, + "49": { + "VisualLevel": 49, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4727, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 96000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 276, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 26, + "AbilitySpeedBoost2": 13, + "AbilityDamageBoostPercent": 155, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 22, + "AbilityDamageBoostOffset": 478, + "AbilityHealthIncrease": 1963, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 29, + "StrengthWeight2": 19, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 8 + }, + "50": { + "VisualLevel": 50, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4845, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 100000, + "RequiredTownHallLevel": 11, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 282, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 27, + "AbilitySpeedBoost2": 14, + "AbilityDamageBoostPercent": 160, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 24, + "AbilityDamageBoostOffset": 546, + "AbilityHealthIncrease": 2263, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 30, + "StrengthWeight2": 20, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 8 + }, + "51": { + "VisualLevel": 51, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 4967, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 105000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 288, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 27, + "AbilitySpeedBoost2": 14, + "AbilityDamageBoostPercent": 160, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 24, + "AbilityDamageBoostOffset": 546, + "AbilityHealthIncrease": 2263, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 30, + "StrengthWeight2": 20, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 9 + }, + "52": { + "VisualLevel": 52, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5092, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 110000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 294, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 27, + "AbilitySpeedBoost2": 14, + "AbilityDamageBoostPercent": 160, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 24, + "AbilityDamageBoostOffset": 546, + "AbilityHealthIncrease": 2263, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 30, + "StrengthWeight2": 20, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 9 + }, + "53": { + "VisualLevel": 53, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5219, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 115000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 300, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 27, + "AbilitySpeedBoost2": 14, + "AbilityDamageBoostPercent": 160, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 24, + "AbilityDamageBoostOffset": 546, + "AbilityHealthIncrease": 2263, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 30, + "StrengthWeight2": 20, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 9 + }, + "54": { + "VisualLevel": 54, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5350, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 120000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 307, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 27, + "AbilitySpeedBoost2": 14, + "AbilityDamageBoostPercent": 160, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 24, + "AbilityDamageBoostOffset": 546, + "AbilityHealthIncrease": 2263, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 30, + "StrengthWeight2": 20, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 9 + }, + "55": { + "VisualLevel": 55, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5484, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 125000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 314, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 28, + "AbilitySpeedBoost2": 15, + "AbilityDamageBoostPercent": 165, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 26, + "AbilityDamageBoostOffset": 618, + "AbilityHealthIncrease": 2592, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 31, + "StrengthWeight2": 21, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 9 + }, + "56": { + "VisualLevel": 56, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5622, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 130000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 320, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 28, + "AbilitySpeedBoost2": 15, + "AbilityDamageBoostPercent": 165, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 26, + "AbilityDamageBoostOffset": 618, + "AbilityHealthIncrease": 2592, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 31, + "StrengthWeight2": 21, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 10 + }, + "57": { + "VisualLevel": 57, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5763, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 135000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 327, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 28, + "AbilitySpeedBoost2": 15, + "AbilityDamageBoostPercent": 165, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 26, + "AbilityDamageBoostOffset": 618, + "AbilityHealthIncrease": 2592, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 31, + "StrengthWeight2": 21, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 10 + }, + "58": { + "VisualLevel": 58, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 5908, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 140000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 334, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 28, + "AbilitySpeedBoost2": 15, + "AbilityDamageBoostPercent": 165, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 26, + "AbilityDamageBoostOffset": 618, + "AbilityHealthIncrease": 2592, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 31, + "StrengthWeight2": 21, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 10 + }, + "59": { + "VisualLevel": 59, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 6055, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 145000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 341, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 28, + "AbilitySpeedBoost2": 15, + "AbilityDamageBoostPercent": 165, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 26, + "AbilityDamageBoostOffset": 618, + "AbilityHealthIncrease": 2592, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 31, + "StrengthWeight2": 21, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 10 + }, + "60": { + "VisualLevel": 60, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 6208, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 150000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 349, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 29, + "AbilitySpeedBoost2": 16, + "AbilityDamageBoostPercent": 170, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 28, + "AbilityDamageBoostOffset": 694, + "AbilityHealthIncrease": 2980, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 32, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 10 + }, + "61": { + "VisualLevel": 61, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 6363, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 155000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 355, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 29, + "AbilitySpeedBoost2": 16, + "AbilityDamageBoostPercent": 170, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 28, + "AbilityDamageBoostOffset": 694, + "AbilityHealthIncrease": 2980, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 32, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 11 + }, + "62": { + "VisualLevel": 62, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 6522, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 160000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 362, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 29, + "AbilitySpeedBoost2": 16, + "AbilityDamageBoostPercent": 170, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 28, + "AbilityDamageBoostOffset": 694, + "AbilityHealthIncrease": 2980, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 32, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 11 + }, + "63": { + "VisualLevel": 63, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 6685, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 165000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 370, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 29, + "AbilitySpeedBoost2": 16, + "AbilityDamageBoostPercent": 170, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 28, + "AbilityDamageBoostOffset": 694, + "AbilityHealthIncrease": 2980, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 32, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 11 + }, + "64": { + "VisualLevel": 64, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 6853, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 170000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 377, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 29, + "AbilitySpeedBoost2": 16, + "AbilityDamageBoostPercent": 170, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 28, + "AbilityDamageBoostOffset": 694, + "AbilityHealthIncrease": 2980, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 32, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 11 + }, + "65": { + "VisualLevel": 65, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 7024, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 175000, + "RequiredTownHallLevel": 12, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 385, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 30, + "AbilitySpeedBoost2": 17, + "AbilityDamageBoostPercent": 175, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 30, + "AbilityDamageBoostOffset": 770, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 33, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 11 + }, + "66": { + "VisualLevel": 66, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 7200, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 180000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 393, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 30, + "AbilitySpeedBoost2": 17, + "AbilityDamageBoostPercent": 175, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 30, + "AbilityDamageBoostOffset": 770, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 33, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 12 + }, + "67": { + "VisualLevel": 67, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 7378, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 185000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 400, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 30, + "AbilitySpeedBoost2": 17, + "AbilityDamageBoostPercent": 175, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 30, + "AbilityDamageBoostOffset": 770, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 33, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 12 + }, + "68": { + "VisualLevel": 68, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 7557, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 408, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 30, + "AbilitySpeedBoost2": 17, + "AbilityDamageBoostPercent": 175, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 30, + "AbilityDamageBoostOffset": 770, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 33, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 12 + }, + "69": { + "VisualLevel": 69, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 7735, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 195000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 417, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 30, + "AbilitySpeedBoost2": 17, + "AbilityDamageBoostPercent": 175, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 30, + "AbilityDamageBoostOffset": 770, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 33, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 12 + }, + "70": { + "VisualLevel": 70, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 7905, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 425, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 31, + "AbilitySpeedBoost2": 18, + "AbilityDamageBoostPercent": 180, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 32, + "AbilityDamageBoostOffset": 846, + "AbilityHealthIncrease": 3850, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 34, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 12 + }, + "71": { + "VisualLevel": 71, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 8075, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 205000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 434, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 31, + "AbilitySpeedBoost2": 18, + "AbilityDamageBoostPercent": 180, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 32, + "AbilityDamageBoostOffset": 846, + "AbilityHealthIncrease": 3850, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 34, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 13 + }, + "72": { + "VisualLevel": 72, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 8245, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 442, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 31, + "AbilitySpeedBoost2": 18, + "AbilityDamageBoostPercent": 180, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 32, + "AbilityDamageBoostOffset": 846, + "AbilityHealthIncrease": 3850, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 34, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 13 + }, + "73": { + "VisualLevel": 73, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 8415, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 451, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 31, + "AbilitySpeedBoost2": 18, + "AbilityDamageBoostPercent": 180, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 32, + "AbilityDamageBoostOffset": 846, + "AbilityHealthIncrease": 3850, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 34, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 13 + }, + "74": { + "VisualLevel": 74, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 8585, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 220000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 459, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 31, + "AbilitySpeedBoost2": 18, + "AbilityDamageBoostPercent": 180, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 32, + "AbilityDamageBoostOffset": 846, + "AbilityHealthIncrease": 3850, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 34, + "StrengthWeight2": 22, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 13 + }, + "75": { + "VisualLevel": 75, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 8755, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "RequiredTownHallLevel": 13, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 468, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 32, + "AbilitySpeedBoost2": 19, + "AbilityDamageBoostPercent": 185, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 34, + "AbilityDamageBoostOffset": 922, + "AbilityHealthIncrease": 4300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 35, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 13 + }, + "76": { + "VisualLevel": 76, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 8917, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "RequiredTownHallLevel": 14, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 475, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 32, + "AbilitySpeedBoost2": 19, + "AbilityDamageBoostPercent": 185, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 34, + "AbilityDamageBoostOffset": 922, + "AbilityHealthIncrease": 4300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 35, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 14 + }, + "77": { + "VisualLevel": 77, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9078, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 235000, + "RequiredTownHallLevel": 14, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 483, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 32, + "AbilitySpeedBoost2": 19, + "AbilityDamageBoostPercent": 185, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 34, + "AbilityDamageBoostOffset": 922, + "AbilityHealthIncrease": 4300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 35, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 14 + }, + "78": { + "VisualLevel": 78, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9240, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "RequiredTownHallLevel": 14, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 490, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 32, + "AbilitySpeedBoost2": 19, + "AbilityDamageBoostPercent": 185, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 34, + "AbilityDamageBoostOffset": 922, + "AbilityHealthIncrease": 4300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 35, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 14 + }, + "79": { + "VisualLevel": 79, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9401, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "RequiredTownHallLevel": 14, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 498, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 32, + "AbilitySpeedBoost2": 19, + "AbilityDamageBoostPercent": 185, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 34, + "AbilityDamageBoostOffset": 922, + "AbilityHealthIncrease": 4300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 35, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 14 + }, + "80": { + "VisualLevel": 80, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9563, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 250000, + "RequiredTownHallLevel": 14, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 506, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 33, + "AbilitySpeedBoost2": 20, + "AbilityDamageBoostPercent": 190, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 36, + "AbilityDamageBoostOffset": 990, + "AbilityHealthIncrease": 4700, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 36, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 14 + }, + "81": { + "VisualLevel": 81, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9690, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 255000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 513, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 33, + "AbilitySpeedBoost2": 20, + "AbilityDamageBoostPercent": 190, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 36, + "AbilityDamageBoostOffset": 990, + "AbilityHealthIncrease": 4700, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 36, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "82": { + "VisualLevel": 82, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9818, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 260000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 519, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 33, + "AbilitySpeedBoost2": 20, + "AbilityDamageBoostPercent": 190, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 36, + "AbilityDamageBoostOffset": 990, + "AbilityHealthIncrease": 4700, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 36, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "83": { + "VisualLevel": 83, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 9945, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 265000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 526, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 33, + "AbilitySpeedBoost2": 20, + "AbilityDamageBoostPercent": 190, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 36, + "AbilityDamageBoostOffset": 990, + "AbilityHealthIncrease": 4700, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 36, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "84": { + "VisualLevel": 84, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10073, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 270000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 533, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 33, + "AbilitySpeedBoost2": 20, + "AbilityDamageBoostPercent": 190, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 36, + "AbilityDamageBoostOffset": 990, + "AbilityHealthIncrease": 4700, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 36, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "85": { + "VisualLevel": 85, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10200, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 275000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 540, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 34, + "AbilitySpeedBoost2": 21, + "AbilityDamageBoostPercent": 195, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 38, + "AbilityDamageBoostOffset": 1050, + "AbilityHealthIncrease": 5000, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 37, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "86": { + "VisualLevel": 86, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10328, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 278000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 547, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 34, + "AbilitySpeedBoost2": 21, + "AbilityDamageBoostPercent": 195, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 38, + "AbilityDamageBoostOffset": 1050, + "AbilityHealthIncrease": 5000, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 37, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "87": { + "VisualLevel": 87, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10455, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 280000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 553, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 34, + "AbilitySpeedBoost2": 21, + "AbilityDamageBoostPercent": 195, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 38, + "AbilityDamageBoostOffset": 1050, + "AbilityHealthIncrease": 5000, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 37, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "88": { + "VisualLevel": 88, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10583, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 282000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 560, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 34, + "AbilitySpeedBoost2": 21, + "AbilityDamageBoostPercent": 195, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 38, + "AbilityDamageBoostOffset": 1050, + "AbilityHealthIncrease": 5000, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 37, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "89": { + "VisualLevel": 89, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10710, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 285000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 567, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 34, + "AbilitySpeedBoost2": 21, + "AbilityDamageBoostPercent": 195, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 38, + "AbilityDamageBoostOffset": 1050, + "AbilityHealthIncrease": 5000, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 37, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "90": { + "VisualLevel": 90, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10838, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 290000, + "RequiredTownHallLevel": 15, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 574, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 35, + "AbilitySpeedBoost2": 22, + "AbilityDamageBoostPercent": 200, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 40, + "AbilityDamageBoostOffset": 1100, + "AbilityHealthIncrease": 5300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 38, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "91": { + "VisualLevel": 91, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 10965, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 300000, + "RequiredTownHallLevel": 16, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 581, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 35, + "AbilitySpeedBoost2": 22, + "AbilityDamageBoostPercent": 200, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 40, + "AbilityDamageBoostOffset": 1100, + "AbilityHealthIncrease": 5300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 38, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "92": { + "VisualLevel": 92, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 11093, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 310000, + "RequiredTownHallLevel": 16, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 587, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 35, + "AbilitySpeedBoost2": 22, + "AbilityDamageBoostPercent": 200, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 40, + "AbilityDamageBoostOffset": 1100, + "AbilityHealthIncrease": 5300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 38, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "93": { + "VisualLevel": 93, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 11220, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 320000, + "RequiredTownHallLevel": 16, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 594, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 35, + "AbilitySpeedBoost2": 22, + "AbilityDamageBoostPercent": 200, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 40, + "AbilityDamageBoostOffset": 1100, + "AbilityHealthIncrease": 5300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 38, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "94": { + "VisualLevel": 94, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 11348, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 330000, + "RequiredTownHallLevel": 16, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 601, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 35, + "AbilitySpeedBoost2": 22, + "AbilityDamageBoostPercent": 200, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 40, + "AbilityDamageBoostOffset": 1100, + "AbilityHealthIncrease": 5300, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 38, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + }, + "95": { + "VisualLevel": 95, + "TID": "TID_BARBARIAN_KING", + "InfoTID": "TID_HERO_INSTRUCTIONS_BARBARIAN", + "Speed": 200, + "Hitpoints": 11475, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 330000, + "RequiredTownHallLevel": 16, + "AttackRange": 100, + "AttackSpeed": 1200, + "DPS": 608, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_barbarianKing", + "BigPicture": "unit_barbarianKing_big", + "BigPictureSWF": "sc/info_barbarian.sc", + "SmallPicture": "unit_barbarianKing_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Barbarian King Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 21, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 48, + "TrainingResource": "Elixir", + "CelebrateEffect": "Barbarian King Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 10000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySpeedBoost": 36, + "AbilitySpeedBoost2": 23, + "AbilityDamageBoostPercent": 205, + "AbilitySummonTroop": "Barbarian", + "AbilitySummonTroopCount": 42, + "AbilityDamageBoostOffset": 1150, + "AbilityHealthIncrease": 5600, + "AbilityTID": "TID_HERO_ABILITY_BARBARIAN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_BARBARIAN_DESC", + "AbilityIcon": "icon_hero_barbarianKing_ability1", + "AbilityBigPictureExportName": "unit_barbarianKing_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 39, + "StrengthWeight2": 23, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "AbilityAffectsSummonedUnits": true, + "DefaultSkin": "BarbarianKingDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "BarbarianKingAbilityHeal", + "SpecialAbilitiesLevel": 20, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroKingLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Barbarian Crown; Iron Fist;", + "MigrationGearLevel": 15 + } + }, + "Archer Queen": { + "1": { + "VisualLevel": 1, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 580, + "UpgradeTimeH": 4, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 10000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 136, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 0, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 50, + "StrengthWeight2": 28, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueen", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "2": { + "VisualLevel": 2, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 592, + "UpgradeTimeH": 6, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 11000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 139, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 0, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 50, + "StrengthWeight2": 28, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueen", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "3": { + "VisualLevel": 3, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 604, + "UpgradeTimeH": 8, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 12000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 143, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 0, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 50, + "StrengthWeight2": 28, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueen", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "4": { + "VisualLevel": 4, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 617, + "UpgradeTimeH": 10, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 13000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 146, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 10, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 0, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 0, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 50, + "StrengthWeight2": 28, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueen", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "5": { + "VisualLevel": 5, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 630, + "UpgradeTimeH": 12, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 14000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 150, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 5, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 300, + "AbilityHealthIncrease": 150, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 51, + "StrengthWeight2": 29, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "6": { + "VisualLevel": 6, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 643, + "UpgradeTimeH": 14, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 15000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 154, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 5, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 300, + "AbilityHealthIncrease": 150, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 51, + "StrengthWeight2": 29, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "7": { + "VisualLevel": 7, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 657, + "UpgradeTimeH": 16, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 16000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 157, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 5, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 300, + "AbilityHealthIncrease": 150, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 51, + "StrengthWeight2": 29, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "8": { + "VisualLevel": 8, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 670, + "UpgradeTimeH": 18, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 17000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 162, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 5, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 300, + "AbilityHealthIncrease": 150, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 51, + "StrengthWeight2": 29, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "9": { + "VisualLevel": 9, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 685, + "UpgradeTimeH": 20, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 18000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 165, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 12, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 5, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 300, + "AbilityHealthIncrease": 150, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 51, + "StrengthWeight2": 29, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "10": { + "VisualLevel": 10, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 699, + "UpgradeTimeH": 22, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 19000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 169, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 6, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 355, + "AbilityHealthIncrease": 175, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 52, + "StrengthWeight2": 30, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 1 + }, + "11": { + "VisualLevel": 11, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 714, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 20000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 173, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 6, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 355, + "AbilityHealthIncrease": 175, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 52, + "StrengthWeight2": 30, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "12": { + "VisualLevel": 12, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 729, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 21000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 178, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 6, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 355, + "AbilityHealthIncrease": 175, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 52, + "StrengthWeight2": 30, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "13": { + "VisualLevel": 13, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 744, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 22000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 183, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 6, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 355, + "AbilityHealthIncrease": 175, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 52, + "StrengthWeight2": 30, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "14": { + "VisualLevel": 14, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 759, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 23000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 187, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 14, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 3800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 6, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 355, + "AbilityHealthIncrease": 175, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 52, + "StrengthWeight2": 30, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "15": { + "VisualLevel": 15, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 775, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 24000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 192, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 7, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 416, + "AbilityHealthIncrease": 200, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 53, + "StrengthWeight2": 31, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "16": { + "VisualLevel": 16, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 792, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 25000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 196, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 7, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 416, + "AbilityHealthIncrease": 200, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 53, + "StrengthWeight2": 31, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "17": { + "VisualLevel": 17, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 808, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 27000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 201, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 7, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 416, + "AbilityHealthIncrease": 200, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 53, + "StrengthWeight2": 31, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "18": { + "VisualLevel": 18, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 826, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 28000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 207, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 7, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 416, + "AbilityHealthIncrease": 200, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 53, + "StrengthWeight2": 31, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "19": { + "VisualLevel": 19, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 842, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 30000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 212, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl1", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 16, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 7, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 416, + "AbilityHealthIncrease": 200, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 53, + "StrengthWeight2": 31, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "20": { + "VisualLevel": 20, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 861, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 31000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 217, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 8, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 483, + "AbilityHealthIncrease": 225, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 54, + "StrengthWeight2": 32, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 2 + }, + "21": { + "VisualLevel": 21, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 878, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 33000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 223, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 8, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 483, + "AbilityHealthIncrease": 225, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 54, + "StrengthWeight2": 32, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 3 + }, + "22": { + "VisualLevel": 22, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 897, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 34000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 228, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 8, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 483, + "AbilityHealthIncrease": 225, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 54, + "StrengthWeight2": 32, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 3 + }, + "23": { + "VisualLevel": 23, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 916, + "UpgradeTimeH": 48, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 36000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 234, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 8, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 483, + "AbilityHealthIncrease": 225, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 54, + "StrengthWeight2": 32, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 3 + }, + "24": { + "VisualLevel": 24, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 935, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 37000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 240, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 18, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 8, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 483, + "AbilityHealthIncrease": 225, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 54, + "StrengthWeight2": 32, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 3 + }, + "25": { + "VisualLevel": 25, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 954, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 39000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 246, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 9, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 557, + "AbilityHealthIncrease": 250, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 55, + "StrengthWeight2": 33, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 3 + }, + "26": { + "VisualLevel": 26, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 974, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 40000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 252, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 9, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 557, + "AbilityHealthIncrease": 250, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 55, + "StrengthWeight2": 33, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 4 + }, + "27": { + "VisualLevel": 27, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 995, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 42000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 258, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 9, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 557, + "AbilityHealthIncrease": 250, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 55, + "StrengthWeight2": 33, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 4 + }, + "28": { + "VisualLevel": 28, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1016, + "UpgradeTimeH": 60, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 43000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 264, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 9, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 557, + "AbilityHealthIncrease": 250, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 55, + "StrengthWeight2": 33, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 4 + }, + "29": { + "VisualLevel": 29, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1038, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 45000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 271, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 9, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 557, + "AbilityHealthIncrease": 250, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 55, + "StrengthWeight2": 33, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 4 + }, + "30": { + "VisualLevel": 30, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1059, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 47000, + "RequiredTownHallLevel": 9, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 278, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 10, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 638, + "AbilityHealthIncrease": 275, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 56, + "StrengthWeight2": 34, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 4 + }, + "31": { + "VisualLevel": 31, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1082, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 49000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 285, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 10, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 638, + "AbilityHealthIncrease": 275, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 56, + "StrengthWeight2": 34, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 5 + }, + "32": { + "VisualLevel": 32, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1104, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 51000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 292, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 10, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 638, + "AbilityHealthIncrease": 275, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 56, + "StrengthWeight2": 34, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 5 + }, + "33": { + "VisualLevel": 33, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1127, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 53000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 299, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 10, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 638, + "AbilityHealthIncrease": 275, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 56, + "StrengthWeight2": 34, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 5 + }, + "34": { + "VisualLevel": 34, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1151, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 55000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 307, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 10, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 638, + "AbilityHealthIncrease": 275, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 56, + "StrengthWeight2": 34, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 5 + }, + "35": { + "VisualLevel": 35, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1175, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 57000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 315, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 11, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 725, + "AbilityHealthIncrease": 300, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 57, + "StrengthWeight2": 35, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 5 + }, + "36": { + "VisualLevel": 36, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1200, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 59000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 322, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 11, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 725, + "AbilityHealthIncrease": 300, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 57, + "StrengthWeight2": 35, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 6 + }, + "37": { + "VisualLevel": 37, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1226, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 61000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 331, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 11, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 725, + "AbilityHealthIncrease": 300, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 57, + "StrengthWeight2": 35, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 6 + }, + "38": { + "VisualLevel": 38, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1251, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 63000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 338, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 11, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 725, + "AbilityHealthIncrease": 300, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 57, + "StrengthWeight2": 35, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 6 + }, + "39": { + "VisualLevel": 39, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1278, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 65000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 347, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 4800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 11, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 725, + "AbilityHealthIncrease": 300, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 57, + "StrengthWeight2": 35, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 6 + }, + "40": { + "VisualLevel": 40, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1304, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 68000, + "RequiredTownHallLevel": 10, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 356, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl2", + "RageProjectile": "ArcherQueen arrow rage", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 12, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 819, + "AbilityHealthIncrease": 325, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 58, + "StrengthWeight2": 36, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 6 + }, + "41": { + "VisualLevel": 41, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1331, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 72000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 365, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 12, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 819, + "AbilityHealthIncrease": 325, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 58, + "StrengthWeight2": 36, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 7 + }, + "42": { + "VisualLevel": 42, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1359, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 75000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 374, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 12, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 819, + "AbilityHealthIncrease": 325, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 58, + "StrengthWeight2": 36, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 7 + }, + "43": { + "VisualLevel": 43, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1388, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 79000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 383, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 12, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 819, + "AbilityHealthIncrease": 325, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 58, + "StrengthWeight2": 36, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 7 + }, + "44": { + "VisualLevel": 44, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1417, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 82000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 393, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 12, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 819, + "AbilityHealthIncrease": 325, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 58, + "StrengthWeight2": 36, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 7 + }, + "45": { + "VisualLevel": 45, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1447, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 86000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 403, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 13, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 920, + "AbilityHealthIncrease": 350, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 59, + "StrengthWeight2": 37, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 7 + }, + "46": { + "VisualLevel": 46, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1478, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 89000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 413, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 13, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 920, + "AbilityHealthIncrease": 350, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 59, + "StrengthWeight2": 37, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 8 + }, + "47": { + "VisualLevel": 47, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1508, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 93000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 423, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 13, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 920, + "AbilityHealthIncrease": 350, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 59, + "StrengthWeight2": 37, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 8 + }, + "48": { + "VisualLevel": 48, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1540, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 98000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 434, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 13, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 920, + "AbilityHealthIncrease": 350, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 59, + "StrengthWeight2": 37, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 8 + }, + "49": { + "VisualLevel": 49, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1572, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 103000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 445, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 13, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 920, + "AbilityHealthIncrease": 350, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 59, + "StrengthWeight2": 37, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 8 + }, + "50": { + "VisualLevel": 50, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1606, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 108000, + "RequiredTownHallLevel": 11, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 456, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 14, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1020, + "AbilityHealthIncrease": 375, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 60, + "StrengthWeight2": 38, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 8 + }, + "51": { + "VisualLevel": 51, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1646, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 113000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 465, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 14, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1020, + "AbilityHealthIncrease": 375, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 60, + "StrengthWeight2": 38, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 9 + }, + "52": { + "VisualLevel": 52, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1688, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 118000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 474, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 14, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1020, + "AbilityHealthIncrease": 375, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 60, + "StrengthWeight2": 38, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 9 + }, + "53": { + "VisualLevel": 53, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1730, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 123000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 485, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 14, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1020, + "AbilityHealthIncrease": 375, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 60, + "StrengthWeight2": 38, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 9 + }, + "54": { + "VisualLevel": 54, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1774, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 128000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 495, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 14, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1020, + "AbilityHealthIncrease": 375, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 60, + "StrengthWeight2": 38, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 9 + }, + "55": { + "VisualLevel": 55, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1819, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 133000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 505, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 15, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1120, + "AbilityHealthIncrease": 400, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 62, + "StrengthWeight2": 39, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 9 + }, + "56": { + "VisualLevel": 56, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1865, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 138000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 515, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 15, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1120, + "AbilityHealthIncrease": 400, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 62, + "StrengthWeight2": 39, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 10 + }, + "57": { + "VisualLevel": 57, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1912, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 143000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 526, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 15, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1120, + "AbilityHealthIncrease": 400, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 62, + "StrengthWeight2": 39, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 10 + }, + "58": { + "VisualLevel": 58, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 1960, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 148000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 537, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 15, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1120, + "AbilityHealthIncrease": 400, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 62, + "StrengthWeight2": 39, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 10 + }, + "59": { + "VisualLevel": 59, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2010, + "UpgradeTimeH": 138, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 153000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 548, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 15, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1120, + "AbilityHealthIncrease": 400, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 62, + "StrengthWeight2": 39, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 10 + }, + "60": { + "VisualLevel": 60, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2060, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 158000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 559, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 16, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1220, + "AbilityHealthIncrease": 425, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 64, + "StrengthWeight2": 40, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 10 + }, + "61": { + "VisualLevel": 61, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2111, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 163000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 570, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 16, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1220, + "AbilityHealthIncrease": 425, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 64, + "StrengthWeight2": 40, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 11 + }, + "62": { + "VisualLevel": 62, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2164, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 168000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 581, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 16, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1220, + "AbilityHealthIncrease": 425, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 64, + "StrengthWeight2": 40, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 11 + }, + "63": { + "VisualLevel": 63, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2218, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 173000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 593, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 16, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1220, + "AbilityHealthIncrease": 425, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 64, + "StrengthWeight2": 40, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 11 + }, + "64": { + "VisualLevel": 64, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2274, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 178000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 605, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 5800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 16, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1220, + "AbilityHealthIncrease": 425, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 64, + "StrengthWeight2": 40, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 11 + }, + "65": { + "VisualLevel": 65, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2330, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 183000, + "RequiredTownHallLevel": 12, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 617, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 17, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1300, + "AbilityHealthIncrease": 450, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 41, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 11 + }, + "66": { + "VisualLevel": 66, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2384, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 188000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 628, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 17, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1300, + "AbilityHealthIncrease": 450, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 41, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 12 + }, + "67": { + "VisualLevel": 67, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2432, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 193000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 638, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 17, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1300, + "AbilityHealthIncrease": 450, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 41, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 12 + }, + "68": { + "VisualLevel": 68, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2476, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 198000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 648, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 17, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1300, + "AbilityHealthIncrease": 450, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 41, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 12 + }, + "69": { + "VisualLevel": 69, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2516, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 203000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 656, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 17, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1300, + "AbilityHealthIncrease": 450, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 41, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 12 + }, + "70": { + "VisualLevel": 70, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2552, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 208000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 664, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 18, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1370, + "AbilityHealthIncrease": 475, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 68, + "StrengthWeight2": 42, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 12 + }, + "71": { + "VisualLevel": 71, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2584, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 214000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 671, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 18, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1370, + "AbilityHealthIncrease": 475, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 68, + "StrengthWeight2": 42, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 13 + }, + "72": { + "VisualLevel": 72, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2616, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 221000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 677, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 18, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1370, + "AbilityHealthIncrease": 475, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 68, + "StrengthWeight2": 42, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 13 + }, + "73": { + "VisualLevel": 73, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2648, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 229000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 682, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 18, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1370, + "AbilityHealthIncrease": 475, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 68, + "StrengthWeight2": 42, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 13 + }, + "74": { + "VisualLevel": 74, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2680, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 234000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 687, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 18, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1370, + "AbilityHealthIncrease": 475, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 68, + "StrengthWeight2": 42, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 13 + }, + "75": { + "VisualLevel": 75, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2712, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 239000, + "RequiredTownHallLevel": 13, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 692, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 19, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1430, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 70, + "StrengthWeight2": 43, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 13 + }, + "76": { + "VisualLevel": 76, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2740, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 244000, + "RequiredTownHallLevel": 14, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 697, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 19, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1430, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 70, + "StrengthWeight2": 43, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 14 + }, + "77": { + "VisualLevel": 77, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2768, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 249000, + "RequiredTownHallLevel": 14, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 701, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 19, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1430, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 70, + "StrengthWeight2": 43, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 14 + }, + "78": { + "VisualLevel": 78, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2796, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 254000, + "RequiredTownHallLevel": 14, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 706, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 19, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1430, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 70, + "StrengthWeight2": 43, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 14 + }, + "79": { + "VisualLevel": 79, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2824, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 259000, + "RequiredTownHallLevel": 14, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 710, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6400, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 19, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1430, + "AbilityHealthIncrease": 500, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 70, + "StrengthWeight2": 43, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 16, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 14 + }, + "80": { + "VisualLevel": 80, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2852, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 264000, + "RequiredTownHallLevel": 14, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 714, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 20, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1480, + "AbilityHealthIncrease": 525, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 72, + "StrengthWeight2": 44, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 14 + }, + "81": { + "VisualLevel": 81, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2880, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 268000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 717, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 20, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1480, + "AbilityHealthIncrease": 525, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 72, + "StrengthWeight2": 44, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "82": { + "VisualLevel": 82, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2904, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 272000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 721, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 20, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1480, + "AbilityHealthIncrease": 525, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 72, + "StrengthWeight2": 44, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "83": { + "VisualLevel": 83, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2928, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 276000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 724, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 20, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1480, + "AbilityHealthIncrease": 525, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 72, + "StrengthWeight2": 44, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "84": { + "VisualLevel": 84, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2952, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 280000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 728, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6600, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 20, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1480, + "AbilityHealthIncrease": 525, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 72, + "StrengthWeight2": 44, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 17, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "85": { + "VisualLevel": 85, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 2976, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 282000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 731, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 21, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1520, + "AbilityHealthIncrease": 550, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 74, + "StrengthWeight2": 45, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "86": { + "VisualLevel": 86, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3000, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 284000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 734, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 21, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1520, + "AbilityHealthIncrease": 550, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 74, + "StrengthWeight2": 45, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "87": { + "VisualLevel": 87, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3024, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 286000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 738, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 21, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1520, + "AbilityHealthIncrease": 550, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 74, + "StrengthWeight2": 45, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "88": { + "VisualLevel": 88, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3048, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 288000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 741, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 21, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1520, + "AbilityHealthIncrease": 550, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 74, + "StrengthWeight2": 45, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "89": { + "VisualLevel": 89, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3072, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 290000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 745, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 6800, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 21, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1520, + "AbilityHealthIncrease": 550, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 74, + "StrengthWeight2": 45, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 18, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "90": { + "VisualLevel": 90, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3096, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 300000, + "RequiredTownHallLevel": 15, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 748, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 7000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 22, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1560, + "AbilityHealthIncrease": 575, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 76, + "StrengthWeight2": 46, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "91": { + "VisualLevel": 91, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3120, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 310000, + "RequiredTownHallLevel": 16, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 751, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 7000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 22, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1560, + "AbilityHealthIncrease": 575, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 76, + "StrengthWeight2": 46, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "92": { + "VisualLevel": 92, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3144, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 320000, + "RequiredTownHallLevel": 16, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 755, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 7000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 22, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1560, + "AbilityHealthIncrease": 575, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 76, + "StrengthWeight2": 46, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "93": { + "VisualLevel": 93, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3168, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 330000, + "RequiredTownHallLevel": 16, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 758, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 7000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 22, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1560, + "AbilityHealthIncrease": 575, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 76, + "StrengthWeight2": 46, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "94": { + "VisualLevel": 94, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3192, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 340000, + "RequiredTownHallLevel": 16, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 762, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 7000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 22, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1560, + "AbilityHealthIncrease": 575, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 76, + "StrengthWeight2": 46, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 19, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + }, + "95": { + "VisualLevel": 95, + "TID": "TID_ARCHER_QUEEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_QUEEN", + "Speed": 300, + "Hitpoints": 3216, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 340000, + "RequiredTownHallLevel": 16, + "AttackRange": 500, + "AttackSpeed": 750, + "DPS": 765, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_archerQueen", + "BigPicture": "unit_archerQueen_big", + "BigPictureSWF": "sc/info_archer.sc", + "SmallPicture": "unit_archerQueen_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "ArcherQueen arrow lvl3", + "RageProjectile": "ArcherQueen arrow rage2", + "DeployEffect": "Hero Deploy", + "HitEffect": "Archer Queen Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 1000, + "HousingSpace": 25, + "HealerWeight": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 48, + "TrainingResource": "Elixir", + "CelebrateEffect": "Archer Queen Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityRadius": 2500, + "AbilityTime": 7200, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroop": "Archer", + "AbilitySummonTroopCount": 23, + "AbilityStealth": true, + "AbilityDamageBoostOffset": 1600, + "AbilityHealthIncrease": 600, + "AbilityTID": "TID_HERO_ABILITY_QUEEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_QUEEN_DESC", + "AbilityIcon": "icon_hero_archerQueen_ability1", + "AbilityBigPictureExportName": "unit_archerQueen_ability1_big", + "AbilityDelay": 0, + "StrengthWeight": 78, + "StrengthWeight2": 47, + "AlertRadius": 1300, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "ArcherQueenDefault", + "UseAutoHeroAbility": true, + "Gender": "F", + "SpecialAbilities": "ArcherQueenAbilityHeal", + "SpecialAbilitiesLevel": 20, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroQueenLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Archer Crown; Royal Cloak;", + "MigrationGearLevel": 15 + } + }, + "Grand Warden": { + "1": { + "VisualLevel": 1, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 850, + "UpgradeTimeH": 2, + "UpgradeResource": "Elixir", + "UpgradeCost": 1000000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 43, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 140, + "StrengthWeight2": 70, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWarden", + "AltPreviewScenario": "HeroGrandWardenAir", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 1 + }, + "2": { + "VisualLevel": 2, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 868, + "UpgradeTimeH": 4, + "UpgradeResource": "Elixir", + "UpgradeCost": 1100000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 44, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 140, + "StrengthWeight2": 70, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWarden", + "AltPreviewScenario": "HeroGrandWardenAir", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 1 + }, + "3": { + "VisualLevel": 3, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 886, + "UpgradeTimeH": 8, + "UpgradeResource": "Elixir", + "UpgradeCost": 1200000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 46, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 140, + "StrengthWeight2": 70, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWarden", + "AltPreviewScenario": "HeroGrandWardenAir", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 1 + }, + "4": { + "VisualLevel": 4, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 904, + "UpgradeTimeH": 12, + "UpgradeResource": "Elixir", + "UpgradeCost": 1400000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 48, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 20, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 140, + "StrengthWeight2": 70, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWarden", + "AltPreviewScenario": "HeroGrandWardenAir", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 2 + }, + "5": { + "VisualLevel": 5, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 923, + "UpgradeTimeH": 16, + "UpgradeResource": "Elixir", + "UpgradeCost": 1500000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 49, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 145, + "StrengthWeight2": 71, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 2 + }, + "6": { + "VisualLevel": 6, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 942, + "UpgradeTimeH": 22, + "UpgradeResource": "Elixir", + "UpgradeCost": 1700000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 51, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 145, + "StrengthWeight2": 71, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 3 + }, + "7": { + "VisualLevel": 7, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 961, + "UpgradeTimeH": 24, + "UpgradeResource": "Elixir", + "UpgradeCost": 1800000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 54, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 145, + "StrengthWeight2": 71, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 3 + }, + "8": { + "VisualLevel": 8, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 982, + "UpgradeTimeH": 24, + "UpgradeResource": "Elixir", + "UpgradeCost": 2000000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 56, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 145, + "StrengthWeight2": 71, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 4 + }, + "9": { + "VisualLevel": 9, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1003, + "UpgradeTimeH": 36, + "UpgradeResource": "Elixir", + "UpgradeCost": 2300000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 59, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 22, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 145, + "StrengthWeight2": 71, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 4 + }, + "10": { + "VisualLevel": 10, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1025, + "UpgradeTimeH": 36, + "UpgradeResource": "Elixir", + "UpgradeCost": 2700000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 61, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 150, + "StrengthWeight2": 72, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 5 + }, + "11": { + "VisualLevel": 11, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1048, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir", + "UpgradeCost": 3000000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 64, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 150, + "StrengthWeight2": 72, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 5 + }, + "12": { + "VisualLevel": 12, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1072, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir", + "UpgradeCost": 3400000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 66, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 150, + "StrengthWeight2": 72, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 6 + }, + "13": { + "VisualLevel": 13, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1097, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir", + "UpgradeCost": 3700000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 70, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 150, + "StrengthWeight2": 72, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 6 + }, + "14": { + "VisualLevel": 14, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1122, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir", + "UpgradeCost": 4100000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 73, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 24, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 150, + "StrengthWeight2": 72, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 7 + }, + "15": { + "VisualLevel": 15, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1148, + "UpgradeTimeH": 66, + "UpgradeResource": "Elixir", + "UpgradeCost": 4400000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 77, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 155, + "StrengthWeight2": 73, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 7 + }, + "16": { + "VisualLevel": 16, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1173, + "UpgradeTimeH": 66, + "UpgradeResource": "Elixir", + "UpgradeCost": 4800000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 80, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 155, + "StrengthWeight2": 73, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 8 + }, + "17": { + "VisualLevel": 17, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1199, + "UpgradeTimeH": 66, + "UpgradeResource": "Elixir", + "UpgradeCost": 5100000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 83, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 155, + "StrengthWeight2": 73, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 8 + }, + "18": { + "VisualLevel": 18, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1224, + "UpgradeTimeH": 66, + "UpgradeResource": "Elixir", + "UpgradeCost": 5500000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 87, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 155, + "StrengthWeight2": 73, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 8 + }, + "19": { + "VisualLevel": 19, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1250, + "UpgradeTimeH": 66, + "UpgradeResource": "Elixir", + "UpgradeCost": 6000000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 90, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 26, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 155, + "StrengthWeight2": 73, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 8 + }, + "20": { + "VisualLevel": 20, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1275, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 6500000, + "RequiredTownHallLevel": 11, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 94, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 160, + "StrengthWeight2": 74, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 8 + }, + "21": { + "VisualLevel": 21, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1301, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 6600000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 98, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 160, + "StrengthWeight2": 74, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "22": { + "VisualLevel": 22, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1327, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 6700000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 102, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 160, + "StrengthWeight2": 74, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "23": { + "VisualLevel": 23, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1354, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 6800000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 106, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 160, + "StrengthWeight2": 74, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "24": { + "VisualLevel": 24, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1381, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 6900000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 111, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 28, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 160, + "StrengthWeight2": 74, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "25": { + "VisualLevel": 25, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1409, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 7000000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 116, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 165, + "StrengthWeight2": 75, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "26": { + "VisualLevel": 26, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1438, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 7100000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 121, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 165, + "StrengthWeight2": 75, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "27": { + "VisualLevel": 27, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1467, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 7200000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 126, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 165, + "StrengthWeight2": 75, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "28": { + "VisualLevel": 28, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1497, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 7300000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 131, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 165, + "StrengthWeight2": 75, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "29": { + "VisualLevel": 29, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1527, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 7400000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 137, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 165, + "StrengthWeight2": 75, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "30": { + "VisualLevel": 30, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1558, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir", + "UpgradeCost": 7500000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 143, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 170, + "StrengthWeight2": 76, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 9 + }, + "31": { + "VisualLevel": 31, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1590, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir", + "UpgradeCost": 7600000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 149, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 170, + "StrengthWeight2": 76, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 10 + }, + "32": { + "VisualLevel": 32, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1622, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir", + "UpgradeCost": 7700000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 155, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 170, + "StrengthWeight2": 76, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 10 + }, + "33": { + "VisualLevel": 33, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1655, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir", + "UpgradeCost": 7800000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 162, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 170, + "StrengthWeight2": 76, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 10 + }, + "34": { + "VisualLevel": 34, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1688, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir", + "UpgradeCost": 7900000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 168, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 170, + "StrengthWeight2": 76, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 10 + }, + "35": { + "VisualLevel": 35, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1722, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 8000000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 175, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 175, + "StrengthWeight2": 77, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 10 + }, + "36": { + "VisualLevel": 36, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1757, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 8100000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 183, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 175, + "StrengthWeight2": 77, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 11 + }, + "37": { + "VisualLevel": 37, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1793, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 8200000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 190, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 175, + "StrengthWeight2": 77, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 11 + }, + "38": { + "VisualLevel": 38, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1829, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 8300000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 198, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 175, + "StrengthWeight2": 77, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 11 + }, + "39": { + "VisualLevel": 39, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1867, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 8400000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 207, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 175, + "StrengthWeight2": 77, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 11 + }, + "40": { + "VisualLevel": 40, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1904, + "UpgradeTimeH": 150, + "UpgradeResource": "Elixir", + "UpgradeCost": 8500000, + "RequiredTownHallLevel": 12, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 215, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 180, + "StrengthWeight2": 78, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 11 + }, + "41": { + "VisualLevel": 41, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1921, + "UpgradeTimeH": 150, + "UpgradeResource": "Elixir", + "UpgradeCost": 8800000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 221, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 180, + "StrengthWeight2": 78, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 12 + }, + "42": { + "VisualLevel": 42, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1938, + "UpgradeTimeH": 150, + "UpgradeResource": "Elixir", + "UpgradeCost": 9100000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 226, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 180, + "StrengthWeight2": 78, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 12 + }, + "43": { + "VisualLevel": 43, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1955, + "UpgradeTimeH": 150, + "UpgradeResource": "Elixir", + "UpgradeCost": 9400000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 230, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 180, + "StrengthWeight2": 78, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 12 + }, + "44": { + "VisualLevel": 44, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1972, + "UpgradeTimeH": 150, + "UpgradeResource": "Elixir", + "UpgradeCost": 9700000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 234, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 180, + "StrengthWeight2": 78, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 12 + }, + "45": { + "VisualLevel": 45, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 1989, + "UpgradeTimeH": 162, + "UpgradeResource": "Elixir", + "UpgradeCost": 10000000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 237, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 185, + "StrengthWeight2": 79, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 12 + }, + "46": { + "VisualLevel": 46, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2006, + "UpgradeTimeH": 162, + "UpgradeResource": "Elixir", + "UpgradeCost": 10300000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 241, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 185, + "StrengthWeight2": 79, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 13 + }, + "47": { + "VisualLevel": 47, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2023, + "UpgradeTimeH": 162, + "UpgradeResource": "Elixir", + "UpgradeCost": 10600000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 244, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 185, + "StrengthWeight2": 79, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 13 + }, + "48": { + "VisualLevel": 48, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2040, + "UpgradeTimeH": 162, + "UpgradeResource": "Elixir", + "UpgradeCost": 11000000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 247, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 185, + "StrengthWeight2": 79, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 13 + }, + "49": { + "VisualLevel": 49, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2057, + "UpgradeTimeH": 162, + "UpgradeResource": "Elixir", + "UpgradeCost": 11500000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 251, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 185, + "StrengthWeight2": 79, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 13 + }, + "50": { + "VisualLevel": 50, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2074, + "UpgradeTimeH": 174, + "UpgradeResource": "Elixir", + "UpgradeCost": 12000000, + "RequiredTownHallLevel": 13, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 254, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 190, + "StrengthWeight2": 80, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 13 + }, + "51": { + "VisualLevel": 51, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2091, + "UpgradeTimeH": 174, + "UpgradeResource": "Elixir", + "UpgradeCost": 12500000, + "RequiredTownHallLevel": 14, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 258, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 190, + "StrengthWeight2": 80, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 14 + }, + "52": { + "VisualLevel": 52, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2108, + "UpgradeTimeH": 174, + "UpgradeResource": "Elixir", + "UpgradeCost": 13000000, + "RequiredTownHallLevel": 14, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 261, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 190, + "StrengthWeight2": 80, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 14 + }, + "53": { + "VisualLevel": 53, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2125, + "UpgradeTimeH": 174, + "UpgradeResource": "Elixir", + "UpgradeCost": 13500000, + "RequiredTownHallLevel": 14, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 264, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 190, + "StrengthWeight2": 80, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 14 + }, + "54": { + "VisualLevel": 54, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2142, + "UpgradeTimeH": 174, + "UpgradeResource": "Elixir", + "UpgradeCost": 14000000, + "RequiredTownHallLevel": 14, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 268, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 190, + "StrengthWeight2": 80, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 11, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 14 + }, + "55": { + "VisualLevel": 55, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2159, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 14500000, + "RequiredTownHallLevel": 14, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 271, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 195, + "StrengthWeight2": 81, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 14 + }, + "56": { + "VisualLevel": 56, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2176, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 15000000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 274, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 195, + "StrengthWeight2": 81, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "57": { + "VisualLevel": 57, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2193, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 15500000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 276, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 195, + "StrengthWeight2": 81, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "58": { + "VisualLevel": 58, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2210, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 16000000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 279, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 195, + "StrengthWeight2": 81, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "59": { + "VisualLevel": 59, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2227, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 16200000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 281, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 195, + "StrengthWeight2": 81, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 12, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "60": { + "VisualLevel": 60, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2244, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 16700000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 284, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 200, + "StrengthWeight2": 82, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "61": { + "VisualLevel": 61, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2261, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 16900000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 286, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 200, + "StrengthWeight2": 82, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "62": { + "VisualLevel": 62, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2278, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 17100000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 289, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 200, + "StrengthWeight2": 82, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "63": { + "VisualLevel": 63, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2295, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 17300000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 292, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 200, + "StrengthWeight2": 82, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "64": { + "VisualLevel": 64, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2312, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 17500000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 294, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 200, + "StrengthWeight2": 82, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 13, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "65": { + "VisualLevel": 65, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2329, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 18000000, + "RequiredTownHallLevel": 15, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 297, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 205, + "StrengthWeight2": 83, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "66": { + "VisualLevel": 66, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2346, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 18500000, + "RequiredTownHallLevel": 16, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 299, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 205, + "StrengthWeight2": 83, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "67": { + "VisualLevel": 67, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2363, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 19000000, + "RequiredTownHallLevel": 16, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 302, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 205, + "StrengthWeight2": 83, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "68": { + "VisualLevel": 68, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2380, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 19500000, + "RequiredTownHallLevel": 16, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 304, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 205, + "StrengthWeight2": 83, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "69": { + "VisualLevel": 69, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2397, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 20000000, + "RequiredTownHallLevel": 16, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 307, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 205, + "StrengthWeight2": 83, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 14, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + }, + "70": { + "VisualLevel": 70, + "TID": "TID_GRAND_WARDEN", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARDEN", + "Speed": 200, + "Hitpoints": 2414, + "UpgradeTimeH": 192, + "UpgradeResource": "Elixir", + "UpgradeCost": 20000000, + "RequiredTownHallLevel": 16, + "AttackRange": 700, + "AltAttackRange": 650, + "AttackSpeed": 1800, + "CoolDownOverride": 1050, + "DPS": 309, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_grandwarden", + "BigPicture": "unit_elder_big", + "BigPictureSWF": "sc/info_ancientelder.sc", + "SmallPicture": "unit_grandwarden_small", + "SmallPictureSWF": "sc/ui.sc", + "DeployEffect": "Hero Deploy", + "HitEffect": "Grand Warden Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 15, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 47, + "TrainingResource": "Elixir", + "CelebrateEffect": "Grand Warden Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-50", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilitySummonTroopCount": 0, + "AbilityStealth": false, + "AbilityDamageBoostOffset": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_WARDEN_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARDEN_DESC", + "AbilityIcon": "icon_hero_grandwarden_ability1", + "AbilityBigPictureExportName": "unit_elder_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 210, + "StrengthWeight2": 84, + "AlertRadius": 1300, + "AuraSpell": "GrandWardenRangeRing", + "AuraSpellLevel": 0, + "HasAltMode": true, + "AltModeFlying": true, + "FightWithGroups": true, + "TargetGroupsRadius": 500, + "TargetGroupsRange": 1300, + "TargetGroupsMinWeight": 2000, + "SmoothJump": true, + "WakeUpSpeed": 792, + "WakeUpSpace": 1, + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 500, + "AttackEffectShared": "Grand Warden Statue Attack", + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "GrandWardenDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "GrandWardenAbilityHeal", + "SpecialAbilitiesLevel": 15, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroGrandWardenLVL5", + "AltPreviewScenario": "HeroGrandWardenLVL5Air", + "ItemSlotCount": 2, + "DefaultItems": "Eternal Tome; Life Gem;", + "MigrationGearLevel": 15 + } + }, + "Battle Machine": { + "1": { + "VisualLevel": 1, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3000, + "UpgradeTimeH": 12, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1000000, + "RequiredTownHallLevel": 5, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 125, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 38, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "2": { + "VisualLevel": 2, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3070, + "UpgradeTimeH": 12, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1100000, + "RequiredTownHallLevel": 5, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 127, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 40, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "3": { + "VisualLevel": 3, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3140, + "UpgradeTimeH": 24, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1200000, + "RequiredTownHallLevel": 5, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 130, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 41, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "4": { + "VisualLevel": 4, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3210, + "UpgradeTimeH": 24, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1300000, + "RequiredTownHallLevel": 5, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 132, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 42, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "5": { + "VisualLevel": 5, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3280, + "UpgradeTimeH": 36, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1500000, + "RequiredTownHallLevel": 5, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 135, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 47, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "6": { + "VisualLevel": 6, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3350, + "UpgradeTimeH": 36, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1600000, + "RequiredTownHallLevel": 6, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 137, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 48, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "7": { + "VisualLevel": 7, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3420, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1700000, + "RequiredTownHallLevel": 6, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 140, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 50, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "8": { + "VisualLevel": 8, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3490, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1800000, + "RequiredTownHallLevel": 6, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 142, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 51, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "9": { + "VisualLevel": 9, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3560, + "UpgradeTimeH": 60, + "UpgradeResource": "Elixir2", + "UpgradeCost": 1900000, + "RequiredTownHallLevel": 6, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 145, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 53, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "10": { + "VisualLevel": 10, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3630, + "UpgradeTimeH": 60, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2100000, + "RequiredTownHallLevel": 6, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 147, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 59, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "11": { + "VisualLevel": 11, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3700, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2200000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 150, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 61, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "12": { + "VisualLevel": 12, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3770, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2300000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 154, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 62, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "13": { + "VisualLevel": 13, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3840, + "UpgradeTimeH": 84, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2400000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 157, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 64, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "14": { + "VisualLevel": 14, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3910, + "UpgradeTimeH": 84, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2500000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 160, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "15": { + "VisualLevel": 15, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 3980, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 164, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 73, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "16": { + "VisualLevel": 16, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4050, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2700000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 167, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 75, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "17": { + "VisualLevel": 17, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4120, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2800000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 170, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 77, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "18": { + "VisualLevel": 18, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4190, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2900000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 174, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 80, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "19": { + "VisualLevel": 19, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4260, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3000000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 177, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 83, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "20": { + "VisualLevel": 20, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4330, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3100000, + "RequiredTownHallLevel": 7, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 180, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 91, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "21": { + "VisualLevel": 21, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4400, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3200000, + "RequiredTownHallLevel": 8, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 186, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 94, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "5;5;5", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "22": { + "VisualLevel": 22, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4470, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3300000, + "RequiredTownHallLevel": 8, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 192, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 96, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "5;5;5", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "23": { + "VisualLevel": 23, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4540, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3400000, + "RequiredTownHallLevel": 8, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 198, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 100, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "5;5;5", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "24": { + "VisualLevel": 24, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4610, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3500000, + "RequiredTownHallLevel": 8, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 204, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 104, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "5;5;5", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "25": { + "VisualLevel": 25, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4680, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3600000, + "RequiredTownHallLevel": 8, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 210, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 113, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "5;5;5", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "26": { + "VisualLevel": 26, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4750, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3700000, + "RequiredTownHallLevel": 9, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 218, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 116, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "6;6;6", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "27": { + "VisualLevel": 27, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4820, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3800000, + "RequiredTownHallLevel": 9, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 226, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 120, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "6;6;6", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "28": { + "VisualLevel": 28, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4890, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3900000, + "RequiredTownHallLevel": 9, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 234, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 124, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "6;6;6", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "29": { + "VisualLevel": 29, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 4960, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4000000, + "RequiredTownHallLevel": 9, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 242, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 127, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "6;6;6", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "30": { + "VisualLevel": 30, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 5030, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4100000, + "RequiredTownHallLevel": 9, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 250, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 137, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "6;6;6", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "31": { + "VisualLevel": 31, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 5100, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4200000, + "RequiredTownHallLevel": 10, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 258, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 140, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Machine Electric Hammer 1;Battle Machine Electric Hammer 2;Battle Machine Electric Hammer 3", + "SpecialAbilitiesLevel": "7;7;7", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "32": { + "VisualLevel": 32, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 5170, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4300000, + "RequiredTownHallLevel": 10, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 266, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 143, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "33": { + "VisualLevel": 33, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 5240, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4400000, + "RequiredTownHallLevel": 10, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 274, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 146, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "34": { + "VisualLevel": 34, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 5310, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4500000, + "RequiredTownHallLevel": 10, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 282, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 149, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "35": { + "VisualLevel": 35, + "TID": "TID_WARMACHINE", + "InfoTID": "TID_HERO_INSTRUCTIONS_WARMACHINE", + "Speed": 200, + "Hitpoints": 5380, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4500000, + "RequiredTownHallLevel": 10, + "AttackRange": 125, + "AttackSpeed": 1200, + "DPS": 290, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warmachine", + "BigPicture": "unit_warmachine_big", + "BigPictureSWF": "sc/info_warmachine.sc", + "SmallPicture": "unit_warmachine_small", + "SmallPictureSWF": "sc/ui.sc", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_WARMACHINE_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_WARMACHINE_DESC", + "AbilityIcon": "icon_hero_warmachine_ability1", + "AbilityBigPictureExportName": "unit_warmachine_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 160, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "WarmachineDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + } + }, + "Royal Champion": { + "1": { + "VisualLevel": 1, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2508, + "UpgradeTimeH": 8, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 70000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 340, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 110, + "StrengthWeight2": 31, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampion", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 1 + }, + "2": { + "VisualLevel": 2, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2550, + "UpgradeTimeH": 12, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 75000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 350, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 110, + "StrengthWeight2": 31, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampion", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 1 + }, + "3": { + "VisualLevel": 3, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2593, + "UpgradeTimeH": 16, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 80000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 360, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 110, + "StrengthWeight2": 31, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampion", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 2 + }, + "4": { + "VisualLevel": 4, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2635, + "UpgradeTimeH": 20, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 90000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 370, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 30, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 0, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 110, + "StrengthWeight2": 31, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 1, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampion", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 3 + }, + "5": { + "VisualLevel": 5, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2678, + "UpgradeTimeH": 44, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 100000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 375, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 1700, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 150, + "StrengthWeight2": 33, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 4 + }, + "6": { + "VisualLevel": 6, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2720, + "UpgradeTimeH": 66, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 110000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 380, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 1700, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 150, + "StrengthWeight2": 33, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 5 + }, + "7": { + "VisualLevel": 7, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2763, + "UpgradeTimeH": 78, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 120000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 385, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 1700, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 150, + "StrengthWeight2": 33, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 5 + }, + "8": { + "VisualLevel": 8, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2805, + "UpgradeTimeH": 90, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 130000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 390, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 1700, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 150, + "StrengthWeight2": 33, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 6 + }, + "9": { + "VisualLevel": 9, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2848, + "UpgradeTimeH": 102, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 140000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 396, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 32, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 1700, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 150, + "StrengthWeight2": 33, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 2, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 6 + }, + "10": { + "VisualLevel": 10, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2890, + "UpgradeTimeH": 108, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 150000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 402, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 160, + "StrengthWeight2": 35, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 7 + }, + "11": { + "VisualLevel": 11, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2933, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 160000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 408, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 160, + "StrengthWeight2": 35, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 7 + }, + "12": { + "VisualLevel": 12, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 2975, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 165000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 414, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 160, + "StrengthWeight2": 35, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 8 + }, + "13": { + "VisualLevel": 13, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3018, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 170000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 420, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 160, + "StrengthWeight2": 35, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 8 + }, + "14": { + "VisualLevel": 14, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3060, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 175000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 426, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 34, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 160, + "StrengthWeight2": 35, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 3, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 8 + }, + "15": { + "VisualLevel": 15, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3103, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 180000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 432, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2300, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 170, + "StrengthWeight2": 37, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 9 + }, + "16": { + "VisualLevel": 16, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3145, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 185000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 438, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2300, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 170, + "StrengthWeight2": 37, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 9 + }, + "17": { + "VisualLevel": 17, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3188, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 444, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2300, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 170, + "StrengthWeight2": 37, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 9 + }, + "18": { + "VisualLevel": 18, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3230, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 195000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 448, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2300, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 170, + "StrengthWeight2": 37, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 10 + }, + "19": { + "VisualLevel": 19, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3273, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 452, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 36, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2300, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 170, + "StrengthWeight2": 37, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 4, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 11 + }, + "20": { + "VisualLevel": 20, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3315, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 205000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 456, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2600, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 180, + "StrengthWeight2": 39, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 12 + }, + "21": { + "VisualLevel": 21, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3349, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 460, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2600, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 180, + "StrengthWeight2": 39, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 12 + }, + "22": { + "VisualLevel": 22, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3383, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 465, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2600, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 180, + "StrengthWeight2": 39, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 12 + }, + "23": { + "VisualLevel": 23, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3417, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 220000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 470, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2600, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 180, + "StrengthWeight2": 39, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 12 + }, + "24": { + "VisualLevel": 24, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3451, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 474, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 38, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2600, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 180, + "StrengthWeight2": 39, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 5, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 12 + }, + "25": { + "VisualLevel": 25, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3485, + "UpgradeTimeH": 174, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "RequiredTownHallLevel": 13, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 477, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2800, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 190, + "StrengthWeight2": 41, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 13 + }, + "26": { + "VisualLevel": 26, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3519, + "UpgradeTimeH": 174, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 235000, + "RequiredTownHallLevel": 14, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 480, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2800, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 190, + "StrengthWeight2": 41, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 13 + }, + "27": { + "VisualLevel": 27, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3553, + "UpgradeTimeH": 174, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "RequiredTownHallLevel": 14, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 483, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2800, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 190, + "StrengthWeight2": 41, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 14 + }, + "28": { + "VisualLevel": 28, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3587, + "UpgradeTimeH": 174, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "RequiredTownHallLevel": 14, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 486, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2800, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 190, + "StrengthWeight2": 41, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 14 + }, + "29": { + "VisualLevel": 29, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3621, + "UpgradeTimeH": 174, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 250000, + "RequiredTownHallLevel": 14, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 489, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 40, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 2800, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 190, + "StrengthWeight2": 41, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 6, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 14 + }, + "30": { + "VisualLevel": 30, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3655, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 260000, + "RequiredTownHallLevel": 14, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 492, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 43, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "31": { + "VisualLevel": 31, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3681, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 265000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 495, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 43, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "32": { + "VisualLevel": 32, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3706, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 270000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 498, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 43, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "33": { + "VisualLevel": 33, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3732, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 275000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 502, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 43, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "34": { + "VisualLevel": 34, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3757, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 280000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 506, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 42, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3000, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 43, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 7, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "35": { + "VisualLevel": 35, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3783, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 285000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 510, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3200, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 45, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "36": { + "VisualLevel": 36, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3808, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 290000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 514, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3200, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 45, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "37": { + "VisualLevel": 37, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3834, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 295000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 518, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3200, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 45, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "38": { + "VisualLevel": 38, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3859, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 300000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 522, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3200, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 45, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "39": { + "VisualLevel": 39, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3885, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 305000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 526, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 44, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3200, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 45, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 8, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "40": { + "VisualLevel": 40, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3910, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 315000, + "RequiredTownHallLevel": 15, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 530, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 47, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "41": { + "VisualLevel": 41, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3936, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 325000, + "RequiredTownHallLevel": 16, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 533, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityTime": 4000, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 47, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "42": { + "VisualLevel": 42, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3961, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 335000, + "RequiredTownHallLevel": 16, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 536, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 47, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "43": { + "VisualLevel": 43, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 3987, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 345000, + "RequiredTownHallLevel": 16, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 539, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 47, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "44": { + "VisualLevel": 44, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 4012, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 355000, + "RequiredTownHallLevel": 16, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 542, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 46, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3400, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 47, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 9, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + }, + "45": { + "VisualLevel": 45, + "TID": "TID_HERO_ROYAL_CHAMPION", + "InfoTID": "TID_HERO_INSTRUCTIONS_ROYAL_CHAMPION", + "Speed": 300, + "Hitpoints": 4038, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 355000, + "RequiredTownHallLevel": 16, + "AttackRange": 300, + "AttackSpeed": 1200, + "DPS": 545, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_warriorPrincess", + "BigPicture": "unit_royal_champion_big", + "BigPictureSWF": "sc/info_royal_champion.sc", + "SmallPicture": "unit_royal_champion_smalll", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "AmazonQueen_javelin", + "DeployEffect": "Hero Deploy", + "HitEffect": "AmazonQ ability hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": true, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "HealerWeight": 23, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 48, + "TrainingResource": "Elixir", + "CelebrateEffect": "Warrior Princess Scream", + "SleepOffsetX": 70, + "SleepOffsetY": "-40", + "PatrolRadius": 300, + "AbilityAffectsHero": true, + "AbilityOnce": true, + "AbilityCooldown": 0, + "AbilityHealthIncrease": 3600, + "AbilityTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_TITLE", + "AbilityDescTID": "TID_HERO_ABILITY_ROYAL_CHAMPION_DESC", + "AbilityIcon": "icon_hero_warriorPrincess_ability1", + "AbilityBigPictureExportName": "unit_royal_champion_ability_big", + "StrengthWeight": 200, + "StrengthWeight2": 49, + "AlertRadius": 1200, + "PreferedTargetBuildingClass": "Defense", + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 1000, + "TargetedEffectOffset": "-50", + "TriggersTraps": true, + "DefaultSkin": "WarriorPrincessDefault", + "UseAutoHeroAbility": true, + "NewTargetAttackDelay": 400, + "Gender": "F", + "SpecialAbilities": "RoyalChampionAbilityHeal", + "SpecialAbilitiesLevel": 10, + "AvoidNoiseInAttackPositionSelection": true, + "PreviewScenario": "HeroRoyalChampionLVL5", + "ItemSlotCount": 2, + "DefaultItems": "Seeking Shield; Protective Cloak;", + "MigrationGearLevel": 15 + } + }, + "Battle Copter": { + "1": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "2": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "3": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "4": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "5": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "6": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "7": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "8": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "9": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "10": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "11": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "12": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "13": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "14": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "15": { + "VisualLevel": 15, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2857, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 112, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 66, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "16": { + "VisualLevel": 16, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2885, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2700000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 116, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 69, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "17": { + "VisualLevel": 17, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2915, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2800000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 119, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 71, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "18": { + "VisualLevel": 18, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2943, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 2900000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 123, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 74, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "19": { + "VisualLevel": 19, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 2972, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3000000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 126, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 76, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "1;1;1", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "20": { + "VisualLevel": 20, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3003, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3100000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 130, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 86, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "21": { + "VisualLevel": 21, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3032, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3200000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 134, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 88, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "22": { + "VisualLevel": 22, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3062, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3300000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 137, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 91, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "23": { + "VisualLevel": 23, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3094, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3400000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 141, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 95, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "24": { + "VisualLevel": 24, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3124, + "UpgradeTimeH": 120, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3500000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 144, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 98, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "2;2;2", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "25": { + "VisualLevel": 25, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3155, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3600000, + "RequiredTownHallLevel": 8, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 148, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 108, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "26": { + "VisualLevel": 26, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3187, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3700000, + "RequiredTownHallLevel": 9, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 153, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 112, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "27": { + "VisualLevel": 27, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3220, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3800000, + "RequiredTownHallLevel": 9, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 157, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 116, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "28": { + "VisualLevel": 28, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3252, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 3900000, + "RequiredTownHallLevel": 9, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 162, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 120, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "29": { + "VisualLevel": 29, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3285, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4000000, + "RequiredTownHallLevel": 9, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 166, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 125, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "3;3;3", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "30": { + "VisualLevel": 30, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3318, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4100000, + "RequiredTownHallLevel": 9, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 171, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 136, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "31": { + "VisualLevel": 31, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3348, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4200000, + "RequiredTownHallLevel": 10, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 175, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 141, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "32": { + "VisualLevel": 32, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3375, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4300000, + "RequiredTownHallLevel": 10, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 180, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 146, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "33": { + "VisualLevel": 33, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3402, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4400000, + "RequiredTownHallLevel": 10, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 184, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 152, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "34": { + "VisualLevel": 34, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3429, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4500000, + "RequiredTownHallLevel": 10, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 189, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 157, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "4;4;4", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + }, + "35": { + "VisualLevel": 35, + "TID": "TID_HERO_BATTLE_COPTER", + "InfoTID": "TID_HERO_INFO_BATTLE_COPTER", + "Speed": 180, + "Hitpoints": 3456, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir2", + "UpgradeCost": 4500000, + "RequiredTownHallLevel": 10, + "AttackRange": 600, + "AttackSpeed": 650, + "DPS": 193, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_hero_battlecopter", + "BigPicture": "unit_battlecopter_big", + "BigPictureSWF": "sc/info_battlecopter.sc", + "SmallPicture": "icon_hero_battlecopter_small", + "SmallPictureSWF": "sc/ui.sc", + "Projectile": "BattleCopterProjectile", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "IsJumper": false, + "MaxSearchRadiusForDefender": 900, + "HousingSpace": 25, + "SpecialAbilityEffect": "Building Ready", + "RegenerationTimeMinutes": 0, + "TrainingResource": "Elixir2", + "CelebrateEffect": "Warmachine Scream", + "SleepOffsetX": 0, + "SleepOffsetY": "-100", + "PatrolRadius": 300, + "AbilityTID": "TID_HERO_ABILITY_BATTLE_COPTER", + "AbilityDescTID": "TID_HERO_ABILITY_BATTLE_COPTER_DESC", + "AbilityIcon": "icon_hero_battlecopter_ability1", + "AbilityBigPictureExportName": "unit_battlecopter_ability_big", + "AbilityDelay": 0, + "StrengthWeight": 171, + "StrengthWeight2": 0, + "AlertRadius": 1200, + "FriendlyGroupWeight": 2100, + "EnemyGroupWeight": 2500, + "TargetedEffectOffset": 100, + "TriggersTraps": true, + "VillageType": 1, + "NoDefence": true, + "DefaultSkin": "BattleCopterDefault", + "UseAutoHeroAbility": true, + "Gender": "M", + "SpecialAbilities": "Battle Copter Dive 1;Battle Copter Dive 2;Battle Copter Dive 3", + "SpecialAbilitiesLevel": "5;5;5", + "AvoidNoiseInAttackPositionSelection": true, + "AbilityExtraPowerMaxLevel": 2 + } + } } \ No newline at end of file diff --git a/assets/json/pets.json b/assets/json/pets.json index 6d137422..f2f05c92 100644 --- a/assets/json/pets.json +++ b/assets/json/pets.json @@ -1,5095 +1,5095 @@ -{ - "L.A.S.S.I": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 2700, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 100000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 150, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1960, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 2800, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 110000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 160, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2020, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 2900, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 108, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 125000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 170, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2080, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3000, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 135000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 180, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2140, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3100, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 150000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 190, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2200, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3200, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 160000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 200, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2260, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3300, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 175000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 210, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2320, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3400, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 185000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 220, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2380, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3500, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 230, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2440, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 1, - "Speed": 400, - "Hitpoints": 3600, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 240, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2500, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "11": { - "TroopLevel": 11, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 400, - "Hitpoints": 3700, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 11, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2520, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "12": { - "TroopLevel": 12, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 400, - "Hitpoints": 3800, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 12, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 260, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2540, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "13": { - "TroopLevel": 13, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 400, - "Hitpoints": 3900, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 13, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 260000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 270, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2560, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "14": { - "TroopLevel": 14, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 400, - "Hitpoints": 4000, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 14, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 275000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 280, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2580, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - }, - "15": { - "TroopLevel": 15, - "TID": "TID_PET_MELEEJUMPER", - "InfoTID": "TID_PET_MELEEJUMPER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 400, - "Hitpoints": 4100, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 15, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 275000, - "DonateCost": 20, - "AttackRange": 60, - "AttackSpeed": 900, - "DPS": 290, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_barksy", - "BigPicture": "unit_pet_lassi_big", - "BigPictureSWF": "sc/info_pet_lassi.sc", - "DeployEffect": "Barky Deploy", - "AttackEffect": "Barky Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Die", - "Animation": "PetLassiDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2600, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BARKY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", - "LeashLength": 200, - "DefaultSkin": "PetLassiDefault", - "PreviewScenario": "Pet1" - } - }, - "Mighty Yak": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 3750, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 140000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 60, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1750, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 4000, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 155000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 64, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1780, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 4250, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 108, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 175000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 68, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1810, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 4500, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 72, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1840, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 4750, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 76, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1870, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 4950, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 80, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1900, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 5100, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 84, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1930, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 5250, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 88, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1960, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 5400, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 92, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 1990, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 3, - "Speed": 300, - "Hitpoints": 5550, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 250000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 96, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2020, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "11": { - "TroopLevel": 11, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 300, - "Hitpoints": 5700, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 11, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 260000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2040, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "12": { - "TroopLevel": 12, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 300, - "Hitpoints": 5850, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 12, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 270000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 104, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2060, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "13": { - "TroopLevel": 13, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 300, - "Hitpoints": 6000, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 13, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 280000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 108, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2080, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "14": { - "TroopLevel": 14, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 300, - "Hitpoints": 6150, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 14, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 290000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 112, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2100, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - }, - "15": { - "TroopLevel": 15, - "TID": "TID_PET_WALLBUSTER", - "InfoTID": "TID_PET_WALLBUSTER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 300, - "Hitpoints": 6300, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 15, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 290000, - "DonateCost": 20, - "AttackRange": 120, - "AttackSpeed": 2100, - "DPS": 116, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_bulldozer", - "BigPicture": "unit_pet_mightyyak_big", - "BigPictureSWF": "sc/info_pet_mightyyak.sc", - "DeployEffect": "Bulldozer Deploy", - "AttackEffect": "Bulldozer Attack", - "HitEffect": "Golem Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Bulldozer Die", - "Animation": "PetYakDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 2120, - "WallMovementCost": 64, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "NewTargetAttackDelay": 100, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", - "DamageMultiplierTarget": "Wall", - "DamageMultiplierPercent": 2000, - "LeashLength": 581, - "DefaultSkin": "PetYakDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "BoostSelf", - "HeroDeathAbilitySpell": "TroopRage", - "PreviewScenario": "Pet3" - } - }, - "Electro Owl": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 1600, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 115000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3550, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 1700, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 130000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 105, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3600, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 1800, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 108, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 140000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 110, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3650, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 1900, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 155000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 115, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3700, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 2000, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 165000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 120, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3750, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 2100, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 180000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 125, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3800, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 2200, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 130, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3850, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 2300, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 205000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 135, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3900, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 2400, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 140, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3950, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_RANGEDATTACKER", - "InfoTID": "TID_PET_RANGEDATTACKER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 2, - "Speed": 250, - "Hitpoints": 2500, - "TrainingTime": 9999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 550, - "AttackSpeed": 1400, - "DPS": 145, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_electrowl", - "BigPicture": "unit_pet_electro_owl_big", - "BigPictureSWF": "sc/info_pet_electro_owl.sc", - "DeployEffect": "Laser Owl Deploy", - "AttackEffect": "Laser Owl Attack", - "HitEffect": "Mega Tesla Hit", - "IsFlying": true, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Laser Owl Die", - "Animation": "PetEowlDefault", - "IsJumper": false, - "MovementOffsetSpeed": 30, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4000, - "TargetedEffectOffset": 60, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "ChainAttackDistance": 300, - "ChainAttackMaxTargets": 2, - "ChainAttackDelay": 128, - "ChainAttackDamageReductionPercent": 20, - "ChainAttackEffect": "MegaTesla Attack_1_chain", - "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", - "LeashLength": 0, - "DefaultSkin": "PetEowlDefault", - "PreviewScenario": "Pet2" - } - }, - "Unicorn": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1400, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 180000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-50", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4550, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1450, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-53", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4600, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1500, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 108, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-56", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4650, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1550, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-58", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4700, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1600, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 220000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-60", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4750, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1675, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-62", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4800, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1725, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-64", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4850, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1800, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 250000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-66", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4900, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1875, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 260000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-68", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4950, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_HEALER", - "InfoTID": "TID_PET_HEALER_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 4, - "Speed": 200, - "Hitpoints": 1950, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 260000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1000, - "DPS": "-70", - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_unipony", - "BigPicture": "unit_pet_unicorn_big", - "BigPictureSWF": "sc/info_pet_unicorn.sc", - "Projectile": "UnicornHealEnergy", - "DeployEffect": "Pony Deploy", - "AttackEffect": "Pony Attack", - "HitEffect": "Unicorn Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Pony Die", - "Animation": "PetUnicornDefault", - "IsJumper": true, - "MovementOffsetSpeed": 50, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 5000, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", - "HeroDamageMultiplier": 100, - "LeashLength": 0, - "DefaultSkin": "PetUnicornDefault", - "PreviewScenario": "Pet2" - } - }, - "Phoenix": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8000, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8100, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8200, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8300, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8400, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8500, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8600, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8700, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8800, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 2, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_PHOENIX", - "InfoTID": "TID_PET_PHOENIX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 8, - "Speed": 300, - "Hitpoints": 8900, - "TrainingTime": 360, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 1, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 200, - "AttackSpeed": 3000, - "DPS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phoenix", - "BigPicture": "unit_pet_phoenix_big", - "BigPictureSWF": "sc/info_pet_phoenix.sc", - "AltProjectile": "PhoenixResurrect", - "DeployEffect": "Phoenix_Egg_Deploy", - "AttackEffect": "Phoenix_Egg_Attack", - "HitEffect": "Phoenix_Egg_Hit", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "AttackCount": 1, - "DieEffect": "Bdragon Die", - "Animation": "PhoenixEggDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "IsSecondaryTroop": true, - "SecondarySpawnDist": 0, - "SpawnIdle": 100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 0, - "EnemyGroupWeight": 0, - "TriggersTraps": false, - "SpecialAbilityLevel": 1, - "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", - "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", - "SpecialAbilityType": "PhoenixEgg", - "DoesNotOpenCC": true, - "LeashLength": 0, - "DefaultSkin": "PetPhoenixEggDefault", - "HeroDeathAbilityLevel": 3, - "HeroDeathAbilityType": "ResurrectHero", - "HeroDeathAbilitySpell": "TroopImmortality", - "RecallWithMaster": true - } - }, - "Poison Lizard": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1250, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 181, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4050, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 1, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1300, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 195000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 192, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4100, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 1, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1350, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 203, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4150, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 1, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1400, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 214, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4200, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 1, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1450, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 225, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4250, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 2, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1500, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 236, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4300, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 2, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1550, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 247, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4350, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 2, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1600, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 258, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4400, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 2, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1650, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 269, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4450, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 2, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_POISON_LIZARD", - "InfoTID": "TID_PET_POISON_LIZARD_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 7, - "Speed": 450, - "Hitpoints": 1700, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 350, - "DPS": 280, - "PreferedTargetDamageMod": 1, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_poison_lizard", - "BigPicture": "unit_pet_poison_lizard_big", - "BigPictureSWF": "sc/info_pet_poison_lizard.sc", - "Projectile": "fireIguanaProto", - "DeployEffect": "Poison Lizard Deploy", - "AttackEffect": "Poison Lizard Attack", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Poison Lizard Die", - "Animation": "PoisonIguanaDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 4500, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": false, - "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", - "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", - "SpecialAbilityType": "PoisonTarget", - "SpecialAbilityAttribute": 3, - "SpecialAbilityAttribute2": 3000, - "SpecialAbilitySpell": "PoisonLizardAttack", - "HeroDamageMultiplier": 100, - "PreferHeroes": true, - "LeashLength": 400, - "DefaultSkin": "PetPoisonIguanaDefault", - "PreferMasterTarget": true, - "PreviewScenario": "Pet4" - } - }, - "Diggy": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 3650, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 185000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 105, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2135, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2000, - "SpecialAbilityEffect": "Stun_Building_2s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 3800, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 195000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 110, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2170, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2000, - "SpecialAbilityEffect": "Stun_Building_2s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 3950, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 115, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2205, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2000, - "SpecialAbilityEffect": "Stun_Building_2s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 4100, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 120, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2240, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2000, - "SpecialAbilityEffect": "Stun_Building_2s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 4250, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 125, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2275, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2500, - "SpecialAbilityEffect": "Stun_Building_2_5s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 4400, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 130, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2310, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2500, - "SpecialAbilityEffect": "Stun_Building_2_5s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 4550, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 135, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2345, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2500, - "SpecialAbilityEffect": "Stun_Building_2_5s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 4700, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 140, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2380, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2500, - "SpecialAbilityEffect": "Stun_Building_2_5s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 4850, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 145, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2415, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 2500, - "SpecialAbilityEffect": "Stun_Building_2_5s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_DIGGY", - "InfoTID": "TID_PET_DIGGY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 6, - "Speed": 400, - "Hitpoints": 5000, - "TrainingTime": 120, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "DonateCost": 20, - "AttackRange": 80, - "AttackSpeed": 1100, - "DPS": 150, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_diggy", - "BigPicture": "unit_pet_diggy_big", - "BigPictureSWF": "sc/info_pet_diggy.sc", - "DeployEffect": "Diggy Deploy", - "AttackEffect": "Diggy Attack", - "HitEffect": "Diggy Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Diggy Die", - "Animation": "DiggyDefault", - "IsJumper": false, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 768, - "StrengthWeight": 2450, - "TargetedEffectOffset": "-50", - "IsUnderground": true, - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "UndergroundEffect": "Diggy Move", - "BecomesTargetableEffect": "Diggy Appear", - "HideEffect": "Diggy Hide", - "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", - "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", - "SpecialAbilityType": "StunTargetOnSurfacing", - "SpecialAbilityAttribute": 3000, - "SpecialAbilityEffect": "Stun_Building_3s", - "LeashLength": 0, - "DefaultSkin": "PetDiggyDefault", - "HeroDeathAbilityLevel": 1, - "HeroDeathAbilityType": "SwitchHero", - "PreferMasterTarget": true, - "PreviewScenario": "Pet1" - } - }, - "Frosty": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 2350, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 185000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 94, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 1, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 4, - "SpawnIdle": 100, - "StrengthWeight": 3270, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 2450, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 190000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 98, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 1, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 4, - "SpawnIdle": 100, - "StrengthWeight": 3300, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 2550, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 200000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 102, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 1, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 4, - "SpawnIdle": 100, - "StrengthWeight": 3330, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 2650, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 210000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 106, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 1, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 4, - "SpawnIdle": 100, - "StrengthWeight": 3360, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 2800, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 215000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 110, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 2, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 8, - "SpawnIdle": 100, - "StrengthWeight": 3390, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 2900, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 114, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 2, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 8, - "SpawnIdle": 100, - "StrengthWeight": 3420, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 3000, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 235000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 118, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 2, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 8, - "SpawnIdle": 100, - "StrengthWeight": 3440, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 3100, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 240000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 122, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 2, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 8, - "SpawnIdle": 100, - "StrengthWeight": 3470, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 3200, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 250000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 126, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 2, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 8, - "SpawnIdle": 100, - "StrengthWeight": 3500, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_FROSTY", - "InfoTID": "TID_PET_FROSTY_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 5, - "Speed": 300, - "Hitpoints": 3300, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 250000, - "DonateCost": 20, - "AttackRange": 350, - "AttackSpeed": 1200, - "DPS": 130, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_frosty", - "BigPicture": "unit_pet_frosty_big", - "BigPictureSWF": "sc/info_pet_frosty.sc", - "Projectile": "Frosty_projectile", - "DeployEffect": "Frosty Deploy", - "AttackEffect": "Frosty Attack", - "HitEffect": "IceWizard Hit1", - "IsFlying": false, - "AirTargets": true, - "GroundTargets": true, - "DieEffect": "Frosty Die", - "Animation": "FrostyDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SecondarySpawnDist": 150, - "SummonTroop": "Icemite", - "SummonTroopCount": 2, - "SummonCooldown": 8000, - "SummonEffect": "Frosty Summon", - "SummonLimit": 10, - "SpawnIdle": 100, - "StrengthWeight": 3530, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", - "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", - "FrostOnHitTime": 4000, - "FrostOnHitPercent": 50, - "LeashLength": 100, - "DefaultSkin": "PetFrostyDefault", - "PreviewScenario": "Pet1" - } - }, - "Spirit Fox": { - "1": { - "TroopLevel": 1, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 1900, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 1, - "UpgradeTimeH": 72, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 225000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 108, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3525, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 1, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "2": { - "TroopLevel": 2, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2000, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 2, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 235000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 116, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3550, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 1, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "3": { - "TroopLevel": 3, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2100, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 3, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 245000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 124, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3575, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 1, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "4": { - "TroopLevel": 4, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2200, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 4, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 255000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 132, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3600, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 1, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "5": { - "TroopLevel": 5, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2300, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 5, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 265000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 140, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3625, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 2, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "6": { - "TroopLevel": 6, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2400, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 6, - "UpgradeTimeH": 156, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 275000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 148, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3650, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 2, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "7": { - "TroopLevel": 7, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2500, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 7, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 285000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 156, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3675, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 2, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "8": { - "TroopLevel": 8, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2600, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 8, - "UpgradeTimeH": 180, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 295000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 164, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3700, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 2, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "9": { - "TroopLevel": 9, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2700, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 9, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 315000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 172, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3725, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 2, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - }, - "10": { - "TroopLevel": 10, - "TID": "TID_PET_SPIRIT_FOX", - "InfoTID": "TID_PET_SPIRIT_FOX_INFO", - "HousingSpace": 20, - "LaboratoryLevel": 9, - "Speed": 300, - "Hitpoints": 2800, - "TrainingTime": 999, - "TrainingResource": "DarkElixir", - "TrainingCost": 10, - "UpgradeTimeH": 192, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 315000, - "DonateCost": 20, - "AttackRange": 250, - "AttackSpeed": 1600, - "DPS": 180, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_unit_pet_phasefennec", - "BigPicture": "unit_pet_phasefennec_big", - "BigPictureSWF": "sc/info_pet_phasefennec.sc", - "Projectile": "Fennec_projectile", - "DeployEffect": "Barky Fennec Deploy", - "AttackEffect": "Barky Fennec Attack", - "HitEffect": "Miner Hit", - "IsFlying": false, - "AirTargets": false, - "GroundTargets": true, - "DieEffect": "Barky Fennec Die", - "Animation": "FennecDefault", - "IsJumper": true, - "MovementOffsetSpeed": 0, - "DisableProduction": true, - "SpawnIdle": 100, - "StrengthWeight": 3750, - "TargetedEffectOffset": "-50", - "FriendlyGroupWeight": 300, - "EnemyGroupWeight": 400, - "TriggersTraps": true, - "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", - "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", - "SpecialAbilities": "PhaseFennecInvis", - "SpecialAbilitiesLevel": 3, - "LeashLength": 200, - "DefaultSkin": "PetFennecDefault", - "PreviewScenario": "Pet2" - } - } +{ + "L.A.S.S.I": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 2700, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 100000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 150, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1960, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 2800, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 110000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 160, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2020, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 2900, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 108, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 125000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 170, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2080, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3000, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 135000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 180, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2140, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3100, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 150000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 190, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2200, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3200, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 160000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 200, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2260, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3300, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 175000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 210, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2320, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3400, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 185000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 220, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2380, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3500, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 230, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2440, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 1, + "Speed": 400, + "Hitpoints": 3600, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 240, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2500, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "11": { + "TroopLevel": 11, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 400, + "Hitpoints": 3700, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 11, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2520, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "12": { + "TroopLevel": 12, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 400, + "Hitpoints": 3800, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 12, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 260, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2540, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "13": { + "TroopLevel": 13, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 400, + "Hitpoints": 3900, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 13, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 260000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 270, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2560, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "14": { + "TroopLevel": 14, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 400, + "Hitpoints": 4000, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 14, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 275000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 280, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2580, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + }, + "15": { + "TroopLevel": 15, + "TID": "TID_PET_MELEEJUMPER", + "InfoTID": "TID_PET_MELEEJUMPER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 400, + "Hitpoints": 4100, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 15, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 275000, + "DonateCost": 20, + "AttackRange": 60, + "AttackSpeed": 900, + "DPS": 290, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_barksy", + "BigPicture": "unit_pet_lassi_big", + "BigPictureSWF": "sc/info_pet_lassi.sc", + "DeployEffect": "Barky Deploy", + "AttackEffect": "Barky Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Die", + "Animation": "PetLassiDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2600, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BARKY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BARKY", + "LeashLength": 200, + "DefaultSkin": "PetLassiDefault", + "PreviewScenario": "Pet1" + } + }, + "Mighty Yak": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 3750, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 140000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 60, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1750, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 4000, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 155000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 64, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1780, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 4250, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 108, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 175000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 68, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1810, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 4500, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 72, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1840, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 4750, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 76, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1870, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 4950, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 80, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1900, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 5100, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 84, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1930, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 5250, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 88, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1960, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 5400, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 92, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 1990, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 3, + "Speed": 300, + "Hitpoints": 5550, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 250000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 96, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2020, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "11": { + "TroopLevel": 11, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 300, + "Hitpoints": 5700, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 11, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 260000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2040, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "12": { + "TroopLevel": 12, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 300, + "Hitpoints": 5850, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 12, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 270000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 104, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2060, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "13": { + "TroopLevel": 13, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 300, + "Hitpoints": 6000, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 13, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 280000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 108, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2080, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "14": { + "TroopLevel": 14, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 300, + "Hitpoints": 6150, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 14, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 290000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 112, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2100, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + }, + "15": { + "TroopLevel": 15, + "TID": "TID_PET_WALLBUSTER", + "InfoTID": "TID_PET_WALLBUSTER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 300, + "Hitpoints": 6300, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 15, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 290000, + "DonateCost": 20, + "AttackRange": 120, + "AttackSpeed": 2100, + "DPS": 116, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_bulldozer", + "BigPicture": "unit_pet_mightyyak_big", + "BigPictureSWF": "sc/info_pet_mightyyak.sc", + "DeployEffect": "Bulldozer Deploy", + "AttackEffect": "Bulldozer Attack", + "HitEffect": "Golem Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Bulldozer Die", + "Animation": "PetYakDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 2120, + "WallMovementCost": 64, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "NewTargetAttackDelay": 100, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_BULLDOZER", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_BULLDOZER", + "DamageMultiplierTarget": "Wall", + "DamageMultiplierPercent": 2000, + "LeashLength": 581, + "DefaultSkin": "PetYakDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "BoostSelf", + "HeroDeathAbilitySpell": "TroopRage", + "PreviewScenario": "Pet3" + } + }, + "Electro Owl": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 1600, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 115000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3550, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 1700, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 130000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 105, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3600, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 1800, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 108, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 140000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 110, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3650, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 1900, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 155000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 115, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3700, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 2000, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 165000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 120, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3750, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 2100, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 180000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 125, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3800, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 2200, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 130, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3850, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 2300, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 205000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 135, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3900, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 2400, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 140, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3950, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_RANGEDATTACKER", + "InfoTID": "TID_PET_RANGEDATTACKER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 2, + "Speed": 250, + "Hitpoints": 2500, + "TrainingTime": 9999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 550, + "AttackSpeed": 1400, + "DPS": 145, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_electrowl", + "BigPicture": "unit_pet_electro_owl_big", + "BigPictureSWF": "sc/info_pet_electro_owl.sc", + "DeployEffect": "Laser Owl Deploy", + "AttackEffect": "Laser Owl Attack", + "HitEffect": "Mega Tesla Hit", + "IsFlying": true, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Laser Owl Die", + "Animation": "PetEowlDefault", + "IsJumper": false, + "MovementOffsetSpeed": 30, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4000, + "TargetedEffectOffset": 60, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "ChainAttackDistance": 300, + "ChainAttackMaxTargets": 2, + "ChainAttackDelay": 128, + "ChainAttackDamageReductionPercent": 20, + "ChainAttackEffect": "MegaTesla Attack_1_chain", + "SpecialAbilityName": "TID_PET_ABILITY_ELECTROWL", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_ELECTROWL", + "LeashLength": 0, + "DefaultSkin": "PetEowlDefault", + "PreviewScenario": "Pet2" + } + }, + "Unicorn": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1400, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 180000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-50", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4550, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1450, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-53", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4600, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1500, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 108, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-56", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4650, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1550, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-58", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4700, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1600, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 220000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-60", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4750, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1675, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-62", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4800, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1725, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-64", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4850, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1800, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 250000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-66", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4900, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1875, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 260000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-68", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4950, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_HEALER", + "InfoTID": "TID_PET_HEALER_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 4, + "Speed": 200, + "Hitpoints": 1950, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 260000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1000, + "DPS": "-70", + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_unipony", + "BigPicture": "unit_pet_unicorn_big", + "BigPictureSWF": "sc/info_pet_unicorn.sc", + "Projectile": "UnicornHealEnergy", + "DeployEffect": "Pony Deploy", + "AttackEffect": "Pony Attack", + "HitEffect": "Unicorn Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Pony Die", + "Animation": "PetUnicornDefault", + "IsJumper": true, + "MovementOffsetSpeed": 50, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 5000, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_UNIPONY", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_UNIPONY", + "HeroDamageMultiplier": 100, + "LeashLength": 0, + "DefaultSkin": "PetUnicornDefault", + "PreviewScenario": "Pet2" + } + }, + "Phoenix": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8000, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8100, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8200, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8300, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8400, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8500, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8600, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8700, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8800, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 2, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_PHOENIX", + "InfoTID": "TID_PET_PHOENIX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 8, + "Speed": 300, + "Hitpoints": 8900, + "TrainingTime": 360, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 1, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 200, + "AttackSpeed": 3000, + "DPS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phoenix", + "BigPicture": "unit_pet_phoenix_big", + "BigPictureSWF": "sc/info_pet_phoenix.sc", + "AltProjectile": "PhoenixResurrect", + "DeployEffect": "Phoenix_Egg_Deploy", + "AttackEffect": "Phoenix_Egg_Attack", + "HitEffect": "Phoenix_Egg_Hit", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "AttackCount": 1, + "DieEffect": "Bdragon Die", + "Animation": "PhoenixEggDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "IsSecondaryTroop": true, + "SecondarySpawnDist": 0, + "SpawnIdle": 100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 0, + "EnemyGroupWeight": 0, + "TriggersTraps": false, + "SpecialAbilityLevel": 1, + "SpecialAbilityName": "TID_PET_PHOENIX_ABILITY", + "SpecialAbilityInfo": "TID_PET_PHOENIX_ABILITY_INFO", + "SpecialAbilityType": "PhoenixEgg", + "DoesNotOpenCC": true, + "LeashLength": 0, + "DefaultSkin": "PetPhoenixEggDefault", + "HeroDeathAbilityLevel": 3, + "HeroDeathAbilityType": "ResurrectHero", + "HeroDeathAbilitySpell": "TroopImmortality", + "RecallWithMaster": true + } + }, + "Poison Lizard": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1250, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 181, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4050, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 1, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1300, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 195000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 192, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4100, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 1, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1350, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 203, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4150, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 1, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1400, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 214, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4200, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 1, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1450, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 225, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4250, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 2, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1500, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 236, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4300, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 2, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1550, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 247, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4350, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 2, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1600, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 258, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4400, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 2, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1650, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 269, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4450, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 2, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_POISON_LIZARD", + "InfoTID": "TID_PET_POISON_LIZARD_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 7, + "Speed": 450, + "Hitpoints": 1700, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 350, + "DPS": 280, + "PreferedTargetDamageMod": 1, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_poison_lizard", + "BigPicture": "unit_pet_poison_lizard_big", + "BigPictureSWF": "sc/info_pet_poison_lizard.sc", + "Projectile": "fireIguanaProto", + "DeployEffect": "Poison Lizard Deploy", + "AttackEffect": "Poison Lizard Attack", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Poison Lizard Die", + "Animation": "PoisonIguanaDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 4500, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": false, + "SpecialAbilityName": "TID_PET_POISON_LIZARD_ABILITY", + "SpecialAbilityInfo": "TID_PET_POISON_LIZARD_ABILITY_INFO", + "SpecialAbilityType": "PoisonTarget", + "SpecialAbilityAttribute": 3, + "SpecialAbilityAttribute2": 3000, + "SpecialAbilitySpell": "PoisonLizardAttack", + "HeroDamageMultiplier": 100, + "PreferHeroes": true, + "LeashLength": 400, + "DefaultSkin": "PetPoisonIguanaDefault", + "PreferMasterTarget": true, + "PreviewScenario": "Pet4" + } + }, + "Diggy": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 3650, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 185000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 105, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2135, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2000, + "SpecialAbilityEffect": "Stun_Building_2s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 3800, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 195000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 110, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2170, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2000, + "SpecialAbilityEffect": "Stun_Building_2s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 3950, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 115, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2205, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2000, + "SpecialAbilityEffect": "Stun_Building_2s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 4100, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 120, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2240, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2000, + "SpecialAbilityEffect": "Stun_Building_2s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 4250, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 125, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2275, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2500, + "SpecialAbilityEffect": "Stun_Building_2_5s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 4400, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 130, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2310, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2500, + "SpecialAbilityEffect": "Stun_Building_2_5s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 4550, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 135, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2345, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2500, + "SpecialAbilityEffect": "Stun_Building_2_5s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 4700, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 140, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2380, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2500, + "SpecialAbilityEffect": "Stun_Building_2_5s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 4850, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 145, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2415, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 2500, + "SpecialAbilityEffect": "Stun_Building_2_5s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_DIGGY", + "InfoTID": "TID_PET_DIGGY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 6, + "Speed": 400, + "Hitpoints": 5000, + "TrainingTime": 120, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "DonateCost": 20, + "AttackRange": 80, + "AttackSpeed": 1100, + "DPS": 150, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_diggy", + "BigPicture": "unit_pet_diggy_big", + "BigPictureSWF": "sc/info_pet_diggy.sc", + "DeployEffect": "Diggy Deploy", + "AttackEffect": "Diggy Attack", + "HitEffect": "Diggy Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Diggy Die", + "Animation": "DiggyDefault", + "IsJumper": false, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 768, + "StrengthWeight": 2450, + "TargetedEffectOffset": "-50", + "IsUnderground": true, + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "UndergroundEffect": "Diggy Move", + "BecomesTargetableEffect": "Diggy Appear", + "HideEffect": "Diggy Hide", + "SpecialAbilityName": "TID_PET_DIGGY_ABILITY", + "SpecialAbilityInfo": "TID_PET_DIGGY_ABILITY_INFO", + "SpecialAbilityType": "StunTargetOnSurfacing", + "SpecialAbilityAttribute": 3000, + "SpecialAbilityEffect": "Stun_Building_3s", + "LeashLength": 0, + "DefaultSkin": "PetDiggyDefault", + "HeroDeathAbilityLevel": 1, + "HeroDeathAbilityType": "SwitchHero", + "PreferMasterTarget": true, + "PreviewScenario": "Pet1" + } + }, + "Frosty": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 2350, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 185000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 94, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 1, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 4, + "SpawnIdle": 100, + "StrengthWeight": 3270, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 2450, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 190000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 98, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 1, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 4, + "SpawnIdle": 100, + "StrengthWeight": 3300, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 2550, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 200000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 102, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 1, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 4, + "SpawnIdle": 100, + "StrengthWeight": 3330, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 2650, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 210000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 106, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 1, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 4, + "SpawnIdle": 100, + "StrengthWeight": 3360, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 2800, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 215000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 110, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 2, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 8, + "SpawnIdle": 100, + "StrengthWeight": 3390, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 2900, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 114, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 2, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 8, + "SpawnIdle": 100, + "StrengthWeight": 3420, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 3000, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 235000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 118, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 2, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 8, + "SpawnIdle": 100, + "StrengthWeight": 3440, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 3100, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 240000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 122, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 2, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 8, + "SpawnIdle": 100, + "StrengthWeight": 3470, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 3200, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 250000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 126, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 2, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 8, + "SpawnIdle": 100, + "StrengthWeight": 3500, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_FROSTY", + "InfoTID": "TID_PET_FROSTY_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 5, + "Speed": 300, + "Hitpoints": 3300, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 250000, + "DonateCost": 20, + "AttackRange": 350, + "AttackSpeed": 1200, + "DPS": 130, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_frosty", + "BigPicture": "unit_pet_frosty_big", + "BigPictureSWF": "sc/info_pet_frosty.sc", + "Projectile": "Frosty_projectile", + "DeployEffect": "Frosty Deploy", + "AttackEffect": "Frosty Attack", + "HitEffect": "IceWizard Hit1", + "IsFlying": false, + "AirTargets": true, + "GroundTargets": true, + "DieEffect": "Frosty Die", + "Animation": "FrostyDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SecondarySpawnDist": 150, + "SummonTroop": "Icemite", + "SummonTroopCount": 2, + "SummonCooldown": 8000, + "SummonEffect": "Frosty Summon", + "SummonLimit": 10, + "SpawnIdle": 100, + "StrengthWeight": 3530, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_FROSTY_ABILITY", + "SpecialAbilityInfo": "TID_PET_FROSTY_ABILITY_INFO", + "FrostOnHitTime": 4000, + "FrostOnHitPercent": 50, + "LeashLength": 100, + "DefaultSkin": "PetFrostyDefault", + "PreviewScenario": "Pet1" + } + }, + "Spirit Fox": { + "1": { + "TroopLevel": 1, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 1900, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 1, + "UpgradeTimeH": 72, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 225000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 108, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3525, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 1, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "2": { + "TroopLevel": 2, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2000, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 2, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 235000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 116, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3550, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 1, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "3": { + "TroopLevel": 3, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2100, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 3, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 245000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 124, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3575, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 1, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "4": { + "TroopLevel": 4, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2200, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 4, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 255000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 132, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3600, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 1, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "5": { + "TroopLevel": 5, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2300, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 5, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 265000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 140, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3625, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 2, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "6": { + "TroopLevel": 6, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2400, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 6, + "UpgradeTimeH": 156, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 275000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 148, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3650, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 2, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "7": { + "TroopLevel": 7, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2500, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 7, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 285000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 156, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3675, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 2, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "8": { + "TroopLevel": 8, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2600, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 8, + "UpgradeTimeH": 180, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 295000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 164, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3700, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 2, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "9": { + "TroopLevel": 9, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2700, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 9, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 315000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 172, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3725, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 2, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + }, + "10": { + "TroopLevel": 10, + "TID": "TID_PET_SPIRIT_FOX", + "InfoTID": "TID_PET_SPIRIT_FOX_INFO", + "HousingSpace": 20, + "LaboratoryLevel": 9, + "Speed": 300, + "Hitpoints": 2800, + "TrainingTime": 999, + "TrainingResource": "DarkElixir", + "TrainingCost": 10, + "UpgradeTimeH": 192, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 315000, + "DonateCost": 20, + "AttackRange": 250, + "AttackSpeed": 1600, + "DPS": 180, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_unit_pet_phasefennec", + "BigPicture": "unit_pet_phasefennec_big", + "BigPictureSWF": "sc/info_pet_phasefennec.sc", + "Projectile": "Fennec_projectile", + "DeployEffect": "Barky Fennec Deploy", + "AttackEffect": "Barky Fennec Attack", + "HitEffect": "Miner Hit", + "IsFlying": false, + "AirTargets": false, + "GroundTargets": true, + "DieEffect": "Barky Fennec Die", + "Animation": "FennecDefault", + "IsJumper": true, + "MovementOffsetSpeed": 0, + "DisableProduction": true, + "SpawnIdle": 100, + "StrengthWeight": 3750, + "TargetedEffectOffset": "-50", + "FriendlyGroupWeight": 300, + "EnemyGroupWeight": 400, + "TriggersTraps": true, + "SpecialAbilityName": "TID_PET_ABILITY_SPIRIT_FOX", + "SpecialAbilityInfo": "TID_PET_ABILITY_INFO_SPIRIT_FOX", + "SpecialAbilities": "PhaseFennecInvis", + "SpecialAbilitiesLevel": 3, + "LeashLength": 200, + "DefaultSkin": "PetFennecDefault", + "PreviewScenario": "Pet2" + } + } } \ No newline at end of file diff --git a/assets/json/spells.json b/assets/json/spells.json index eeab3238..94f5ee0b 100644 --- a/assets/json/spells.json +++ b/assets/json/spells.json @@ -1,4146 +1,4146 @@ -{ - "Lightning Spell": { - "1": { - "Level": 1, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 4, - "UpgradeResource": "Elixir", - "UpgradeCost": 50000, - "Damage": 150, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 30, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "2": { - "Level": 2, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 8, - "UpgradeResource": "Elixir", - "UpgradeCost": 100000, - "Damage": 180, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 30, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "3": { - "Level": 3, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 2, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 12, - "UpgradeResource": "Elixir", - "UpgradeCost": 200000, - "Damage": 210, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 30, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "4": { - "Level": 4, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 3, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 24, - "UpgradeResource": "Elixir", - "UpgradeCost": 600000, - "Damage": 240, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 30, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "5": { - "Level": 5, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 6, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 1500000, - "Damage": 270, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 30, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "6": { - "Level": 6, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 7, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 2500000, - "Damage": 320, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 27, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "7": { - "Level": 7, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 4200000, - "Damage": 400, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 24, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "8": { - "Level": 8, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir", - "UpgradeCost": 6300000, - "Damage": 480, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 22, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "9": { - "Level": 9, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 300, - "UpgradeResource": "Elixir", - "UpgradeCost": 16000000, - "Damage": 560, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 20, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "10": { - "Level": 10, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 13, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 336, - "UpgradeResource": "Elixir", - "UpgradeCost": 18500000, - "Damage": 600, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 22, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - }, - "11": { - "Level": 11, - "TID": "TID_LIGHTNING_STORM", - "InfoTID": "TID_LIGHTNING_STORM_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 14, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 336, - "UpgradeResource": "Elixir", - "UpgradeCost": 18500000, - "Damage": 640, - "Radius": 200, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_lightning", - "BigPicture": "icon_spell_lightning", - "PreDeployEffect": "Lightning predeploy", - "DeployEffect": "Lightning area small", - "ChargingEffect": "Lightning Spell", - "HitEffect": "Lightning Spell Hit", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 100, - "StrengthWeight": 22, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "FreezeOuterTimeMS": 100, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellLightning" - } - }, - "Healing Spell": { - "1": { - "Level": 1, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 2, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 5, - "UpgradeResource": "Elixir", - "UpgradeCost": 75000, - "Damage": "-15", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 230, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "2": { - "Level": 2, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 2, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 10, - "UpgradeResource": "Elixir", - "UpgradeCost": 150000, - "Damage": "-20", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 215, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "3": { - "Level": 3, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 4, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 20, - "UpgradeResource": "Elixir", - "UpgradeCost": 300000, - "Damage": "-25", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 200, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "4": { - "Level": 4, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 5, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 36, - "UpgradeResource": "Elixir", - "UpgradeCost": 900000, - "Damage": "-30", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 190, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "5": { - "Level": 5, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 6, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 1800000, - "Damage": "-35", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 180, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "6": { - "Level": 6, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 7, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 3000000, - "Damage": "-40", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 170, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "7": { - "Level": 7, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 8, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 8500000, - "Damage": "-45", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 170, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "8": { - "Level": 8, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 11, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 318, - "UpgradeResource": "Elixir", - "UpgradeCost": 17000000, - "Damage": "-50", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 200, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "9": { - "Level": 9, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 13, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 360, - "UpgradeResource": "Elixir", - "UpgradeCost": 19000000, - "Damage": "-55", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 200, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - }, - "10": { - "Level": 10, - "TID": "TID_HEALING_WAVE", - "InfoTID": "TID_HEALING_WAVE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 14, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 360, - "UpgradeResource": "Elixir", - "UpgradeCost": 19000000, - "Damage": "-60", - "Radius": 500, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_healing", - "BigPicture": "icon_spell_healing", - "PreDeployEffect": "Heal predeploy", - "DeployEffect": "Heal area", - "DeployEffect2": "Heal area top", - "HitEffect": "Heal spell", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 200, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 55, - "PreviewScenario": "SpellHeal" - } - }, - "Rage Spell": { - "1": { - "Level": 1, - "TID": "TID_HASTE", - "InfoTID": "TID_HASTE_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 3, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 12, - "UpgradeResource": "Elixir", - "UpgradeCost": 400000, - "BoostTimeMS": 1000, - "SpeedBoost": 20, - "SpeedBoost2": 10, - "DamageBoostPercent": 130, - "Radius": 500, - "NumberOfHits": 60, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_rage", - "BigPicture": "icon_spell_rage", - "PreDeployEffect": "Rage predeploy", - "DeployEffect": "Rage deploy", - "DeployEffect2": "Rage deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 100, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellRage" - }, - "2": { - "Level": 2, - "TID": "TID_HASTE", - "InfoTID": "TID_HASTE_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 3, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 24, - "UpgradeResource": "Elixir", - "UpgradeCost": 800000, - "BoostTimeMS": 1000, - "SpeedBoost": 22, - "SpeedBoost2": 11, - "DamageBoostPercent": 140, - "Radius": 500, - "NumberOfHits": 60, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_rage", - "BigPicture": "icon_spell_rage", - "PreDeployEffect": "Rage predeploy", - "DeployEffect": "Rage deploy", - "DeployEffect2": "Rage deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 95, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellRage" - }, - "3": { - "Level": 3, - "TID": "TID_HASTE", - "InfoTID": "TID_HASTE_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 4, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 48, - "UpgradeResource": "Elixir", - "UpgradeCost": 1600000, - "BoostTimeMS": 1000, - "SpeedBoost": 24, - "SpeedBoost2": 12, - "DamageBoostPercent": 150, - "Radius": 500, - "NumberOfHits": 60, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_rage", - "BigPicture": "icon_spell_rage", - "PreDeployEffect": "Rage predeploy", - "DeployEffect": "Rage deploy", - "DeployEffect2": "Rage deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 90, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellRage" - }, - "4": { - "Level": 4, - "TID": "TID_HASTE", - "InfoTID": "TID_HASTE_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 5, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 2400000, - "BoostTimeMS": 1000, - "SpeedBoost": 26, - "SpeedBoost2": 13, - "DamageBoostPercent": 160, - "Radius": 500, - "NumberOfHits": 60, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_rage", - "BigPicture": "icon_spell_rage", - "PreDeployEffect": "Rage predeploy", - "DeployEffect": "Rage deploy", - "DeployEffect2": "Rage deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 85, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellRage" - }, - "5": { - "Level": 5, - "TID": "TID_HASTE", - "InfoTID": "TID_HASTE_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 6, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 7000000, - "BoostTimeMS": 1000, - "SpeedBoost": 28, - "SpeedBoost2": 14, - "DamageBoostPercent": 170, - "Radius": 500, - "NumberOfHits": 60, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_rage", - "BigPicture": "icon_spell_rage", - "PreDeployEffect": "Rage predeploy", - "DeployEffect": "Rage deploy", - "DeployEffect2": "Rage deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 80, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellRage" - }, - "6": { - "Level": 6, - "TID": "TID_HASTE", - "InfoTID": "TID_HASTE_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 10, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 7000000, - "BoostTimeMS": 1000, - "SpeedBoost": 30, - "SpeedBoost2": 15, - "DamageBoostPercent": 180, - "Radius": 500, - "NumberOfHits": 60, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_rage", - "BigPicture": "icon_spell_rage", - "PreDeployEffect": "Rage predeploy", - "DeployEffect": "Rage deploy", - "DeployEffect2": "Rage deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 95, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellRage" - } - }, - "Jump Spell": { - "1": { - "Level": 1, - "TID": "TID_JUMP_SPELL", - "InfoTID": "TID_JUMP_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 4, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 2000000, - "JumpHousingLimit": 100, - "JumpBoostMS": 400, - "Radius": 350, - "NumberOfHits": 66, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_jump", - "BigPicture": "icon_spell_jump", - "PreDeployEffect": "Jump predeploy", - "DeployEffect": "Jump deploy lvl1", - "DeployEffect2": "Jump deploy top lvl1", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 250, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "PreviewScenario": "SpellJump" - }, - "2": { - "Level": 2, - "TID": "TID_JUMP_SPELL", - "InfoTID": "TID_JUMP_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 5, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 3400000, - "JumpHousingLimit": 100, - "JumpBoostMS": 400, - "Radius": 350, - "NumberOfHits": 133, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_jump", - "BigPicture": "icon_spell_jump", - "PreDeployEffect": "Jump predeploy", - "DeployEffect": "Jump deploy lvl2", - "DeployEffect2": "Jump deploy top lvl2", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 170, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "PreviewScenario": "SpellJump" - }, - "3": { - "Level": 3, - "TID": "TID_JUMP_SPELL", - "InfoTID": "TID_JUMP_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 8, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 7200000, - "JumpHousingLimit": 100, - "JumpBoostMS": 400, - "Radius": 350, - "NumberOfHits": 199, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_jump", - "BigPicture": "icon_spell_jump", - "PreDeployEffect": "Jump predeploy", - "DeployEffect": "Jump deploy lvl3", - "DeployEffect2": "Jump deploy top lvl3", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 130, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "PreviewScenario": "SpellJump" - }, - "4": { - "Level": 4, - "TID": "TID_JUMP_SPELL", - "InfoTID": "TID_JUMP_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 11, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 312, - "UpgradeResource": "Elixir", - "UpgradeCost": 16500000, - "JumpHousingLimit": 100, - "JumpBoostMS": 400, - "Radius": 350, - "NumberOfHits": 266, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_jump", - "BigPicture": "icon_spell_jump", - "PreDeployEffect": "Jump predeploy", - "DeployEffect": "Jump deploy lvl4", - "DeployEffect2": "Jump deploy top lvl4", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 110, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "PreviewScenario": "SpellJump" - }, - "5": { - "Level": 5, - "TID": "TID_JUMP_SPELL", - "InfoTID": "TID_JUMP_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 13, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 312, - "UpgradeResource": "Elixir", - "UpgradeCost": 16500000, - "JumpHousingLimit": 100, - "JumpBoostMS": 400, - "Radius": 350, - "NumberOfHits": 333, - "RandomRadius": 400, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_jump", - "BigPicture": "icon_spell_jump", - "PreDeployEffect": "Jump predeploy", - "DeployEffect": "Jump deploy lvl5", - "DeployEffect2": "Jump deploy top lvl5", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 90, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "PreviewScenario": "SpellJump" - } - }, - "Freeze Spell": { - "1": { - "Level": 1, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 7, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 36, - "UpgradeResource": "Elixir", - "UpgradeCost": 1200000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl1", - "DeployEffect2": "Freeze deploy2 lvl1", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 2500, - "StrengthWeight": 1000, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 2250, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - }, - "2": { - "Level": 2, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 7, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 62, - "UpgradeResource": "Elixir", - "UpgradeCost": 1700000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl2", - "DeployEffect2": "Freeze deploy2 lvl2", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 3000, - "StrengthWeight": 1150, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 2700, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - }, - "3": { - "Level": 3, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 78, - "UpgradeResource": "Elixir", - "UpgradeCost": 3000000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl3", - "DeployEffect2": "Freeze deploy2 lvl3", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 3500, - "StrengthWeight": 1300, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 3150, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - }, - "4": { - "Level": 4, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 4200000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl4", - "DeployEffect2": "Freeze deploy2 lvl4", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 4000, - "StrengthWeight": 1450, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 3600, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - }, - "5": { - "Level": 5, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 6000000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl5", - "DeployEffect2": "Freeze deploy2 lvl5", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 4500, - "StrengthWeight": 1600, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 4050, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - }, - "6": { - "Level": 6, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir", - "UpgradeCost": 7000000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl6", - "DeployEffect2": "Freeze deploy2 lvl6", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 5000, - "StrengthWeight": 1750, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 4500, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - }, - "7": { - "Level": 7, - "TID": "TID_FREEZE_SPELL", - "InfoTID": "TID_FREEZE_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir", - "UpgradeCost": 7000000, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 400, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_freeze", - "BigPicture": "icon_spell_freeze", - "PreDeployEffect": "Freeze predeploy", - "DeployEffect": "Freeze deploy lvl7", - "DeployEffect2": "Freeze deploy2 lvl7", - "RandomRadiusAffectsOnlyGfx": true, - "FreezeTimeMS": 5500, - "StrengthWeight": 1900, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "FreezeOuterTimeMS": 4950, - "AffectsSiegeMachines": true, - "PreviewScenario": "SpellFreeze" - } - }, - "Santa's Surprise": { - "1": { - "Level": 1, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 150, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 5, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "2": { - "Level": 2, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 160, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 6, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "3": { - "Level": 3, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 170, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 7, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "4": { - "Level": 4, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 180, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 8, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "5": { - "Level": 5, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 190, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 9, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "6": { - "Level": 6, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 200, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 10, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "7": { - "Level": 7, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 220, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 11, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "8": { - "Level": 8, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 240, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 12, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "9": { - "Level": 9, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 260, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 13, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "10": { - "Level": 10, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 280, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 14, - "ImmunityTH_CC": true, - "ImmunityStorages": true - }, - "11": { - "Level": 11, - "TID": "TID_XMAS_SPELL", - "InfoTID": "TID_XMAS_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 4500, - "HitTimeMS": 6000, - "UpgradeResource": "Elixir", - "Damage": 300, - "Radius": 100, - "NumberOfHits": 5, - "RandomRadius": 100, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_xmas", - "BigPicture": "icon_spell_xmas", - "DeployEffect": "xmas Red Smoke", - "DeployEffect2Delay": 2500, - "DeployEffect2": "xmas test", - "ChargingEffect": "xmas Drop Bombs", - "HitEffect": "xmas boom", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Xmas TombStone", - "NumObstacles": 5, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DisableDonate": true, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 15, - "ImmunityTH_CC": true, - "ImmunityStorages": true - } - }, - "Poison Spell": { - "1": { - "Level": 1, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 8, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 10000, - "BoostTimeMS": 500, - "SpeedBoost": "-26", - "SpeedBoost2": "-26", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-160", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 90, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-35", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "2": { - "Level": 2, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 6, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 24, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 20000, - "BoostTimeMS": 500, - "SpeedBoost": "-30", - "SpeedBoost2": "-30", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-170", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 115, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-40", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "3": { - "Level": 3, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 7, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 62, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 43000, - "BoostTimeMS": 500, - "SpeedBoost": "-34", - "SpeedBoost2": "-34", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-190", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 145, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-45", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "4": { - "Level": 4, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 70000, - "BoostTimeMS": 500, - "SpeedBoost": "-38", - "SpeedBoost2": "-38", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-210", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 180, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-50", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "5": { - "Level": 5, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 150, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 110000, - "BoostTimeMS": 500, - "SpeedBoost": "-40", - "SpeedBoost2": "-40", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-230", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 220, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-55", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "6": { - "Level": 6, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 155000, - "BoostTimeMS": 500, - "SpeedBoost": "-42", - "SpeedBoost2": "-42", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-250", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 260, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-60", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "7": { - "Level": 7, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 11, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 240, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 230000, - "BoostTimeMS": 500, - "SpeedBoost": "-44", - "SpeedBoost2": "-44", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-270", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 280, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-65", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "8": { - "Level": 8, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 12, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 318, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 320000, - "BoostTimeMS": 500, - "SpeedBoost": "-46", - "SpeedBoost2": "-46", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-275", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 300, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-68", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "9": { - "Level": 9, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 13, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 360, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 350000, - "BoostTimeMS": 500, - "SpeedBoost": "-48", - "SpeedBoost2": "-48", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-280", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 320, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-70", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - }, - "10": { - "Level": 10, - "TID": "TID_POISON_CLOUD", - "InfoTID": "TID_POISON_CLOUD_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 14, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 360, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 350000, - "BoostTimeMS": 500, - "SpeedBoost": "-50", - "SpeedBoost2": "-50", - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 0, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_toxic", - "BigPicture": "icon_spell_toxic", - "PreDeployEffect": "toxic_Predeploy", - "DeployEffect": "Toxic deploy ground halloween", - "DeployEffect2": "Toxic deploy halloween", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": "-285", - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "HeroDamageMultiplier": 5, - "PoisonDPS": 340, - "PoisonIncreaseSlowly": true, - "AttackSpeedBoost": "-72", - "BoostLinkedToPoison": true, - "PoisonAffectAir": true, - "BoostDefenders": true, - "ImmunityTH_CC": true, - "ImmunityStorages": true, - "ImmunityWalls": true, - "ImmunityOtherBuildings": true, - "PreviewScenario": "SpellPoison" - } - }, - "Earthquake Spell": { - "1": { - "Level": 1, - "TID": "TID_EARTHQUAKE", - "InfoTID": "TID_EARTHQUAKE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 18, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 12000, - "BuildingDamagePermil": 29, - "Radius": 350, - "NumberOfHits": 5, - "RandomRadius": 200, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_earthquake", - "BigPicture": "icon_spell_earthquake", - "PreDeployEffect": "Earthquake_Predeploy", - "DeployEffect": "EarthQuake_deploy_ground_0", - "DeployEffect2": "EarthQuake_deploy_0", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 150, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", - "PreferredTarget": "Wall", - "PreferredTargetDamageMod": 5, - "ImmunitySiegeMachines": true, - "ImmunityOtherCharacters": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellQuake" - }, - "2": { - "Level": 2, - "TID": "TID_EARTHQUAKE", - "InfoTID": "TID_EARTHQUAKE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 6, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 24000, - "BuildingDamagePermil": 34, - "Radius": 380, - "NumberOfHits": 5, - "RandomRadius": 200, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_earthquake", - "BigPicture": "icon_spell_earthquake", - "PreDeployEffect": "Earthquake_Predeploy", - "DeployEffect": "EarthQuake_deploy_ground", - "DeployEffect2": "EarthQuake_deploy", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 145, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", - "PreferredTarget": "Wall", - "PreferredTargetDamageMod": 5, - "ImmunitySiegeMachines": true, - "ImmunityOtherCharacters": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellQuake" - }, - "3": { - "Level": 3, - "TID": "TID_EARTHQUAKE", - "InfoTID": "TID_EARTHQUAKE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 7, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 102, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 51000, - "BuildingDamagePermil": 42, - "Radius": 410, - "NumberOfHits": 5, - "RandomRadius": 200, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_earthquake", - "BigPicture": "icon_spell_earthquake", - "PreDeployEffect": "Earthquake_Predeploy", - "DeployEffect": "EarthQuake_deploy_ground_2", - "DeployEffect2": "EarthQuake_deploy_2", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 140, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", - "PreferredTarget": "Wall", - "PreferredTargetDamageMod": 5, - "ImmunitySiegeMachines": true, - "ImmunityOtherCharacters": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellQuake" - }, - "4": { - "Level": 4, - "TID": "TID_EARTHQUAKE", - "InfoTID": "TID_EARTHQUAKE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 186, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 84000, - "BuildingDamagePermil": 50, - "Radius": 440, - "NumberOfHits": 5, - "RandomRadius": 200, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_earthquake", - "BigPicture": "icon_spell_earthquake", - "PreDeployEffect": "Earthquake_Predeploy", - "DeployEffect": "EarthQuake_deploy_ground_3", - "DeployEffect2": "EarthQuake_deploy_3", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 135, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", - "PreferredTarget": "Wall", - "PreferredTargetDamageMod": 5, - "ImmunitySiegeMachines": true, - "ImmunityOtherCharacters": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellQuake" - }, - "5": { - "Level": 5, - "TID": "TID_EARTHQUAKE", - "InfoTID": "TID_EARTHQUAKE_INFO", - "SpellForgeLevel": 2, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 186, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 84000, - "BuildingDamagePermil": 58, - "Radius": 470, - "NumberOfHits": 5, - "RandomRadius": 200, - "TimeBetweenHitsMS": 400, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_earthquake", - "BigPicture": "icon_spell_earthquake", - "PreDeployEffect": "Earthquake_Predeploy", - "DeployEffect": "EarthQuake_deploy_ground_4", - "DeployEffect2": "EarthQuake_deploy_4", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 130, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", - "PreferredTarget": "Wall", - "PreferredTargetDamageMod": 5, - "ImmunitySiegeMachines": true, - "ImmunityOtherCharacters": true, - "ImmunityStorages": true, - "PreviewScenario": "SpellQuake" - } - }, - "Haste Spell": { - "1": { - "Level": 1, - "TID": "TID_SPEEDUP", - "InfoTID": "TID_SPEEDUP_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 36, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 16000, - "BoostTimeMS": 1000, - "SpeedBoost": 28, - "SpeedBoost2": 14, - "Radius": 400, - "NumberOfHits": 40, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_speedup", - "BigPicture": "icon_spell_speedup", - "PreDeployEffect": "speedup_Predeploy", - "DeployEffect": "Speedup_deploy_lvl1", - "DeployEffect2": "Speedup_deploy_top_lvl1", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 200, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellBooster" - }, - "2": { - "Level": 2, - "TID": "TID_SPEEDUP", - "InfoTID": "TID_SPEEDUP_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 7, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 62, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 34000, - "BoostTimeMS": 1000, - "SpeedBoost": 34, - "SpeedBoost2": 17, - "Radius": 400, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_speedup", - "BigPicture": "icon_spell_speedup", - "PreDeployEffect": "speedup_Predeploy", - "DeployEffect": "Speedup_deploy_lvl2", - "DeployEffect2": "Speedup_deploy_top_lvl2", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 200, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellBooster" - }, - "3": { - "Level": 3, - "TID": "TID_SPEEDUP", - "InfoTID": "TID_SPEEDUP_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 120, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 60000, - "BoostTimeMS": 1000, - "SpeedBoost": 40, - "SpeedBoost2": 20, - "Radius": 400, - "NumberOfHits": 80, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_speedup", - "BigPicture": "icon_spell_speedup", - "PreDeployEffect": "speedup_Predeploy", - "DeployEffect": "Speedup_deploy_lvl3", - "DeployEffect2": "Speedup_deploy_top_lvl3", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 180, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellBooster" - }, - "4": { - "Level": 4, - "TID": "TID_SPEEDUP", - "InfoTID": "TID_SPEEDUP_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 186, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 77000, - "BoostTimeMS": 1000, - "SpeedBoost": 46, - "SpeedBoost2": 23, - "Radius": 400, - "NumberOfHits": 100, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_speedup", - "BigPicture": "icon_spell_speedup", - "PreDeployEffect": "speedup_Predeploy", - "DeployEffect": "Speedup_deploy_lvl4", - "DeployEffect2": "Speedup_deploy_top_lvl4", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 180, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellBooster" - }, - "5": { - "Level": 5, - "TID": "TID_SPEEDUP", - "InfoTID": "TID_SPEEDUP_INFO", - "SpellForgeLevel": 3, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 186, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 77000, - "BoostTimeMS": 1000, - "SpeedBoost": 52, - "SpeedBoost2": 26, - "Radius": 400, - "NumberOfHits": 120, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_speedup", - "BigPicture": "icon_spell_speedup", - "PreDeployEffect": "speedup_Predeploy", - "DeployEffect": "Speedup_deploy_lvl5", - "DeployEffect2": "Speedup_deploy_top_lvl5", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 180, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "PreviewScenario": "SpellBooster" - } - }, - "Clone Spell": { - "1": { - "Level": 1, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 1, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 42, - "UpgradeResource": "Elixir", - "UpgradeCost": 2100000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 300, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 22, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "2": { - "Level": 2, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 8, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 72, - "UpgradeResource": "Elixir", - "UpgradeCost": 3400000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 330, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 24, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "3": { - "Level": 3, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 8, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 84, - "UpgradeResource": "Elixir", - "UpgradeCost": 4200000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 360, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 26, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "4": { - "Level": 4, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 9, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 96, - "UpgradeResource": "Elixir", - "UpgradeCost": 5600000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 360, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 28, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "5": { - "Level": 5, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 9, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 168, - "UpgradeResource": "Elixir", - "UpgradeCost": 7200000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 360, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 30, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "6": { - "Level": 6, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 11, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 216, - "UpgradeResource": "Elixir", - "UpgradeCost": 15500000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 330, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 34, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "7": { - "Level": 7, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 12, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 318, - "UpgradeResource": "Elixir", - "UpgradeCost": 18000000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 310, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 38, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - }, - "8": { - "Level": 8, - "TID": "TID_DUPLICATE_SPELL", - "InfoTID": "TID_DUPLICATE_SPELL_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 13, - "DonateCost": 15, - "HousingSpace": 3, - "TrainingTime": 540, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 318, - "UpgradeResource": "Elixir", - "UpgradeCost": 18000000, - "Radius": 350, - "NumberOfHits": 60, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_clone", - "BigPicture": "icon_spell_clone", - "PreDeployEffect": "Clone_Predeploy", - "DeployEffect": "Clone deploy", - "DeployEffect2": "Clone deploy top", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 290, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DuplicateHousing": 42, - "DuplicateLifetime": 30000, - "PreviewScenario": "SpellBooster" - } - }, - "Skeleton Spell": { - "1": { - "Level": 1, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 32, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 22000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon1", - "StrengthWeight": 460, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 12, - "SpawnDuration": 12000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "2": { - "Level": 2, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 62, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 34000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon2", - "StrengthWeight": 470, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 13, - "SpawnDuration": 13000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "3": { - "Level": 3, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 96, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 50000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon3", - "StrengthWeight": 480, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 14, - "SpawnDuration": 14000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "4": { - "Level": 4, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 102, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 80000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon4", - "StrengthWeight": 500, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 15, - "SpawnDuration": 15000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "5": { - "Level": 5, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 132, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 100000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon5", - "StrengthWeight": 520, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 16, - "SpawnDuration": 16000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "6": { - "Level": 6, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 168, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 150000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon6", - "StrengthWeight": 540, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 17, - "SpawnDuration": 17000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "7": { - "Level": 7, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 11, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 318, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 320000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon7", - "StrengthWeight": 560, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 18, - "SpawnDuration": 18000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - }, - "8": { - "Level": 8, - "TID": "TID_CREATE_SKELETONS_SPELL", - "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", - "SpellForgeLevel": 4, - "LaboratoryLevel": 13, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 318, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 320000, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_skeleton", - "BigPicture": "icon_spell_skeleton", - "PreDeployEffect": "skele_Predeploy", - "DeployEffect": "SkeleSpell Summon8", - "StrengthWeight": 580, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", - "SummonTroop": "ShieldedSkeleton", - "UnitsToSpawn": 19, - "SpawnDuration": 19000, - "SpawnFirstGroupSize": 3, - "PreviewScenario": "SpellSkeleton" - } - }, - "Birthday Boom": { - "1": { - "Level": 1, - "TID": "TID_BIRTHDAY_SPELL", - "InfoTID": "TID_BIRTHDAY_SPELL_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 0, - "ChargingTimeMS": 150, - "HitTimeMS": 1750, - "UpgradeResource": "Elixir", - "SpeedBoost2": 0, - "Damage": 500, - "Radius": 250, - "NumberOfHits": 1, - "RandomRadius": 0, - "TimeBetweenHitsMS": 0, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_birthday", - "BigPicture": "icon_spell_birthday", - "PreDeployEffect": "Birthday predeploy", - "DeployEffect": "BirthdaySpell Summon2", - "DeployEffect2": "BirthdaySpell Summon1", - "ChargingEffect": "Birthday Hit", - "HitEffect": "Birthday Spell Hit", - "RandomRadiusAffectsOnlyGfx": false, - "SpawnObstacle": "Birthday TombStone", - "NumObstacles": 3, - "StrengthWeight": 0, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "DamageTHPercent": 70, - "DisableDonate": true, - "ScaleByTH": true, - "EnabledByCalendar": true, - "PauseCombatComponentsMs": 2000 - } - }, - "Bat Spell": { - "1": { - "Level": 1, - "TID": "TID_SPELL_BATS", - "InfoTID": "TID_SPELL_BATS_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 42, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 26000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_bats", - "BigPicture": "icon_spell_bats", - "PreDeployEffect": "bat_Predeploy", - "DeployEffect": "BatSpell Summon1", - "StrengthWeight": 460, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", - "SummonTroop": "SpellBat", - "UnitsToSpawn": 7, - "SpawnDuration": 4200, - "SpawnFirstGroupSize": 1, - "PreviewScenario": "SpellBat" - }, - "2": { - "Level": 2, - "TID": "TID_SPELL_BATS", - "InfoTID": "TID_SPELL_BATS_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 84, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 51000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_bats", - "BigPicture": "icon_spell_bats", - "PreDeployEffect": "bat_Predeploy", - "DeployEffect": "BatSpell Summon2", - "StrengthWeight": 470, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", - "SummonTroop": "SpellBat", - "UnitsToSpawn": 9, - "SpawnDuration": 5400, - "SpawnFirstGroupSize": 1, - "PreviewScenario": "SpellBat" - }, - "3": { - "Level": 3, - "TID": "TID_SPELL_BATS", - "InfoTID": "TID_SPELL_BATS_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 8, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 126, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 70000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_bats", - "BigPicture": "icon_spell_bats", - "PreDeployEffect": "bat_Predeploy", - "DeployEffect": "BatSpell Summon3", - "StrengthWeight": 480, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", - "SummonTroop": "SpellBat", - "UnitsToSpawn": 11, - "SpawnDuration": 6600, - "SpawnFirstGroupSize": 1, - "PreviewScenario": "SpellBat" - }, - "4": { - "Level": 4, - "TID": "TID_SPELL_BATS", - "InfoTID": "TID_SPELL_BATS_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 144, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 95000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_bats", - "BigPicture": "icon_spell_bats", - "PreDeployEffect": "bat_Predeploy", - "DeployEffect": "BatSpell Summon4", - "StrengthWeight": 500, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", - "SummonTroop": "SpellBat", - "UnitsToSpawn": 16, - "SpawnDuration": 9600, - "SpawnFirstGroupSize": 1, - "PreviewScenario": "SpellBat" - }, - "5": { - "Level": 5, - "TID": "TID_SPELL_BATS", - "InfoTID": "TID_SPELL_BATS_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 324, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 330000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_bats", - "BigPicture": "icon_spell_bats", - "PreDeployEffect": "bat_Predeploy", - "DeployEffect": "BatSpell Summon5", - "StrengthWeight": 520, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", - "SummonTroop": "SpellBat", - "UnitsToSpawn": 21, - "SpawnDuration": 12600, - "SpawnFirstGroupSize": 1, - "PreviewScenario": "SpellBat" - }, - "6": { - "Level": 6, - "TID": "TID_SPELL_BATS", - "InfoTID": "TID_SPELL_BATS_INFO", - "SpellForgeLevel": 5, - "LaboratoryLevel": 13, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 0, - "UpgradeTimeH": 324, - "UpgradeResource": "DarkElixir", - "UpgradeCost": 330000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 225, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_bats", - "BigPicture": "icon_spell_bats", - "PreDeployEffect": "bat_Predeploy", - "DeployEffect": "BatSpell Summon6", - "StrengthWeight": 560, - "ProductionBuilding": "Mini Spell Factory", - "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", - "SummonTroop": "SpellBat", - "UnitsToSpawn": 22, - "SpawnDuration": 13200, - "SpawnFirstGroupSize": 1, - "PreviewScenario": "SpellBat" - } - }, - "Invisibility Spell": { - "1": { - "Level": 1, - "TID": "TID_INVISIBILITY_SPELL", - "InfoTID": "TID_INVISIBILITY_SPELL_INFO", - "SpellForgeLevel": 6, - "LaboratoryLevel": 1, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 132, - "UpgradeResource": "Elixir", - "UpgradeCost": 5600000, - "Radius": 400, - "NumberOfHits": 15, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_invisibility", - "BigPicture": "icon_spell_invisibility", - "PreDeployEffect": "Invisibility_Predeploy", - "DeployEffect": "Invisibility area lvl1", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 210, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "InvisibilityTime": 600, - "ImmunitySiegeMachines": true, - "ImmunityWalls": true, - "PreviewScenario": "SpellInvisibility" - }, - "2": { - "Level": 2, - "TID": "TID_INVISIBILITY_SPELL", - "InfoTID": "TID_INVISIBILITY_SPELL_INFO", - "SpellForgeLevel": 6, - "LaboratoryLevel": 9, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 144, - "UpgradeResource": "Elixir", - "UpgradeCost": 7500000, - "Radius": 400, - "NumberOfHits": 16, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_invisibility", - "BigPicture": "icon_spell_invisibility", - "PreDeployEffect": "Invisibility_Predeploy", - "DeployEffect": "Invisibility area lvl2", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 215, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "InvisibilityTime": 600, - "ImmunitySiegeMachines": true, - "ImmunityWalls": true, - "PreviewScenario": "SpellInvisibility" - }, - "3": { - "Level": 3, - "TID": "TID_INVISIBILITY_SPELL", - "InfoTID": "TID_INVISIBILITY_SPELL_INFO", - "SpellForgeLevel": 6, - "LaboratoryLevel": 10, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 228, - "UpgradeResource": "Elixir", - "UpgradeCost": 9000000, - "Radius": 400, - "NumberOfHits": 17, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_invisibility", - "BigPicture": "icon_spell_invisibility", - "PreDeployEffect": "Invisibility_Predeploy", - "DeployEffect": "Invisibility area lvl3", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 220, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "InvisibilityTime": 600, - "ImmunitySiegeMachines": true, - "ImmunityWalls": true, - "PreviewScenario": "SpellInvisibility" - }, - "4": { - "Level": 4, - "TID": "TID_INVISIBILITY_SPELL", - "InfoTID": "TID_INVISIBILITY_SPELL_INFO", - "SpellForgeLevel": 6, - "LaboratoryLevel": 11, - "DonateCost": 5, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 800, - "ChargingTimeMS": 300, - "HitTimeMS": 400, - "UpgradeTimeH": 228, - "UpgradeResource": "Elixir", - "UpgradeCost": 9000000, - "Radius": 400, - "NumberOfHits": 18, - "RandomRadius": 200, - "TimeBetweenHitsMS": 250, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_invisibility", - "BigPicture": "icon_spell_invisibility", - "PreDeployEffect": "Invisibility_Predeploy", - "DeployEffect": "Invisibility area lvl4", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 225, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "InvisibilityTime": 600, - "ImmunitySiegeMachines": true, - "ImmunityWalls": true, - "PreviewScenario": "SpellInvisibility" - } - }, - "Recall Spell": { - "1": { - "Level": 1, - "TID": "TID_SPELL_RECALL", - "InfoTID": "TID_SPELL_RECALL_INFO", - "SpellForgeLevel": 7, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 228, - "UpgradeResource": "Elixir", - "UpgradeCost": 7500000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 500, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_recall", - "BigPicture": "icon_spell_recall", - "PreDeployEffect": "Recall_Predeploy", - "DeployEffect": "RecallDeployAuraGround", - "DeployEffect2": "RecallDeployAuraTop", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 120, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "RecallHousing": 83, - "PreviewScenario": "SpellRecall" - }, - "2": { - "Level": 2, - "TID": "TID_SPELL_RECALL", - "InfoTID": "TID_SPELL_RECALL_INFO", - "SpellForgeLevel": 7, - "LaboratoryLevel": 11, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 276, - "UpgradeResource": "Elixir", - "UpgradeCost": 14000000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 500, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_recall", - "BigPicture": "icon_spell_recall", - "PreDeployEffect": "Recall_Predeploy", - "DeployEffect": "RecallDeployAuraGround", - "DeployEffect2": "RecallDeployAuraTop", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 130, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "RecallHousing": 89, - "PreviewScenario": "SpellRecall" - }, - "3": { - "Level": 3, - "TID": "TID_SPELL_RECALL", - "InfoTID": "TID_SPELL_RECALL_INFO", - "SpellForgeLevel": 7, - "LaboratoryLevel": 12, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 318, - "UpgradeResource": "Elixir", - "UpgradeCost": 17500000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 500, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_recall", - "BigPicture": "icon_spell_recall", - "PreDeployEffect": "Recall_Predeploy", - "DeployEffect": "RecallDeployAuraGround", - "DeployEffect2": "RecallDeployAuraTop", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 140, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "RecallHousing": 95, - "PreviewScenario": "SpellRecall" - }, - "4": { - "Level": 4, - "TID": "TID_SPELL_RECALL", - "InfoTID": "TID_SPELL_RECALL_INFO", - "SpellForgeLevel": 7, - "LaboratoryLevel": 13, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 360, - "UpgradeResource": "Elixir", - "UpgradeCost": 19500000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 500, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_recall", - "BigPicture": "icon_spell_recall", - "PreDeployEffect": "Recall_Predeploy", - "DeployEffect": "RecallDeployAuraGround", - "DeployEffect2": "RecallDeployAuraTop", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 145, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "RecallHousing": 101, - "PreviewScenario": "SpellRecall" - }, - "5": { - "Level": 5, - "TID": "TID_SPELL_RECALL", - "InfoTID": "TID_SPELL_RECALL_INFO", - "SpellForgeLevel": 7, - "LaboratoryLevel": 14, - "DonateCost": 10, - "HousingSpace": 2, - "TrainingTime": 360, - "DeployTimeMS": 800, - "ChargingTimeMS": 0, - "HitTimeMS": 100, - "UpgradeTimeH": 360, - "UpgradeResource": "Elixir", - "UpgradeCost": 19500000, - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 500, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 100, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_recall", - "BigPicture": "icon_spell_recall", - "PreDeployEffect": "Recall_Predeploy", - "DeployEffect": "RecallDeployAuraGround", - "DeployEffect2": "RecallDeployAuraTop", - "RandomRadiusAffectsOnlyGfx": true, - "StrengthWeight": 150, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", - "RecallHousing": 107, - "PreviewScenario": "SpellRecall" - } - }, - "Bag of Frostmites": { - "1": { - "Level": 1, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect", - "FreezeTimeMS": 1500, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 10, - "SpawnUpgradeLevel": 1, - "SpawnDuration": 5000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 6, - "FreezeOuterTimeMS": 1000, - "PreviewScenario": "SpellFrostmites" - }, - "2": { - "Level": 2, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect2", - "FreezeTimeMS": 1700, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 11, - "SpawnUpgradeLevel": 2, - "SpawnDuration": 6000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 7, - "FreezeOuterTimeMS": 1200, - "PreviewScenario": "SpellFrostmites" - }, - "3": { - "Level": 3, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect3", - "FreezeTimeMS": 1900, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 12, - "SpawnUpgradeLevel": 3, - "SpawnDuration": 7000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 8, - "FreezeOuterTimeMS": 1400, - "PreviewScenario": "SpellFrostmites" - }, - "4": { - "Level": 4, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect4", - "FreezeTimeMS": 2100, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 13, - "SpawnUpgradeLevel": 4, - "SpawnDuration": 8000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 9, - "FreezeOuterTimeMS": 1600, - "PreviewScenario": "SpellFrostmites" - }, - "5": { - "Level": 5, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect5", - "FreezeTimeMS": 2300, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 14, - "SpawnUpgradeLevel": 5, - "SpawnDuration": 9000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 10, - "FreezeOuterTimeMS": 1800, - "PreviewScenario": "SpellFrostmites" - }, - "6": { - "Level": 6, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect6", - "FreezeTimeMS": 2500, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 15, - "SpawnUpgradeLevel": 6, - "SpawnDuration": 10000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 11, - "FreezeOuterTimeMS": 2000, - "PreviewScenario": "SpellFrostmites" - }, - "7": { - "Level": 7, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect7", - "FreezeTimeMS": 2700, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 16, - "SpawnUpgradeLevel": 7, - "SpawnDuration": 11000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 12, - "FreezeOuterTimeMS": 2200, - "PreviewScenario": "SpellFrostmites" - }, - "8": { - "Level": 8, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect8", - "FreezeTimeMS": 2900, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 17, - "SpawnUpgradeLevel": 8, - "SpawnDuration": 12000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 13, - "FreezeOuterTimeMS": 2400, - "PreviewScenario": "SpellFrostmites" - }, - "9": { - "Level": 9, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect9", - "FreezeTimeMS": 3100, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 18, - "SpawnUpgradeLevel": 9, - "SpawnDuration": 13000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 14, - "FreezeOuterTimeMS": 2600, - "PreviewScenario": "SpellFrostmites" - }, - "10": { - "Level": 10, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect10", - "FreezeTimeMS": 3300, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 19, - "SpawnUpgradeLevel": 10, - "SpawnDuration": 14000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 15, - "FreezeOuterTimeMS": 2800, - "PreviewScenario": "SpellFrostmites" - }, - "11": { - "Level": 11, - "TID": "TID_SPELL_BAG_OF_FROSTMITES", - "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", - "SpellForgeLevel": 1, - "LaboratoryLevel": 1, - "DonateCost": 10, - "HousingSpace": 1, - "TrainingTime": 180, - "DeployTimeMS": 300, - "ChargingTimeMS": 0, - "HitTimeMS": 300, - "UpgradeResource": "Elixir", - "BoostTimeMS": 0, - "SpeedBoost": 0, - "SpeedBoost2": 0, - "Damage": 0, - "Radius": 350, - "NumberOfHits": 1, - "RandomRadius": 200, - "TimeBetweenHitsMS": 300, - "IconSWF": "sc/ui.sc", - "IconExportName": "icon_spell_frostmitebag", - "BigPicture": "icon_spell_frostmitebag", - "PreDeployEffect": "Frostmites Spell Predeploy", - "DeployEffect": "BagOfFrostmitesEffect11", - "FreezeTimeMS": 3500, - "StrengthWeight": 460, - "ProductionBuilding": "Spell Forge", - "TargetInfoString": "TID_PREFERRED_TARGET_ANY", - "SummonTroop": "BouncingFrostmite", - "UnitsToSpawn": 20, - "SpawnUpgradeLevel": 11, - "SpawnDuration": 15000, - "SpawnFirstGroupSize": 1, - "EnabledByCalendar": true, - "UpgradeLevelByTH": 16, - "FreezeOuterTimeMS": 3000, - "PreviewScenario": "SpellFrostmites" - } - } +{ + "Lightning Spell": { + "1": { + "Level": 1, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 4, + "UpgradeResource": "Elixir", + "UpgradeCost": 50000, + "Damage": 150, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 30, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "2": { + "Level": 2, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 8, + "UpgradeResource": "Elixir", + "UpgradeCost": 100000, + "Damage": 180, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 30, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "3": { + "Level": 3, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 2, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 12, + "UpgradeResource": "Elixir", + "UpgradeCost": 200000, + "Damage": 210, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 30, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "4": { + "Level": 4, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 3, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 24, + "UpgradeResource": "Elixir", + "UpgradeCost": 600000, + "Damage": 240, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 30, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "5": { + "Level": 5, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 6, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 1500000, + "Damage": 270, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 30, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "6": { + "Level": 6, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 7, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 2500000, + "Damage": 320, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 27, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "7": { + "Level": 7, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 4200000, + "Damage": 400, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 24, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "8": { + "Level": 8, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir", + "UpgradeCost": 6300000, + "Damage": 480, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 22, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "9": { + "Level": 9, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 300, + "UpgradeResource": "Elixir", + "UpgradeCost": 16000000, + "Damage": 560, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 20, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "10": { + "Level": 10, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 13, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 336, + "UpgradeResource": "Elixir", + "UpgradeCost": 18500000, + "Damage": 600, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 22, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + }, + "11": { + "Level": 11, + "TID": "TID_LIGHTNING_STORM", + "InfoTID": "TID_LIGHTNING_STORM_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 14, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 336, + "UpgradeResource": "Elixir", + "UpgradeCost": 18500000, + "Damage": 640, + "Radius": 200, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_lightning", + "BigPicture": "icon_spell_lightning", + "PreDeployEffect": "Lightning predeploy", + "DeployEffect": "Lightning area small", + "ChargingEffect": "Lightning Spell", + "HitEffect": "Lightning Spell Hit", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 100, + "StrengthWeight": 22, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "FreezeOuterTimeMS": 100, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellLightning" + } + }, + "Healing Spell": { + "1": { + "Level": 1, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 2, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 5, + "UpgradeResource": "Elixir", + "UpgradeCost": 75000, + "Damage": "-15", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 230, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "2": { + "Level": 2, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 2, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 10, + "UpgradeResource": "Elixir", + "UpgradeCost": 150000, + "Damage": "-20", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 215, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "3": { + "Level": 3, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 4, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 20, + "UpgradeResource": "Elixir", + "UpgradeCost": 300000, + "Damage": "-25", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 200, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "4": { + "Level": 4, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 5, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 36, + "UpgradeResource": "Elixir", + "UpgradeCost": 900000, + "Damage": "-30", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 190, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "5": { + "Level": 5, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 6, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 1800000, + "Damage": "-35", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 180, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "6": { + "Level": 6, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 7, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 3000000, + "Damage": "-40", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 170, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "7": { + "Level": 7, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 8, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 8500000, + "Damage": "-45", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 170, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "8": { + "Level": 8, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 11, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 318, + "UpgradeResource": "Elixir", + "UpgradeCost": 17000000, + "Damage": "-50", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 200, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "9": { + "Level": 9, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 13, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 360, + "UpgradeResource": "Elixir", + "UpgradeCost": 19000000, + "Damage": "-55", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 200, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + }, + "10": { + "Level": 10, + "TID": "TID_HEALING_WAVE", + "InfoTID": "TID_HEALING_WAVE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 14, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 360, + "UpgradeResource": "Elixir", + "UpgradeCost": 19000000, + "Damage": "-60", + "Radius": 500, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_healing", + "BigPicture": "icon_spell_healing", + "PreDeployEffect": "Heal predeploy", + "DeployEffect": "Heal area", + "DeployEffect2": "Heal area top", + "HitEffect": "Heal spell", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 200, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 55, + "PreviewScenario": "SpellHeal" + } + }, + "Rage Spell": { + "1": { + "Level": 1, + "TID": "TID_HASTE", + "InfoTID": "TID_HASTE_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 3, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 12, + "UpgradeResource": "Elixir", + "UpgradeCost": 400000, + "BoostTimeMS": 1000, + "SpeedBoost": 20, + "SpeedBoost2": 10, + "DamageBoostPercent": 130, + "Radius": 500, + "NumberOfHits": 60, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_rage", + "BigPicture": "icon_spell_rage", + "PreDeployEffect": "Rage predeploy", + "DeployEffect": "Rage deploy", + "DeployEffect2": "Rage deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 100, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellRage" + }, + "2": { + "Level": 2, + "TID": "TID_HASTE", + "InfoTID": "TID_HASTE_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 3, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 24, + "UpgradeResource": "Elixir", + "UpgradeCost": 800000, + "BoostTimeMS": 1000, + "SpeedBoost": 22, + "SpeedBoost2": 11, + "DamageBoostPercent": 140, + "Radius": 500, + "NumberOfHits": 60, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_rage", + "BigPicture": "icon_spell_rage", + "PreDeployEffect": "Rage predeploy", + "DeployEffect": "Rage deploy", + "DeployEffect2": "Rage deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 95, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellRage" + }, + "3": { + "Level": 3, + "TID": "TID_HASTE", + "InfoTID": "TID_HASTE_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 4, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 48, + "UpgradeResource": "Elixir", + "UpgradeCost": 1600000, + "BoostTimeMS": 1000, + "SpeedBoost": 24, + "SpeedBoost2": 12, + "DamageBoostPercent": 150, + "Radius": 500, + "NumberOfHits": 60, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_rage", + "BigPicture": "icon_spell_rage", + "PreDeployEffect": "Rage predeploy", + "DeployEffect": "Rage deploy", + "DeployEffect2": "Rage deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 90, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellRage" + }, + "4": { + "Level": 4, + "TID": "TID_HASTE", + "InfoTID": "TID_HASTE_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 5, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 2400000, + "BoostTimeMS": 1000, + "SpeedBoost": 26, + "SpeedBoost2": 13, + "DamageBoostPercent": 160, + "Radius": 500, + "NumberOfHits": 60, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_rage", + "BigPicture": "icon_spell_rage", + "PreDeployEffect": "Rage predeploy", + "DeployEffect": "Rage deploy", + "DeployEffect2": "Rage deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 85, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellRage" + }, + "5": { + "Level": 5, + "TID": "TID_HASTE", + "InfoTID": "TID_HASTE_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 6, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 7000000, + "BoostTimeMS": 1000, + "SpeedBoost": 28, + "SpeedBoost2": 14, + "DamageBoostPercent": 170, + "Radius": 500, + "NumberOfHits": 60, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_rage", + "BigPicture": "icon_spell_rage", + "PreDeployEffect": "Rage predeploy", + "DeployEffect": "Rage deploy", + "DeployEffect2": "Rage deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 80, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellRage" + }, + "6": { + "Level": 6, + "TID": "TID_HASTE", + "InfoTID": "TID_HASTE_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 10, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 7000000, + "BoostTimeMS": 1000, + "SpeedBoost": 30, + "SpeedBoost2": 15, + "DamageBoostPercent": 180, + "Radius": 500, + "NumberOfHits": 60, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_rage", + "BigPicture": "icon_spell_rage", + "PreDeployEffect": "Rage predeploy", + "DeployEffect": "Rage deploy", + "DeployEffect2": "Rage deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 95, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellRage" + } + }, + "Jump Spell": { + "1": { + "Level": 1, + "TID": "TID_JUMP_SPELL", + "InfoTID": "TID_JUMP_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 4, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 2000000, + "JumpHousingLimit": 100, + "JumpBoostMS": 400, + "Radius": 350, + "NumberOfHits": 66, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_jump", + "BigPicture": "icon_spell_jump", + "PreDeployEffect": "Jump predeploy", + "DeployEffect": "Jump deploy lvl1", + "DeployEffect2": "Jump deploy top lvl1", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 250, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "PreviewScenario": "SpellJump" + }, + "2": { + "Level": 2, + "TID": "TID_JUMP_SPELL", + "InfoTID": "TID_JUMP_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 5, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 3400000, + "JumpHousingLimit": 100, + "JumpBoostMS": 400, + "Radius": 350, + "NumberOfHits": 133, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_jump", + "BigPicture": "icon_spell_jump", + "PreDeployEffect": "Jump predeploy", + "DeployEffect": "Jump deploy lvl2", + "DeployEffect2": "Jump deploy top lvl2", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 170, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "PreviewScenario": "SpellJump" + }, + "3": { + "Level": 3, + "TID": "TID_JUMP_SPELL", + "InfoTID": "TID_JUMP_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 8, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 7200000, + "JumpHousingLimit": 100, + "JumpBoostMS": 400, + "Radius": 350, + "NumberOfHits": 199, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_jump", + "BigPicture": "icon_spell_jump", + "PreDeployEffect": "Jump predeploy", + "DeployEffect": "Jump deploy lvl3", + "DeployEffect2": "Jump deploy top lvl3", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 130, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "PreviewScenario": "SpellJump" + }, + "4": { + "Level": 4, + "TID": "TID_JUMP_SPELL", + "InfoTID": "TID_JUMP_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 11, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 312, + "UpgradeResource": "Elixir", + "UpgradeCost": 16500000, + "JumpHousingLimit": 100, + "JumpBoostMS": 400, + "Radius": 350, + "NumberOfHits": 266, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_jump", + "BigPicture": "icon_spell_jump", + "PreDeployEffect": "Jump predeploy", + "DeployEffect": "Jump deploy lvl4", + "DeployEffect2": "Jump deploy top lvl4", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 110, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "PreviewScenario": "SpellJump" + }, + "5": { + "Level": 5, + "TID": "TID_JUMP_SPELL", + "InfoTID": "TID_JUMP_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 13, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 312, + "UpgradeResource": "Elixir", + "UpgradeCost": 16500000, + "JumpHousingLimit": 100, + "JumpBoostMS": 400, + "Radius": 350, + "NumberOfHits": 333, + "RandomRadius": 400, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_jump", + "BigPicture": "icon_spell_jump", + "PreDeployEffect": "Jump predeploy", + "DeployEffect": "Jump deploy lvl5", + "DeployEffect2": "Jump deploy top lvl5", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 90, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "PreviewScenario": "SpellJump" + } + }, + "Freeze Spell": { + "1": { + "Level": 1, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 7, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 36, + "UpgradeResource": "Elixir", + "UpgradeCost": 1200000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl1", + "DeployEffect2": "Freeze deploy2 lvl1", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 2500, + "StrengthWeight": 1000, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 2250, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + }, + "2": { + "Level": 2, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 7, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 62, + "UpgradeResource": "Elixir", + "UpgradeCost": 1700000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl2", + "DeployEffect2": "Freeze deploy2 lvl2", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 3000, + "StrengthWeight": 1150, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 2700, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + }, + "3": { + "Level": 3, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 78, + "UpgradeResource": "Elixir", + "UpgradeCost": 3000000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl3", + "DeployEffect2": "Freeze deploy2 lvl3", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 3500, + "StrengthWeight": 1300, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 3150, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + }, + "4": { + "Level": 4, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 4200000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl4", + "DeployEffect2": "Freeze deploy2 lvl4", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 4000, + "StrengthWeight": 1450, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 3600, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + }, + "5": { + "Level": 5, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 6000000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl5", + "DeployEffect2": "Freeze deploy2 lvl5", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 4500, + "StrengthWeight": 1600, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 4050, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + }, + "6": { + "Level": 6, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir", + "UpgradeCost": 7000000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl6", + "DeployEffect2": "Freeze deploy2 lvl6", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 5000, + "StrengthWeight": 1750, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 4500, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + }, + "7": { + "Level": 7, + "TID": "TID_FREEZE_SPELL", + "InfoTID": "TID_FREEZE_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir", + "UpgradeCost": 7000000, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 400, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_freeze", + "BigPicture": "icon_spell_freeze", + "PreDeployEffect": "Freeze predeploy", + "DeployEffect": "Freeze deploy lvl7", + "DeployEffect2": "Freeze deploy2 lvl7", + "RandomRadiusAffectsOnlyGfx": true, + "FreezeTimeMS": 5500, + "StrengthWeight": 1900, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "FreezeOuterTimeMS": 4950, + "AffectsSiegeMachines": true, + "PreviewScenario": "SpellFreeze" + } + }, + "Santa's Surprise": { + "1": { + "Level": 1, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 150, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 5, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "2": { + "Level": 2, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 160, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 6, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "3": { + "Level": 3, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 170, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 7, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "4": { + "Level": 4, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 180, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 8, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "5": { + "Level": 5, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 190, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 9, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "6": { + "Level": 6, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 200, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 10, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "7": { + "Level": 7, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 220, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 11, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "8": { + "Level": 8, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 240, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 12, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "9": { + "Level": 9, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 260, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 13, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "10": { + "Level": 10, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 280, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 14, + "ImmunityTH_CC": true, + "ImmunityStorages": true + }, + "11": { + "Level": 11, + "TID": "TID_XMAS_SPELL", + "InfoTID": "TID_XMAS_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 4500, + "HitTimeMS": 6000, + "UpgradeResource": "Elixir", + "Damage": 300, + "Radius": 100, + "NumberOfHits": 5, + "RandomRadius": 100, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_xmas", + "BigPicture": "icon_spell_xmas", + "DeployEffect": "xmas Red Smoke", + "DeployEffect2Delay": 2500, + "DeployEffect2": "xmas test", + "ChargingEffect": "xmas Drop Bombs", + "HitEffect": "xmas boom", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Xmas TombStone", + "NumObstacles": 5, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DisableDonate": true, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 15, + "ImmunityTH_CC": true, + "ImmunityStorages": true + } + }, + "Poison Spell": { + "1": { + "Level": 1, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 8, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 10000, + "BoostTimeMS": 500, + "SpeedBoost": "-26", + "SpeedBoost2": "-26", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-160", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 90, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-35", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "2": { + "Level": 2, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 6, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 24, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 20000, + "BoostTimeMS": 500, + "SpeedBoost": "-30", + "SpeedBoost2": "-30", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-170", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 115, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-40", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "3": { + "Level": 3, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 7, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 62, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 43000, + "BoostTimeMS": 500, + "SpeedBoost": "-34", + "SpeedBoost2": "-34", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-190", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 145, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-45", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "4": { + "Level": 4, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 70000, + "BoostTimeMS": 500, + "SpeedBoost": "-38", + "SpeedBoost2": "-38", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-210", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 180, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-50", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "5": { + "Level": 5, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 150, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 110000, + "BoostTimeMS": 500, + "SpeedBoost": "-40", + "SpeedBoost2": "-40", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-230", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 220, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-55", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "6": { + "Level": 6, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 155000, + "BoostTimeMS": 500, + "SpeedBoost": "-42", + "SpeedBoost2": "-42", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-250", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 260, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-60", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "7": { + "Level": 7, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 11, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 240, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 230000, + "BoostTimeMS": 500, + "SpeedBoost": "-44", + "SpeedBoost2": "-44", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-270", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 280, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-65", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "8": { + "Level": 8, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 12, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 318, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 320000, + "BoostTimeMS": 500, + "SpeedBoost": "-46", + "SpeedBoost2": "-46", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-275", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 300, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-68", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "9": { + "Level": 9, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 13, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 360, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 350000, + "BoostTimeMS": 500, + "SpeedBoost": "-48", + "SpeedBoost2": "-48", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-280", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 320, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-70", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + }, + "10": { + "Level": 10, + "TID": "TID_POISON_CLOUD", + "InfoTID": "TID_POISON_CLOUD_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 14, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 360, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 350000, + "BoostTimeMS": 500, + "SpeedBoost": "-50", + "SpeedBoost2": "-50", + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 0, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_toxic", + "BigPicture": "icon_spell_toxic", + "PreDeployEffect": "toxic_Predeploy", + "DeployEffect": "Toxic deploy ground halloween", + "DeployEffect2": "Toxic deploy halloween", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": "-285", + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "HeroDamageMultiplier": 5, + "PoisonDPS": 340, + "PoisonIncreaseSlowly": true, + "AttackSpeedBoost": "-72", + "BoostLinkedToPoison": true, + "PoisonAffectAir": true, + "BoostDefenders": true, + "ImmunityTH_CC": true, + "ImmunityStorages": true, + "ImmunityWalls": true, + "ImmunityOtherBuildings": true, + "PreviewScenario": "SpellPoison" + } + }, + "Earthquake Spell": { + "1": { + "Level": 1, + "TID": "TID_EARTHQUAKE", + "InfoTID": "TID_EARTHQUAKE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 18, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 12000, + "BuildingDamagePermil": 29, + "Radius": 350, + "NumberOfHits": 5, + "RandomRadius": 200, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_earthquake", + "BigPicture": "icon_spell_earthquake", + "PreDeployEffect": "Earthquake_Predeploy", + "DeployEffect": "EarthQuake_deploy_ground_0", + "DeployEffect2": "EarthQuake_deploy_0", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 150, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", + "PreferredTarget": "Wall", + "PreferredTargetDamageMod": 5, + "ImmunitySiegeMachines": true, + "ImmunityOtherCharacters": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellQuake" + }, + "2": { + "Level": 2, + "TID": "TID_EARTHQUAKE", + "InfoTID": "TID_EARTHQUAKE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 6, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 24000, + "BuildingDamagePermil": 34, + "Radius": 380, + "NumberOfHits": 5, + "RandomRadius": 200, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_earthquake", + "BigPicture": "icon_spell_earthquake", + "PreDeployEffect": "Earthquake_Predeploy", + "DeployEffect": "EarthQuake_deploy_ground", + "DeployEffect2": "EarthQuake_deploy", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 145, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", + "PreferredTarget": "Wall", + "PreferredTargetDamageMod": 5, + "ImmunitySiegeMachines": true, + "ImmunityOtherCharacters": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellQuake" + }, + "3": { + "Level": 3, + "TID": "TID_EARTHQUAKE", + "InfoTID": "TID_EARTHQUAKE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 7, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 102, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 51000, + "BuildingDamagePermil": 42, + "Radius": 410, + "NumberOfHits": 5, + "RandomRadius": 200, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_earthquake", + "BigPicture": "icon_spell_earthquake", + "PreDeployEffect": "Earthquake_Predeploy", + "DeployEffect": "EarthQuake_deploy_ground_2", + "DeployEffect2": "EarthQuake_deploy_2", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 140, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", + "PreferredTarget": "Wall", + "PreferredTargetDamageMod": 5, + "ImmunitySiegeMachines": true, + "ImmunityOtherCharacters": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellQuake" + }, + "4": { + "Level": 4, + "TID": "TID_EARTHQUAKE", + "InfoTID": "TID_EARTHQUAKE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 186, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 84000, + "BuildingDamagePermil": 50, + "Radius": 440, + "NumberOfHits": 5, + "RandomRadius": 200, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_earthquake", + "BigPicture": "icon_spell_earthquake", + "PreDeployEffect": "Earthquake_Predeploy", + "DeployEffect": "EarthQuake_deploy_ground_3", + "DeployEffect2": "EarthQuake_deploy_3", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 135, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", + "PreferredTarget": "Wall", + "PreferredTargetDamageMod": 5, + "ImmunitySiegeMachines": true, + "ImmunityOtherCharacters": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellQuake" + }, + "5": { + "Level": 5, + "TID": "TID_EARTHQUAKE", + "InfoTID": "TID_EARTHQUAKE_INFO", + "SpellForgeLevel": 2, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 186, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 84000, + "BuildingDamagePermil": 58, + "Radius": 470, + "NumberOfHits": 5, + "RandomRadius": 200, + "TimeBetweenHitsMS": 400, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_earthquake", + "BigPicture": "icon_spell_earthquake", + "PreDeployEffect": "Earthquake_Predeploy", + "DeployEffect": "EarthQuake_deploy_ground_4", + "DeployEffect2": "EarthQuake_deploy_4", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 130, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_BUILDINGS_AND_WALLS", + "PreferredTarget": "Wall", + "PreferredTargetDamageMod": 5, + "ImmunitySiegeMachines": true, + "ImmunityOtherCharacters": true, + "ImmunityStorages": true, + "PreviewScenario": "SpellQuake" + } + }, + "Haste Spell": { + "1": { + "Level": 1, + "TID": "TID_SPEEDUP", + "InfoTID": "TID_SPEEDUP_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 36, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 16000, + "BoostTimeMS": 1000, + "SpeedBoost": 28, + "SpeedBoost2": 14, + "Radius": 400, + "NumberOfHits": 40, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_speedup", + "BigPicture": "icon_spell_speedup", + "PreDeployEffect": "speedup_Predeploy", + "DeployEffect": "Speedup_deploy_lvl1", + "DeployEffect2": "Speedup_deploy_top_lvl1", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 200, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellBooster" + }, + "2": { + "Level": 2, + "TID": "TID_SPEEDUP", + "InfoTID": "TID_SPEEDUP_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 7, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 62, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 34000, + "BoostTimeMS": 1000, + "SpeedBoost": 34, + "SpeedBoost2": 17, + "Radius": 400, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_speedup", + "BigPicture": "icon_spell_speedup", + "PreDeployEffect": "speedup_Predeploy", + "DeployEffect": "Speedup_deploy_lvl2", + "DeployEffect2": "Speedup_deploy_top_lvl2", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 200, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellBooster" + }, + "3": { + "Level": 3, + "TID": "TID_SPEEDUP", + "InfoTID": "TID_SPEEDUP_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 120, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 60000, + "BoostTimeMS": 1000, + "SpeedBoost": 40, + "SpeedBoost2": 20, + "Radius": 400, + "NumberOfHits": 80, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_speedup", + "BigPicture": "icon_spell_speedup", + "PreDeployEffect": "speedup_Predeploy", + "DeployEffect": "Speedup_deploy_lvl3", + "DeployEffect2": "Speedup_deploy_top_lvl3", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 180, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellBooster" + }, + "4": { + "Level": 4, + "TID": "TID_SPEEDUP", + "InfoTID": "TID_SPEEDUP_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 186, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 77000, + "BoostTimeMS": 1000, + "SpeedBoost": 46, + "SpeedBoost2": 23, + "Radius": 400, + "NumberOfHits": 100, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_speedup", + "BigPicture": "icon_spell_speedup", + "PreDeployEffect": "speedup_Predeploy", + "DeployEffect": "Speedup_deploy_lvl4", + "DeployEffect2": "Speedup_deploy_top_lvl4", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 180, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellBooster" + }, + "5": { + "Level": 5, + "TID": "TID_SPEEDUP", + "InfoTID": "TID_SPEEDUP_INFO", + "SpellForgeLevel": 3, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 186, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 77000, + "BoostTimeMS": 1000, + "SpeedBoost": 52, + "SpeedBoost2": 26, + "Radius": 400, + "NumberOfHits": 120, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_speedup", + "BigPicture": "icon_spell_speedup", + "PreDeployEffect": "speedup_Predeploy", + "DeployEffect": "Speedup_deploy_lvl5", + "DeployEffect2": "Speedup_deploy_top_lvl5", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 180, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "PreviewScenario": "SpellBooster" + } + }, + "Clone Spell": { + "1": { + "Level": 1, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 1, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 42, + "UpgradeResource": "Elixir", + "UpgradeCost": 2100000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 300, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 22, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "2": { + "Level": 2, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 8, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 72, + "UpgradeResource": "Elixir", + "UpgradeCost": 3400000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 330, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 24, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "3": { + "Level": 3, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 8, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 84, + "UpgradeResource": "Elixir", + "UpgradeCost": 4200000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 360, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 26, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "4": { + "Level": 4, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 9, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 96, + "UpgradeResource": "Elixir", + "UpgradeCost": 5600000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 360, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 28, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "5": { + "Level": 5, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 9, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 168, + "UpgradeResource": "Elixir", + "UpgradeCost": 7200000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 360, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 30, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "6": { + "Level": 6, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 11, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 216, + "UpgradeResource": "Elixir", + "UpgradeCost": 15500000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 330, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 34, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "7": { + "Level": 7, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 12, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 318, + "UpgradeResource": "Elixir", + "UpgradeCost": 18000000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 310, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 38, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + }, + "8": { + "Level": 8, + "TID": "TID_DUPLICATE_SPELL", + "InfoTID": "TID_DUPLICATE_SPELL_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 13, + "DonateCost": 15, + "HousingSpace": 3, + "TrainingTime": 540, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 318, + "UpgradeResource": "Elixir", + "UpgradeCost": 18000000, + "Radius": 350, + "NumberOfHits": 60, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_clone", + "BigPicture": "icon_spell_clone", + "PreDeployEffect": "Clone_Predeploy", + "DeployEffect": "Clone deploy", + "DeployEffect2": "Clone deploy top", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 290, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DuplicateHousing": 42, + "DuplicateLifetime": 30000, + "PreviewScenario": "SpellBooster" + } + }, + "Skeleton Spell": { + "1": { + "Level": 1, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 32, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 22000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon1", + "StrengthWeight": 460, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 12, + "SpawnDuration": 12000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "2": { + "Level": 2, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 62, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 34000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon2", + "StrengthWeight": 470, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 13, + "SpawnDuration": 13000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "3": { + "Level": 3, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 96, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 50000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon3", + "StrengthWeight": 480, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 14, + "SpawnDuration": 14000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "4": { + "Level": 4, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 102, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 80000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon4", + "StrengthWeight": 500, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 15, + "SpawnDuration": 15000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "5": { + "Level": 5, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 132, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 100000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon5", + "StrengthWeight": 520, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 16, + "SpawnDuration": 16000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "6": { + "Level": 6, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 168, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 150000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon6", + "StrengthWeight": 540, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 17, + "SpawnDuration": 17000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "7": { + "Level": 7, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 11, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 318, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 320000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon7", + "StrengthWeight": 560, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 18, + "SpawnDuration": 18000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + }, + "8": { + "Level": 8, + "TID": "TID_CREATE_SKELETONS_SPELL", + "InfoTID": "TID_CREATE_SKELETONS_SPELL_INFO", + "SpellForgeLevel": 4, + "LaboratoryLevel": 13, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 318, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 320000, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_skeleton", + "BigPicture": "icon_spell_skeleton", + "PreDeployEffect": "skele_Predeploy", + "DeployEffect": "SkeleSpell Summon8", + "StrengthWeight": 580, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND", + "SummonTroop": "ShieldedSkeleton", + "UnitsToSpawn": 19, + "SpawnDuration": 19000, + "SpawnFirstGroupSize": 3, + "PreviewScenario": "SpellSkeleton" + } + }, + "Birthday Boom": { + "1": { + "Level": 1, + "TID": "TID_BIRTHDAY_SPELL", + "InfoTID": "TID_BIRTHDAY_SPELL_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 0, + "ChargingTimeMS": 150, + "HitTimeMS": 1750, + "UpgradeResource": "Elixir", + "SpeedBoost2": 0, + "Damage": 500, + "Radius": 250, + "NumberOfHits": 1, + "RandomRadius": 0, + "TimeBetweenHitsMS": 0, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_birthday", + "BigPicture": "icon_spell_birthday", + "PreDeployEffect": "Birthday predeploy", + "DeployEffect": "BirthdaySpell Summon2", + "DeployEffect2": "BirthdaySpell Summon1", + "ChargingEffect": "Birthday Hit", + "HitEffect": "Birthday Spell Hit", + "RandomRadiusAffectsOnlyGfx": false, + "SpawnObstacle": "Birthday TombStone", + "NumObstacles": 3, + "StrengthWeight": 0, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "DamageTHPercent": 70, + "DisableDonate": true, + "ScaleByTH": true, + "EnabledByCalendar": true, + "PauseCombatComponentsMs": 2000 + } + }, + "Bat Spell": { + "1": { + "Level": 1, + "TID": "TID_SPELL_BATS", + "InfoTID": "TID_SPELL_BATS_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 42, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 26000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_bats", + "BigPicture": "icon_spell_bats", + "PreDeployEffect": "bat_Predeploy", + "DeployEffect": "BatSpell Summon1", + "StrengthWeight": 460, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", + "SummonTroop": "SpellBat", + "UnitsToSpawn": 7, + "SpawnDuration": 4200, + "SpawnFirstGroupSize": 1, + "PreviewScenario": "SpellBat" + }, + "2": { + "Level": 2, + "TID": "TID_SPELL_BATS", + "InfoTID": "TID_SPELL_BATS_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 84, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 51000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_bats", + "BigPicture": "icon_spell_bats", + "PreDeployEffect": "bat_Predeploy", + "DeployEffect": "BatSpell Summon2", + "StrengthWeight": 470, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", + "SummonTroop": "SpellBat", + "UnitsToSpawn": 9, + "SpawnDuration": 5400, + "SpawnFirstGroupSize": 1, + "PreviewScenario": "SpellBat" + }, + "3": { + "Level": 3, + "TID": "TID_SPELL_BATS", + "InfoTID": "TID_SPELL_BATS_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 8, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 126, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 70000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_bats", + "BigPicture": "icon_spell_bats", + "PreDeployEffect": "bat_Predeploy", + "DeployEffect": "BatSpell Summon3", + "StrengthWeight": 480, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", + "SummonTroop": "SpellBat", + "UnitsToSpawn": 11, + "SpawnDuration": 6600, + "SpawnFirstGroupSize": 1, + "PreviewScenario": "SpellBat" + }, + "4": { + "Level": 4, + "TID": "TID_SPELL_BATS", + "InfoTID": "TID_SPELL_BATS_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 144, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 95000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_bats", + "BigPicture": "icon_spell_bats", + "PreDeployEffect": "bat_Predeploy", + "DeployEffect": "BatSpell Summon4", + "StrengthWeight": 500, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", + "SummonTroop": "SpellBat", + "UnitsToSpawn": 16, + "SpawnDuration": 9600, + "SpawnFirstGroupSize": 1, + "PreviewScenario": "SpellBat" + }, + "5": { + "Level": 5, + "TID": "TID_SPELL_BATS", + "InfoTID": "TID_SPELL_BATS_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 324, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 330000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_bats", + "BigPicture": "icon_spell_bats", + "PreDeployEffect": "bat_Predeploy", + "DeployEffect": "BatSpell Summon5", + "StrengthWeight": 520, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", + "SummonTroop": "SpellBat", + "UnitsToSpawn": 21, + "SpawnDuration": 12600, + "SpawnFirstGroupSize": 1, + "PreviewScenario": "SpellBat" + }, + "6": { + "Level": 6, + "TID": "TID_SPELL_BATS", + "InfoTID": "TID_SPELL_BATS_INFO", + "SpellForgeLevel": 5, + "LaboratoryLevel": 13, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 0, + "UpgradeTimeH": 324, + "UpgradeResource": "DarkElixir", + "UpgradeCost": 330000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 225, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_bats", + "BigPicture": "icon_spell_bats", + "PreDeployEffect": "bat_Predeploy", + "DeployEffect": "BatSpell Summon6", + "StrengthWeight": 560, + "ProductionBuilding": "Mini Spell Factory", + "TargetInfoString": "TID_BUILDING_CLASS_DEFENSE", + "SummonTroop": "SpellBat", + "UnitsToSpawn": 22, + "SpawnDuration": 13200, + "SpawnFirstGroupSize": 1, + "PreviewScenario": "SpellBat" + } + }, + "Invisibility Spell": { + "1": { + "Level": 1, + "TID": "TID_INVISIBILITY_SPELL", + "InfoTID": "TID_INVISIBILITY_SPELL_INFO", + "SpellForgeLevel": 6, + "LaboratoryLevel": 1, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 132, + "UpgradeResource": "Elixir", + "UpgradeCost": 5600000, + "Radius": 400, + "NumberOfHits": 15, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_invisibility", + "BigPicture": "icon_spell_invisibility", + "PreDeployEffect": "Invisibility_Predeploy", + "DeployEffect": "Invisibility area lvl1", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 210, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "InvisibilityTime": 600, + "ImmunitySiegeMachines": true, + "ImmunityWalls": true, + "PreviewScenario": "SpellInvisibility" + }, + "2": { + "Level": 2, + "TID": "TID_INVISIBILITY_SPELL", + "InfoTID": "TID_INVISIBILITY_SPELL_INFO", + "SpellForgeLevel": 6, + "LaboratoryLevel": 9, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 144, + "UpgradeResource": "Elixir", + "UpgradeCost": 7500000, + "Radius": 400, + "NumberOfHits": 16, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_invisibility", + "BigPicture": "icon_spell_invisibility", + "PreDeployEffect": "Invisibility_Predeploy", + "DeployEffect": "Invisibility area lvl2", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 215, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "InvisibilityTime": 600, + "ImmunitySiegeMachines": true, + "ImmunityWalls": true, + "PreviewScenario": "SpellInvisibility" + }, + "3": { + "Level": 3, + "TID": "TID_INVISIBILITY_SPELL", + "InfoTID": "TID_INVISIBILITY_SPELL_INFO", + "SpellForgeLevel": 6, + "LaboratoryLevel": 10, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 228, + "UpgradeResource": "Elixir", + "UpgradeCost": 9000000, + "Radius": 400, + "NumberOfHits": 17, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_invisibility", + "BigPicture": "icon_spell_invisibility", + "PreDeployEffect": "Invisibility_Predeploy", + "DeployEffect": "Invisibility area lvl3", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 220, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "InvisibilityTime": 600, + "ImmunitySiegeMachines": true, + "ImmunityWalls": true, + "PreviewScenario": "SpellInvisibility" + }, + "4": { + "Level": 4, + "TID": "TID_INVISIBILITY_SPELL", + "InfoTID": "TID_INVISIBILITY_SPELL_INFO", + "SpellForgeLevel": 6, + "LaboratoryLevel": 11, + "DonateCost": 5, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 800, + "ChargingTimeMS": 300, + "HitTimeMS": 400, + "UpgradeTimeH": 228, + "UpgradeResource": "Elixir", + "UpgradeCost": 9000000, + "Radius": 400, + "NumberOfHits": 18, + "RandomRadius": 200, + "TimeBetweenHitsMS": 250, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_invisibility", + "BigPicture": "icon_spell_invisibility", + "PreDeployEffect": "Invisibility_Predeploy", + "DeployEffect": "Invisibility area lvl4", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 225, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "InvisibilityTime": 600, + "ImmunitySiegeMachines": true, + "ImmunityWalls": true, + "PreviewScenario": "SpellInvisibility" + } + }, + "Recall Spell": { + "1": { + "Level": 1, + "TID": "TID_SPELL_RECALL", + "InfoTID": "TID_SPELL_RECALL_INFO", + "SpellForgeLevel": 7, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 228, + "UpgradeResource": "Elixir", + "UpgradeCost": 7500000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 500, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_recall", + "BigPicture": "icon_spell_recall", + "PreDeployEffect": "Recall_Predeploy", + "DeployEffect": "RecallDeployAuraGround", + "DeployEffect2": "RecallDeployAuraTop", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 120, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "RecallHousing": 83, + "PreviewScenario": "SpellRecall" + }, + "2": { + "Level": 2, + "TID": "TID_SPELL_RECALL", + "InfoTID": "TID_SPELL_RECALL_INFO", + "SpellForgeLevel": 7, + "LaboratoryLevel": 11, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 276, + "UpgradeResource": "Elixir", + "UpgradeCost": 14000000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 500, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_recall", + "BigPicture": "icon_spell_recall", + "PreDeployEffect": "Recall_Predeploy", + "DeployEffect": "RecallDeployAuraGround", + "DeployEffect2": "RecallDeployAuraTop", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 130, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "RecallHousing": 89, + "PreviewScenario": "SpellRecall" + }, + "3": { + "Level": 3, + "TID": "TID_SPELL_RECALL", + "InfoTID": "TID_SPELL_RECALL_INFO", + "SpellForgeLevel": 7, + "LaboratoryLevel": 12, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 318, + "UpgradeResource": "Elixir", + "UpgradeCost": 17500000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 500, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_recall", + "BigPicture": "icon_spell_recall", + "PreDeployEffect": "Recall_Predeploy", + "DeployEffect": "RecallDeployAuraGround", + "DeployEffect2": "RecallDeployAuraTop", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 140, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "RecallHousing": 95, + "PreviewScenario": "SpellRecall" + }, + "4": { + "Level": 4, + "TID": "TID_SPELL_RECALL", + "InfoTID": "TID_SPELL_RECALL_INFO", + "SpellForgeLevel": 7, + "LaboratoryLevel": 13, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 360, + "UpgradeResource": "Elixir", + "UpgradeCost": 19500000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 500, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_recall", + "BigPicture": "icon_spell_recall", + "PreDeployEffect": "Recall_Predeploy", + "DeployEffect": "RecallDeployAuraGround", + "DeployEffect2": "RecallDeployAuraTop", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 145, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "RecallHousing": 101, + "PreviewScenario": "SpellRecall" + }, + "5": { + "Level": 5, + "TID": "TID_SPELL_RECALL", + "InfoTID": "TID_SPELL_RECALL_INFO", + "SpellForgeLevel": 7, + "LaboratoryLevel": 14, + "DonateCost": 10, + "HousingSpace": 2, + "TrainingTime": 360, + "DeployTimeMS": 800, + "ChargingTimeMS": 0, + "HitTimeMS": 100, + "UpgradeTimeH": 360, + "UpgradeResource": "Elixir", + "UpgradeCost": 19500000, + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 500, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 100, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_recall", + "BigPicture": "icon_spell_recall", + "PreDeployEffect": "Recall_Predeploy", + "DeployEffect": "RecallDeployAuraGround", + "DeployEffect2": "RecallDeployAuraTop", + "RandomRadiusAffectsOnlyGfx": true, + "StrengthWeight": 150, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_INFO_TARGET_TYPE_GROUND_AND_AIR", + "RecallHousing": 107, + "PreviewScenario": "SpellRecall" + } + }, + "Bag of Frostmites": { + "1": { + "Level": 1, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect", + "FreezeTimeMS": 1500, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 10, + "SpawnUpgradeLevel": 1, + "SpawnDuration": 5000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 6, + "FreezeOuterTimeMS": 1000, + "PreviewScenario": "SpellFrostmites" + }, + "2": { + "Level": 2, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect2", + "FreezeTimeMS": 1700, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 11, + "SpawnUpgradeLevel": 2, + "SpawnDuration": 6000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 7, + "FreezeOuterTimeMS": 1200, + "PreviewScenario": "SpellFrostmites" + }, + "3": { + "Level": 3, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect3", + "FreezeTimeMS": 1900, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 12, + "SpawnUpgradeLevel": 3, + "SpawnDuration": 7000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 8, + "FreezeOuterTimeMS": 1400, + "PreviewScenario": "SpellFrostmites" + }, + "4": { + "Level": 4, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect4", + "FreezeTimeMS": 2100, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 13, + "SpawnUpgradeLevel": 4, + "SpawnDuration": 8000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 9, + "FreezeOuterTimeMS": 1600, + "PreviewScenario": "SpellFrostmites" + }, + "5": { + "Level": 5, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect5", + "FreezeTimeMS": 2300, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 14, + "SpawnUpgradeLevel": 5, + "SpawnDuration": 9000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 10, + "FreezeOuterTimeMS": 1800, + "PreviewScenario": "SpellFrostmites" + }, + "6": { + "Level": 6, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect6", + "FreezeTimeMS": 2500, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 15, + "SpawnUpgradeLevel": 6, + "SpawnDuration": 10000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 11, + "FreezeOuterTimeMS": 2000, + "PreviewScenario": "SpellFrostmites" + }, + "7": { + "Level": 7, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect7", + "FreezeTimeMS": 2700, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 16, + "SpawnUpgradeLevel": 7, + "SpawnDuration": 11000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 12, + "FreezeOuterTimeMS": 2200, + "PreviewScenario": "SpellFrostmites" + }, + "8": { + "Level": 8, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect8", + "FreezeTimeMS": 2900, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 17, + "SpawnUpgradeLevel": 8, + "SpawnDuration": 12000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 13, + "FreezeOuterTimeMS": 2400, + "PreviewScenario": "SpellFrostmites" + }, + "9": { + "Level": 9, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect9", + "FreezeTimeMS": 3100, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 18, + "SpawnUpgradeLevel": 9, + "SpawnDuration": 13000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 14, + "FreezeOuterTimeMS": 2600, + "PreviewScenario": "SpellFrostmites" + }, + "10": { + "Level": 10, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect10", + "FreezeTimeMS": 3300, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 19, + "SpawnUpgradeLevel": 10, + "SpawnDuration": 14000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 15, + "FreezeOuterTimeMS": 2800, + "PreviewScenario": "SpellFrostmites" + }, + "11": { + "Level": 11, + "TID": "TID_SPELL_BAG_OF_FROSTMITES", + "InfoTID": "TID_SPELL_BAG_OF_FROSTMITES_INFO", + "SpellForgeLevel": 1, + "LaboratoryLevel": 1, + "DonateCost": 10, + "HousingSpace": 1, + "TrainingTime": 180, + "DeployTimeMS": 300, + "ChargingTimeMS": 0, + "HitTimeMS": 300, + "UpgradeResource": "Elixir", + "BoostTimeMS": 0, + "SpeedBoost": 0, + "SpeedBoost2": 0, + "Damage": 0, + "Radius": 350, + "NumberOfHits": 1, + "RandomRadius": 200, + "TimeBetweenHitsMS": 300, + "IconSWF": "sc/ui.sc", + "IconExportName": "icon_spell_frostmitebag", + "BigPicture": "icon_spell_frostmitebag", + "PreDeployEffect": "Frostmites Spell Predeploy", + "DeployEffect": "BagOfFrostmitesEffect11", + "FreezeTimeMS": 3500, + "StrengthWeight": 460, + "ProductionBuilding": "Spell Forge", + "TargetInfoString": "TID_PREFERRED_TARGET_ANY", + "SummonTroop": "BouncingFrostmite", + "UnitsToSpawn": 20, + "SpawnUpgradeLevel": 11, + "SpawnDuration": 15000, + "SpawnFirstGroupSize": 1, + "EnabledByCalendar": true, + "UpgradeLevelByTH": 16, + "FreezeOuterTimeMS": 3000, + "PreviewScenario": "SpellFrostmites" + } + } } \ No newline at end of file diff --git a/assets/json/supers.json b/assets/json/supers.json index 5bb91dc4..deb8681b 100644 --- a/assets/json/supers.json +++ b/assets/json/supers.json @@ -1,162 +1,162 @@ -{ - "SuperBarbarian": { - "Original": "Barbarian", - "MinOriginalLevel": 7, - "Replacement": "EliteBarbarian", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_BARB_INTRO_TH13" - }, - "SuperGoblin": { - "Original": "Goblin", - "MinOriginalLevel": 6, - "Replacement": "EliteGoblin", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_GOBLIN_INTRO_TH13" - }, - "SuperGiant": { - "Original": "Giant", - "MinOriginalLevel": 8, - "Replacement": "EliteGiant", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_GIANT_INTRO_TH13" - }, - "SuperWallbreaker": { - "Original": "Wall Breaker", - "MinOriginalLevel": 6, - "Replacement": "EliteWallBreaker", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_WALLBREAKER_INTRO_TH13" - }, - "SuperArcher": { - "Original": "Archer", - "MinOriginalLevel": 7, - "Replacement": "EliteArcher", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_ARCHER_INTRO_TH13" - }, - "SuperWitch": { - "Original": "Warlock", - "MinOriginalLevel": 4, - "Replacement": "Head Witch", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_WITCH_INTRO_TH13" - }, - "InfernoDragon": { - "Original": "BabyDragon", - "MinOriginalLevel": 5, - "Replacement": "InfernoDragon", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "INFERNO_DRAGON_INTRO_TH13" - }, - "SuperValkyrie": { - "Original": "Warrior Girl", - "MinOriginalLevel": 6, - "Replacement": "EliteValkyrie", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_VALKYRIE_INTRO_TH13" - }, - "SuperMinion": { - "Original": "Gargoyle", - "MinOriginalLevel": 7, - "Replacement": "Super Minion", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_MINION_INTRO_TH13" - }, - "SuperWizard": { - "Original": "Wizard", - "MinOriginalLevel": 8, - "Replacement": "Super Wizard", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_WIZARD_INTRO_TH13" - }, - "IceHound": { - "Original": "AirDefenceSeeker", - "MinOriginalLevel": 4, - "Replacement": "Ice Hound", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_LAVAHOUND_INTRO_TH13" - }, - "SuperBalloon": { - "Original": "Balloon", - "MinOriginalLevel": 7, - "Replacement": "HastyBalloon", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_BALLOON_INTRO_TH13" - }, - "SuperBowler": { - "Original": "Bowler", - "MinOriginalLevel": 3, - "Replacement": "Super Bowler", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_BOWLER_INTRO_TH13" - }, - "SuperDragon": { - "Original": "Dragon", - "MinOriginalLevel": 6, - "Replacement": "Super Dragon", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_DRAGON_INTRO_TH13" - }, - "SuperMiner": { - "Original": "Miner", - "MinOriginalLevel": 6, - "Replacement": "Super Miner", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_MINER_INTRO" - }, - "SuperHogRider": { - "Original": "Boar Rider", - "MinOriginalLevel": 9, - "Replacement": "Super Hog Rider", - "DurationH": 72, - "CooldownH": 72, - "Resource": "DarkElixir", - "ResourceCost": 25000, - "TrialNPC": "SUPER_HOG_INTRO" - } +{ + "SuperBarbarian": { + "Original": "Barbarian", + "MinOriginalLevel": 7, + "Replacement": "EliteBarbarian", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_BARB_INTRO_TH13" + }, + "SuperGoblin": { + "Original": "Goblin", + "MinOriginalLevel": 6, + "Replacement": "EliteGoblin", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_GOBLIN_INTRO_TH13" + }, + "SuperGiant": { + "Original": "Giant", + "MinOriginalLevel": 8, + "Replacement": "EliteGiant", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_GIANT_INTRO_TH13" + }, + "SuperWallbreaker": { + "Original": "Wall Breaker", + "MinOriginalLevel": 6, + "Replacement": "EliteWallBreaker", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_WALLBREAKER_INTRO_TH13" + }, + "SuperArcher": { + "Original": "Archer", + "MinOriginalLevel": 7, + "Replacement": "EliteArcher", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_ARCHER_INTRO_TH13" + }, + "SuperWitch": { + "Original": "Warlock", + "MinOriginalLevel": 4, + "Replacement": "Head Witch", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_WITCH_INTRO_TH13" + }, + "InfernoDragon": { + "Original": "BabyDragon", + "MinOriginalLevel": 5, + "Replacement": "InfernoDragon", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "INFERNO_DRAGON_INTRO_TH13" + }, + "SuperValkyrie": { + "Original": "Warrior Girl", + "MinOriginalLevel": 6, + "Replacement": "EliteValkyrie", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_VALKYRIE_INTRO_TH13" + }, + "SuperMinion": { + "Original": "Gargoyle", + "MinOriginalLevel": 7, + "Replacement": "Super Minion", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_MINION_INTRO_TH13" + }, + "SuperWizard": { + "Original": "Wizard", + "MinOriginalLevel": 8, + "Replacement": "Super Wizard", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_WIZARD_INTRO_TH13" + }, + "IceHound": { + "Original": "AirDefenceSeeker", + "MinOriginalLevel": 4, + "Replacement": "Ice Hound", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_LAVAHOUND_INTRO_TH13" + }, + "SuperBalloon": { + "Original": "Balloon", + "MinOriginalLevel": 7, + "Replacement": "HastyBalloon", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_BALLOON_INTRO_TH13" + }, + "SuperBowler": { + "Original": "Bowler", + "MinOriginalLevel": 3, + "Replacement": "Super Bowler", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_BOWLER_INTRO_TH13" + }, + "SuperDragon": { + "Original": "Dragon", + "MinOriginalLevel": 6, + "Replacement": "Super Dragon", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_DRAGON_INTRO_TH13" + }, + "SuperMiner": { + "Original": "Miner", + "MinOriginalLevel": 6, + "Replacement": "Super Miner", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_MINER_INTRO" + }, + "SuperHogRider": { + "Original": "Boar Rider", + "MinOriginalLevel": 9, + "Replacement": "Super Hog Rider", + "DurationH": 72, + "CooldownH": 72, + "Resource": "DarkElixir", + "ResourceCost": 25000, + "TrialNPC": "SUPER_HOG_INTRO" + } } \ No newline at end of file diff --git a/assets/json/townhalls.json b/assets/json/townhalls.json index 5e18661a..74c14a05 100644 --- a/assets/json/townhalls.json +++ b/assets/json/townhalls.json @@ -1,898 +1,898 @@ -{ - "1": { - "AttackCost": 5, - "ResourceStorageLootPercentage": 20, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 200000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 1000, - "WarPrizeDarkElixirCap": 0, - "WarPrizeCommonOreCap": 0, - "WarPrizeRareOreCap": 0, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 1000, - "LegendPrizeElixirCap": 1000, - "LegendPrizeDarkElixirCap": 0, - "WarPrizeAllianceExpCap": 1, - "CartLootCapResource": 200000, - "CartLootReengagementResource": 5000, - "CartLootCapDarkElixir": 0, - "CartLootReengagementDarkElixir": 0, - "ReengagementBuildingBudget": 0, - "ReengagementHeroBudget": 0, - "ReengagementWallBudget": 0, - "ReengagementLabBudget": 0, - "HeroBoostHours": 0, - "PowerBoostHours": 0, - "ResourceProductionBoostHours": 0, - "StarBonusBoostHours": 0, - "Troop Housing": 1, - "Elixir Storage": 1, - "Gold Storage": 1, - "Elixir Pump": 1, - "Gold Mine": 1, - "Barrack": 1, - "Cannon": 1, - "Cannon_gearup": 1, - "Archer Tower_gearup": 1, - "Mortar_gearup": 1, - "Alliance Castle": 1, - "Worker Building": 5, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "TreasuryGold": 0, - "TreasuryElixir": 0, - "TreasuryDarkElixir": 0, - "TreasuryWarGold": 50000, - "TreasuryWarElixir": 50000, - "TreasuryWarDarkElixir": 0, - "FriendlyCost": 0, - "PackElixir": 0, - "PackGold": 0, - "PackDarkElixir": 0, - "PackGold2": 0, - "PackElixir2": 0, - "DuelPrizeResourceCap": 4000, - "Elixir Pump2": 1, - "Gold Mine2": 1, - "WallStraight": 10, - "Cannon2": 1, - "Troop Housing2": 1, - "Laboratory2": 1, - "Barrack2": 1, - "AttackCostVillage2": 0, - "Builder6Home": 1, - "UnlockStage": 1, - "ElixirCartStorageCap": 17500 - }, - "2": { - "AttackCost": 10, - "ResourceStorageLootPercentage": 20, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 200000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 2500, - "WarPrizeDarkElixirCap": 0, - "WarPrizeCommonOreCap": 0, - "WarPrizeRareOreCap": 0, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 2500, - "LegendPrizeElixirCap": 2500, - "LegendPrizeDarkElixirCap": 0, - "WarPrizeAllianceExpCap": 1, - "CartLootCapResource": 200000, - "CartLootReengagementResource": 25000, - "CartLootCapDarkElixir": 0, - "CartLootReengagementDarkElixir": 0, - "ReengagementBuildingBudget": 691200, - "ReengagementHeroBudget": 0, - "ReengagementWallBudget": 345600, - "ReengagementLabBudget": 691200, - "HeroBoostHours": 0, - "PowerBoostHours": 0, - "ResourceProductionBoostHours": 0, - "StarBonusBoostHours": 0, - "Elixir Pump": 2, - "Gold Mine": 2, - "Cannon": 2, - "Wall": 25, - "Archer Tower": 1, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "TreasuryWarGold": 200000, - "TreasuryWarElixir": 200000, - "TreasuryWarDarkElixir": 0, - "FriendlyCost": 0, - "PackElixir": 0, - "PackGold": 0, - "PackDarkElixir": 0, - "PackGold2": 0, - "PackElixir2": 0, - "DuelPrizeResourceCap": 16000, - "WallStraight": 20, - "Archer Tower2": 1, - "Troop Housing2": 2, - "Double Cannon": 1, - "Pusher": 1, - "AttackCostVillage2": 0, - "ElixirCartStorageCap": 37500 - }, - "3": { - "AttackCost": 50, - "ResourceStorageLootPercentage": 20, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 200000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 6250, - "WarPrizeDarkElixirCap": 0, - "WarPrizeCommonOreCap": 0, - "WarPrizeRareOreCap": 0, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 6250, - "LegendPrizeElixirCap": 6250, - "LegendPrizeDarkElixirCap": 0, - "WarPrizeAllianceExpCap": 1, - "CartLootCapResource": 200000, - "CartLootReengagementResource": 150000, - "CartLootCapDarkElixir": 0, - "CartLootReengagementDarkElixir": 0, - "ReengagementBuildingBudget": 3369600, - "ReengagementHeroBudget": 0, - "ReengagementWallBudget": 1684800, - "ReengagementLabBudget": 3369600, - "HeroBoostHours": 0, - "PowerBoostHours": 0, - "ResourceProductionBoostHours": 0, - "StarBonusBoostHours": 0, - "Troop Housing": 2, - "Elixir Storage": 2, - "Gold Storage": 2, - "Elixir Pump": 3, - "Gold Mine": 3, - "Wall": 50, - "Mortar": 1, - "Mine": 2, - "Laboratory": 1, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "TreasuryWarGold": 400000, - "TreasuryWarElixir": 400000, - "TreasuryWarDarkElixir": 0, - "FriendlyCost": 0, - "PackElixir": 0, - "PackGold": 0, - "PackDarkElixir": 0, - "PackGold2": 0, - "PackElixir2": 0, - "DuelPrizeResourceCap": 40000, - "Elixir Storage2": 1, - "Gold Storage2": 1, - "WallStraight": 50, - "Cannon2": 2, - "Troop Housing2": 3, - "Tesla Tower2": 1, - "Pusher": 2, - "Air Defense Mini": 1, - "Crusher": 1, - "AirGroundTrap": 2, - "AttackCostVillage2": 0, - "Gem Mine": 1, - "Ejector2": 2, - "ElixirCartStorageCap": 62500 - }, - "4": { - "AttackCost": 100, - "ResourceStorageLootPercentage": 20, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 200000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 12500, - "WarPrizeDarkElixirCap": 0, - "WarPrizeCommonOreCap": 0, - "WarPrizeRareOreCap": 0, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 12500, - "LegendPrizeElixirCap": 12500, - "LegendPrizeDarkElixirCap": 0, - "WarPrizeAllianceExpCap": 2, - "CartLootCapResource": 200000, - "CartLootReengagementResource": 1000000, - "CartLootCapDarkElixir": 0, - "CartLootReengagementDarkElixir": 0, - "ReengagementBuildingBudget": 6566400, - "ReengagementHeroBudget": 0, - "ReengagementWallBudget": 3283200, - "ReengagementLabBudget": 6566400, - "HeroBoostHours": 0, - "PowerBoostHours": 72, - "ResourceProductionBoostHours": 72, - "StarBonusBoostHours": 72, - "Elixir Pump": 4, - "Gold Mine": 4, - "Wall": 75, - "Archer Tower": 2, - "Air Defense": 1, - "Ejector": 2, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "TreasuryWarGold": 600000, - "TreasuryWarElixir": 600000, - "TreasuryWarDarkElixir": 0, - "FriendlyCost": 0, - "PackElixir": 100000, - "PackGold": 100000, - "PackDarkElixir": 0, - "PackGold2": 100000, - "PackElixir2": 100000, - "DuelPrizeResourceCap": 80000, - "WallStraight": 75, - "Archer Tower2": 2, - "Troop Housing2": 4, - "Clock Tower": 1, - "Guard Post": 1, - "Pusher": 3, - "AirGroundTrap": 3, - "Air Defense2": 1, - "MegaAirGroundTrap": 1, - "AttackCostVillage2": 0, - "ShrinkTrap": 1, - "ElixirCartStorageCap": 87500 - }, - "5": { - "AttackCost": 150, - "ResourceStorageLootPercentage": 20, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 200000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 20000, - "WarPrizeDarkElixirCap": 0, - "WarPrizeCommonOreCap": 0, - "WarPrizeRareOreCap": 0, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 20000, - "LegendPrizeElixirCap": 20000, - "LegendPrizeDarkElixirCap": 0, - "WarPrizeAllianceExpCap": 2, - "CartLootCapResource": 600000, - "CartLootReengagementResource": 4000000, - "CartLootCapDarkElixir": 0, - "CartLootReengagementDarkElixir": 0, - "ReengagementBuildingBudget": 12096000, - "ReengagementHeroBudget": 0, - "ReengagementWallBudget": 6048000, - "ReengagementLabBudget": 12096000, - "HeroBoostHours": 0, - "PowerBoostHours": 72, - "ResourceProductionBoostHours": 72, - "StarBonusBoostHours": 72, - "Troop Housing": 3, - "Elixir Pump": 5, - "Gold Mine": 5, - "Cannon": 3, - "Wall": 100, - "Archer Tower": 3, - "Wizard Tower": 1, - "Mine": 4, - "Spell Forge": 1, - "AirTrap": 2, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "TreasuryWarGold": 800000, - "TreasuryWarElixir": 800000, - "TreasuryWarDarkElixir": 0, - "FriendlyCost": 0, - "PackElixir": 300000, - "PackGold": 300000, - "PackDarkElixir": 0, - "PackGold2": 300000, - "PackElixir2": 300000, - "FreezeBomb": 1, - "DuelPrizeResourceCap": 120000, - "WallStraight": 100, - "Double Cannon": 2, - "Multi Mortar": 1, - "Pusher": 4, - "Hero Altar Warmachine": 1, - "Air Defense Mini": 2, - "AirGroundTrap": 4, - "AttackCostVillage2": 0, - "Ejector2": 3, - "ElixirCartStorageCap": 150000 - }, - "6": { - "AttackCost": 250, - "ResourceStorageLootPercentage": 20, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 200000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 30000, - "WarPrizeDarkElixirCap": 0, - "WarPrizeCommonOreCap": 100, - "WarPrizeRareOreCap": 0, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 30000, - "LegendPrizeElixirCap": 30000, - "LegendPrizeDarkElixirCap": 0, - "WarPrizeAllianceExpCap": 2, - "CartLootCapResource": 1000000, - "CartLootReengagementResource": 6000000, - "CartLootCapDarkElixir": 0, - "CartLootReengagementDarkElixir": 0, - "ReengagementBuildingBudget": 14515200, - "ReengagementHeroBudget": 0, - "ReengagementWallBudget": 7258600, - "ReengagementLabBudget": 14515200, - "HeroBoostHours": 0, - "PowerBoostHours": 72, - "ResourceProductionBoostHours": 72, - "StarBonusBoostHours": 72, - "Elixir Pump": 6, - "Gold Mine": 6, - "Wall": 125, - "Wizard Tower": 2, - "Air Defense": 2, - "Mortar": 2, - "Ejector": 4, - "Superbomb": 1, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "Air Blaster": 1, - "TreasuryWarGold": 1200000, - "TreasuryWarElixir": 1200000, - "TreasuryWarDarkElixir": 0, - "FriendlyCost": 0, - "PackElixir": 500000, - "PackGold": 500000, - "PackDarkElixir": 0, - "PackGold2": 500000, - "PackElixir2": 500000, - "DuelPrizeResourceCap": 180000, - "Elixir Pump2": 2, - "Elixir Storage2": 2, - "Gold Mine2": 2, - "Gold Storage2": 2, - "WallStraight": 120, - "Archer Tower2": 3, - "Troop Housing2": 5, - "Tesla Tower2": 2, - "Crusher": 2, - "AirGroundTrap": 5, - "MegaAirGroundTrap": 2, - "AttackCostVillage2": 0, - "Flamer": 1, - "UnlockStage": 2, - "Reinforcement Camp": 1, - "Recovery Building": 1, - "ElixirCartStorageCap": 200000 - }, - "7": { - "AttackCost": 350, - "ResourceStorageLootPercentage": 18, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 250000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 40000, - "WarPrizeDarkElixirCap": 125, - "WarPrizeCommonOreCap": 150, - "WarPrizeRareOreCap": 10, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 50000, - "LegendPrizeElixirCap": 50000, - "LegendPrizeDarkElixirCap": 125, - "WarPrizeAllianceExpCap": 3, - "CartLootCapResource": 1400000, - "CartLootReengagementResource": 8000000, - "CartLootCapDarkElixir": 2800, - "CartLootReengagementDarkElixir": 80000, - "ReengagementBuildingBudget": 18144000, - "ReengagementHeroBudget": 4860000, - "ReengagementWallBudget": 9072000, - "ReengagementLabBudget": 18144000, - "HeroBoostHours": 0, - "PowerBoostHours": 96, - "ResourceProductionBoostHours": 96, - "StarBonusBoostHours": 96, - "Troop Housing": 4, - "Cannon": 5, - "Wall": 175, - "Archer Tower": 4, - "Air Defense": 3, - "Mortar": 3, - "Superbomb": 2, - "Mine": 6, - "Tesla Tower": 2, - "Hero Altar Barbarian King": 1, - "Dark Elixir Pump": 1, - "Dark Elixir Storage": 1, - "MegaAirTrap": 1, - "Dark Elixir Barrack": 1, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 6, - "StrengthMaxSiegeTypes": 0, - "TreasuryWarGold": 1600000, - "TreasuryWarElixir": 1600000, - "TreasuryWarDarkElixir": 8000, - "FriendlyCost": 0, - "PackElixir": 700000, - "PackGold": 700000, - "PackDarkElixir": 7000, - "PackGold2": 700000, - "PackElixir2": 700000, - "DuelPrizeResourceCap": 240000, - "WallStraight": 140, - "Cannon2": 3, - "Troop Housing2": 6, - "Tesla Tower2": 3, - "Pusher": 5, - "Air Defense Mini": 3, - "AttackCostVillage2": 0, - "Ejector2": 4, - "Giant Cannon": 1, - "ElixirCartStorageCap": 250000 - }, - "8": { - "AttackCost": 550, - "ResourceStorageLootPercentage": 16, - "DarkElixirStorageLootPercentage": 6, - "ResourceStorageLootCap": 300000, - "DarkElixirStorageLootCap": 2000, - "WarPrizeResourceCap": 55000, - "WarPrizeDarkElixirCap": 200, - "WarPrizeCommonOreCap": 380, - "WarPrizeRareOreCap": 15, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 100000, - "LegendPrizeElixirCap": 100000, - "LegendPrizeDarkElixirCap": 200, - "WarPrizeAllianceExpCap": 4, - "CartLootCapResource": 1600000, - "CartLootReengagementResource": 10000000, - "CartLootCapDarkElixir": 3200, - "CartLootReengagementDarkElixir": 100000, - "ReengagementBuildingBudget": 21772800, - "ReengagementHeroBudget": 9720000, - "ReengagementWallBudget": 10886400, - "ReengagementLabBudget": 21772800, - "HeroBoostHours": 96, - "PowerBoostHours": 96, - "ResourceProductionBoostHours": 96, - "StarBonusBoostHours": 96, - "Elixir Storage": 3, - "Gold Storage": 3, - "Wall": 225, - "Archer Tower": 5, - "Wizard Tower": 3, - "Mortar": 4, - "Ejector": 6, - "Superbomb": 3, - "Tesla Tower": 3, - "Mini Spell Factory": 1, - "Dark Elixir Pump": 2, - "AirTrap": 4, - "MegaAirTrap": 2, - "StrengthMaxTroopTypes": 6, - "StrengthMaxSpellTypes": 7, - "StrengthMaxSiegeTypes": 0, - "Halloweenskels": 2, - "Bomb Tower": 1, - "TreasuryWarGold": 2000000, - "TreasuryWarElixir": 2000000, - "TreasuryWarDarkElixir": 10000, - "FriendlyCost": 0, - "PackElixir": 800000, - "PackGold": 800000, - "PackDarkElixir": 8000, - "PackGold2": 800000, - "PackElixir2": 800000, - "DuelPrizeResourceCap": 300000, - "Elixir Pump2": 3, - "Gold Mine2": 3, - "WallStraight": 160, - "Double Cannon": 3, - "Mega Tesla": 1, - "Air Defense Mini": 4, - "MegaAirGroundTrap": 3, - "AttackCostVillage2": 0, - "Ejector2": 5, - "Battle Copter Altar": 1, - "ElixirCartStorageCap": 300000, - "Smithy": 1 - }, - "9": { - "AttackCost": 750, - "ResourceStorageLootPercentage": 14, - "DarkElixirStorageLootPercentage": 5, - "ResourceStorageLootCap": 350000, - "DarkElixirStorageLootCap": 2500, - "WarPrizeResourceCap": 70000, - "WarPrizeDarkElixirCap": 333, - "WarPrizeCommonOreCap": 410, - "WarPrizeRareOreCap": 18, - "WarPrizeEpicOreCap": 0, - "LegendPrizeGoldCap": 150000, - "LegendPrizeElixirCap": 150000, - "LegendPrizeDarkElixirCap": 500, - "WarPrizeAllianceExpCap": 5, - "CartLootCapResource": 1800000, - "CartLootReengagementResource": 11500000, - "CartLootCapDarkElixir": 3600, - "CartLootReengagementDarkElixir": 115000, - "ReengagementBuildingBudget": 25401600, - "ReengagementHeroBudget": 32400000, - "ReengagementWallBudget": 12700800, - "ReengagementLabBudget": 25401600, - "HeroBoostHours": 96, - "PowerBoostHours": 96, - "ResourceProductionBoostHours": 96, - "StarBonusBoostHours": 96, - "Elixir Storage": 4, - "Gold Storage": 4, - "Elixir Pump": 7, - "Gold Mine": 7, - "Wall": 250, - "Archer Tower": 6, - "Wizard Tower": 4, - "Air Defense": 4, - "Superbomb": 4, - "Tesla Tower": 4, - "Bow": 2, - "Dark Elixir Pump": 3, - "Hero Altar Archer Queen": 1, - "MegaAirTrap": 4, - "StrengthMaxTroopTypes": 7, - "StrengthMaxSpellTypes": 7, - "StrengthMaxSiegeTypes": 0, - "Totem": 1, - "Halloweenskels": 2, - "Air Blaster": 2, - "TreasuryWarGold": 2400000, - "TreasuryWarElixir": 2400000, - "TreasuryWarDarkElixir": 12000, - "FriendlyCost": 0, - "PackElixir": 900000, - "PackGold": 900000, - "PackDarkElixir": 9000, - "PackGold2": 900000, - "PackElixir2": 900000, - "DuelPrizeResourceCap": 360000, - "WallStraight": 180, - "Air Defense Mini": 5, - "MegaAirGroundTrap": 4, - "AttackCostVillage2": 0, - "Ejector2": 6, - "LavaLauncher": 1, - "Builder6Unlock": 1, - "Reinforcement Camp": 2, - "ElixirCartStorageCap": 350000 - }, - "10": { - "AttackCost": 900, - "ResourceStorageLootPercentage": 12, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 400000, - "DarkElixirStorageLootCap": 3000, - "WarPrizeResourceCap": 90000, - "WarPrizeDarkElixirCap": 500, - "WarPrizeCommonOreCap": 460, - "WarPrizeRareOreCap": 21, - "WarPrizeEpicOreCap": 3, - "LegendPrizeGoldCap": 250000, - "LegendPrizeElixirCap": 250000, - "LegendPrizeDarkElixirCap": 1200, - "WarPrizeAllianceExpCap": 7, - "CartLootCapResource": 2000000, - "CartLootReengagementResource": 13000000, - "CartLootCapDarkElixir": 4000, - "CartLootReengagementDarkElixir": 130000, - "ReengagementBuildingBudget": 29635200, - "ReengagementHeroBudget": 38880000, - "ReengagementWallBudget": 14817600, - "ReengagementLabBudget": 29635200, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Cannon": 6, - "Wall": 275, - "Archer Tower": 7, - "Superbomb": 5, - "Bow": 3, - "AirTrap": 5, - "MegaAirTrap": 5, - "Dark Tower": 2, - "StrengthMaxTroopTypes": 8, - "StrengthMaxSpellTypes": 8, - "StrengthMaxSiegeTypes": 0, - "Totem": 2, - "Halloweenskels": 3, - "Bomb Tower": 2, - "TreasuryWarGold": 2800000, - "TreasuryWarElixir": 2800000, - "TreasuryWarDarkElixir": 14000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "PackGold2": 1000000, - "PackElixir2": 1000000, - "DuelPrizeResourceCap": 420000, - "AirGroundTrap": 6, - "Xbow_BB": 1, - "ElixirCartStorageCap": 400000 - }, - "11": { - "AttackCost": 1000, - "ResourceStorageLootPercentage": 10, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 450000, - "DarkElixirStorageLootCap": 3500, - "WarPrizeResourceCap": 110000, - "WarPrizeDarkElixirCap": 600, - "WarPrizeCommonOreCap": 560, - "WarPrizeRareOreCap": 24, - "WarPrizeEpicOreCap": 3, - "LegendPrizeGoldCap": 350000, - "LegendPrizeElixirCap": 350000, - "LegendPrizeDarkElixirCap": 3250, - "WarPrizeAllianceExpCap": 9, - "CartLootCapResource": 2200000, - "CartLootReengagementResource": 14000000, - "CartLootCapDarkElixir": 4400, - "CartLootReengagementDarkElixir": 140000, - "ReengagementBuildingBudget": 33868800, - "ReengagementHeroBudget": 45360000, - "ReengagementWallBudget": 16934400, - "ReengagementLabBudget": 33868800, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Cannon": 7, - "Wall": 300, - "Archer Tower": 8, - "Wizard Tower": 5, - "Bow": 4, - "StrengthMaxTroopTypes": 10, - "StrengthMaxSpellTypes": 8, - "StrengthMaxSiegeTypes": 0, - "Hero Altar Grand Warden": 1, - "Ancient Artillery": 1, - "TreasuryWarGold": 3200000, - "TreasuryWarElixir": 3200000, - "TreasuryWarDarkElixir": 16000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "TornadoTrap": 1, - "ElixirCartStorageCap": 9999990 - }, - "12": { - "AttackCost": 1100, - "ResourceStorageLootPercentage": 10, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 500000, - "DarkElixirStorageLootCap": 4000, - "WarPrizeResourceCap": 120000, - "WarPrizeDarkElixirCap": 650, - "WarPrizeCommonOreCap": 610, - "WarPrizeRareOreCap": 27, - "WarPrizeEpicOreCap": 4, - "LegendPrizeGoldCap": 450000, - "LegendPrizeElixirCap": 450000, - "LegendPrizeDarkElixirCap": 6500, - "WarPrizeAllianceExpCap": 10, - "CartLootCapResource": 2400000, - "CartLootReengagementResource": 15000000, - "CartLootCapDarkElixir": 4800, - "CartLootReengagementDarkElixir": 150000, - "ReengagementBuildingBudget": 36720000, - "ReengagementHeroBudget": 50000000, - "ReengagementWallBudget": 18360000, - "ReengagementLabBudget": 36720000, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Wall": 300, - "Ejector": 8, - "Superbomb": 6, - "Tesla Tower": 5, - "AirTrap": 6, - "MegaAirTrap": 6, - "Dark Tower": 3, - "StrengthMaxTroopTypes": 12, - "StrengthMaxSpellTypes": 8, - "StrengthMaxSiegeTypes": 3, - "TreasuryWarGold": 3600000, - "TreasuryWarElixir": 3600000, - "TreasuryWarDarkElixir": 18000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "SiegeWorkshop": 1, - "ElixirCartStorageCap": 9999991 - }, - "13": { - "AttackCost": 1200, - "ResourceStorageLootPercentage": 10, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 550000, - "DarkElixirStorageLootCap": 4500, - "WarPrizeResourceCap": 130000, - "WarPrizeDarkElixirCap": 700, - "WarPrizeCommonOreCap": 710, - "WarPrizeRareOreCap": 30, - "WarPrizeEpicOreCap": 4, - "LegendPrizeGoldCap": 500000, - "LegendPrizeElixirCap": 500000, - "LegendPrizeDarkElixirCap": 7000, - "WarPrizeAllianceExpCap": 11, - "CartLootCapResource": 2600000, - "CartLootReengagementResource": 16000000, - "CartLootCapDarkElixir": 5200, - "CartLootReengagementDarkElixir": 160000, - "ReengagementBuildingBudget": 41040000, - "ReengagementHeroBudget": 55000000, - "ReengagementWallBudget": 20520000, - "ReengagementLabBudget": 41040000, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Wall": 300, - "Ejector": 9, - "Mine": 7, - "MegaAirTrap": 7, - "StrengthMaxTroopTypes": 12, - "StrengthMaxSpellTypes": 8, - "StrengthMaxSiegeTypes": 3, - "TreasuryWarGold": 4000000, - "TreasuryWarElixir": 4000000, - "TreasuryWarDarkElixir": 20000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "Hero Altar Royal Champion": 1, - "Scattershot": 2, - "ElixirCartStorageCap": 9999992 - }, - "14": { - "AttackCost": 1300, - "ResourceStorageLootPercentage": 10, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 600000, - "DarkElixirStorageLootCap": 5000, - "WarPrizeResourceCap": 140000, - "WarPrizeDarkElixirCap": 750, - "WarPrizeCommonOreCap": 810, - "WarPrizeRareOreCap": 33, - "WarPrizeEpicOreCap": 5, - "LegendPrizeGoldCap": 550000, - "LegendPrizeElixirCap": 550000, - "LegendPrizeDarkElixirCap": 7000, - "WarPrizeAllianceExpCap": 12, - "CartLootCapResource": 2800000, - "CartLootReengagementResource": 17000000, - "CartLootCapDarkElixir": 5600, - "CartLootReengagementDarkElixir": 170000, - "ReengagementBuildingBudget": 41040000, - "ReengagementHeroBudget": 55000000, - "ReengagementWallBudget": 20520000, - "ReengagementLabBudget": 41040000, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Wall": 325, - "Superbomb": 7, - "Mine": 8, - "AirTrap": 7, - "MegaAirTrap": 8, - "StrengthMaxTroopTypes": 12, - "StrengthMaxSpellTypes": 8, - "StrengthMaxSiegeTypes": 3, - "Halloweenskels": 4, - "TreasuryWarGold": 4400000, - "TreasuryWarElixir": 4400000, - "TreasuryWarDarkElixir": 22000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "Pet Shop": 1, - "ElixirCartStorageCap": 9999993 - }, - "15": { - "AttackCost": 1400, - "ResourceStorageLootPercentage": 10, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 650000, - "DarkElixirStorageLootCap": 5500, - "WarPrizeResourceCap": 150000, - "WarPrizeDarkElixirCap": 800, - "WarPrizeCommonOreCap": 960, - "WarPrizeRareOreCap": 36, - "WarPrizeEpicOreCap": 5, - "LegendPrizeGoldCap": 600000, - "LegendPrizeElixirCap": 600000, - "LegendPrizeDarkElixirCap": 7000, - "WarPrizeAllianceExpCap": 13, - "CartLootCapResource": 3000000, - "CartLootReengagementResource": 18000000, - "CartLootCapDarkElixir": 6000, - "CartLootReengagementDarkElixir": 180000, - "ReengagementBuildingBudget": 41040000, - "ReengagementHeroBudget": 55000000, - "ReengagementWallBudget": 20520000, - "ReengagementLabBudget": 41040000, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Wall": 325, - "StrengthMaxTroopTypes": 12, - "StrengthMaxSpellTypes": 8, - "StrengthMaxSiegeTypes": 3, - "TreasuryWarGold": 4800000, - "TreasuryWarElixir": 4800000, - "TreasuryWarDarkElixir": 24000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "Spell Tower": 2, - "Monolith": 1, - "ElixirCartStorageCap": 9999994 - }, - "16": { - "AttackCost": 1500, - "ResourceStorageLootPercentage": 10, - "DarkElixirStorageLootPercentage": 4, - "ResourceStorageLootCap": 700000, - "DarkElixirStorageLootCap": 6000, - "WarPrizeResourceCap": 160000, - "WarPrizeDarkElixirCap": 850, - "WarPrizeCommonOreCap": 1110, - "WarPrizeRareOreCap": 39, - "WarPrizeEpicOreCap": 6, - "LegendPrizeGoldCap": 650000, - "LegendPrizeElixirCap": 650000, - "LegendPrizeDarkElixirCap": 7000, - "WarPrizeAllianceExpCap": 14, - "CartLootCapResource": 3200000, - "CartLootReengagementResource": 19000000, - "CartLootCapDarkElixir": 6400, - "CartLootReengagementDarkElixir": 190000, - "ReengagementBuildingBudget": 41040000, - "ReengagementHeroBudget": 55000000, - "ReengagementWallBudget": 20520000, - "ReengagementLabBudget": 41040000, - "HeroBoostHours": 120, - "PowerBoostHours": 120, - "ResourceProductionBoostHours": 120, - "StarBonusBoostHours": 120, - "Wall": 325, - "StrengthMaxTroopTypes": 13, - "StrengthMaxSpellTypes": 9, - "StrengthMaxSiegeTypes": 3, - "TreasuryWarGold": 5200000, - "TreasuryWarElixir": 5200000, - "TreasuryWarDarkElixir": 26000, - "FriendlyCost": 0, - "PackElixir": 1000000, - "PackGold": 1000000, - "PackDarkElixir": 10000, - "ElixirCartStorageCap": 9999995, - "Merged Archer Tower": 2, - "Merged Cannon": 2 - } +{ + "1": { + "AttackCost": 5, + "ResourceStorageLootPercentage": 20, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 200000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 1000, + "WarPrizeDarkElixirCap": 0, + "WarPrizeCommonOreCap": 0, + "WarPrizeRareOreCap": 0, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 1000, + "LegendPrizeElixirCap": 1000, + "LegendPrizeDarkElixirCap": 0, + "WarPrizeAllianceExpCap": 1, + "CartLootCapResource": 200000, + "CartLootReengagementResource": 5000, + "CartLootCapDarkElixir": 0, + "CartLootReengagementDarkElixir": 0, + "ReengagementBuildingBudget": 0, + "ReengagementHeroBudget": 0, + "ReengagementWallBudget": 0, + "ReengagementLabBudget": 0, + "HeroBoostHours": 0, + "PowerBoostHours": 0, + "ResourceProductionBoostHours": 0, + "StarBonusBoostHours": 0, + "Troop Housing": 1, + "Elixir Storage": 1, + "Gold Storage": 1, + "Elixir Pump": 1, + "Gold Mine": 1, + "Barrack": 1, + "Cannon": 1, + "Cannon_gearup": 1, + "Archer Tower_gearup": 1, + "Mortar_gearup": 1, + "Alliance Castle": 1, + "Worker Building": 5, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "TreasuryGold": 0, + "TreasuryElixir": 0, + "TreasuryDarkElixir": 0, + "TreasuryWarGold": 50000, + "TreasuryWarElixir": 50000, + "TreasuryWarDarkElixir": 0, + "FriendlyCost": 0, + "PackElixir": 0, + "PackGold": 0, + "PackDarkElixir": 0, + "PackGold2": 0, + "PackElixir2": 0, + "DuelPrizeResourceCap": 4000, + "Elixir Pump2": 1, + "Gold Mine2": 1, + "WallStraight": 10, + "Cannon2": 1, + "Troop Housing2": 1, + "Laboratory2": 1, + "Barrack2": 1, + "AttackCostVillage2": 0, + "Builder6Home": 1, + "UnlockStage": 1, + "ElixirCartStorageCap": 17500 + }, + "2": { + "AttackCost": 10, + "ResourceStorageLootPercentage": 20, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 200000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 2500, + "WarPrizeDarkElixirCap": 0, + "WarPrizeCommonOreCap": 0, + "WarPrizeRareOreCap": 0, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 2500, + "LegendPrizeElixirCap": 2500, + "LegendPrizeDarkElixirCap": 0, + "WarPrizeAllianceExpCap": 1, + "CartLootCapResource": 200000, + "CartLootReengagementResource": 25000, + "CartLootCapDarkElixir": 0, + "CartLootReengagementDarkElixir": 0, + "ReengagementBuildingBudget": 691200, + "ReengagementHeroBudget": 0, + "ReengagementWallBudget": 345600, + "ReengagementLabBudget": 691200, + "HeroBoostHours": 0, + "PowerBoostHours": 0, + "ResourceProductionBoostHours": 0, + "StarBonusBoostHours": 0, + "Elixir Pump": 2, + "Gold Mine": 2, + "Cannon": 2, + "Wall": 25, + "Archer Tower": 1, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "TreasuryWarGold": 200000, + "TreasuryWarElixir": 200000, + "TreasuryWarDarkElixir": 0, + "FriendlyCost": 0, + "PackElixir": 0, + "PackGold": 0, + "PackDarkElixir": 0, + "PackGold2": 0, + "PackElixir2": 0, + "DuelPrizeResourceCap": 16000, + "WallStraight": 20, + "Archer Tower2": 1, + "Troop Housing2": 2, + "Double Cannon": 1, + "Pusher": 1, + "AttackCostVillage2": 0, + "ElixirCartStorageCap": 37500 + }, + "3": { + "AttackCost": 50, + "ResourceStorageLootPercentage": 20, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 200000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 6250, + "WarPrizeDarkElixirCap": 0, + "WarPrizeCommonOreCap": 0, + "WarPrizeRareOreCap": 0, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 6250, + "LegendPrizeElixirCap": 6250, + "LegendPrizeDarkElixirCap": 0, + "WarPrizeAllianceExpCap": 1, + "CartLootCapResource": 200000, + "CartLootReengagementResource": 150000, + "CartLootCapDarkElixir": 0, + "CartLootReengagementDarkElixir": 0, + "ReengagementBuildingBudget": 3369600, + "ReengagementHeroBudget": 0, + "ReengagementWallBudget": 1684800, + "ReengagementLabBudget": 3369600, + "HeroBoostHours": 0, + "PowerBoostHours": 0, + "ResourceProductionBoostHours": 0, + "StarBonusBoostHours": 0, + "Troop Housing": 2, + "Elixir Storage": 2, + "Gold Storage": 2, + "Elixir Pump": 3, + "Gold Mine": 3, + "Wall": 50, + "Mortar": 1, + "Mine": 2, + "Laboratory": 1, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "TreasuryWarGold": 400000, + "TreasuryWarElixir": 400000, + "TreasuryWarDarkElixir": 0, + "FriendlyCost": 0, + "PackElixir": 0, + "PackGold": 0, + "PackDarkElixir": 0, + "PackGold2": 0, + "PackElixir2": 0, + "DuelPrizeResourceCap": 40000, + "Elixir Storage2": 1, + "Gold Storage2": 1, + "WallStraight": 50, + "Cannon2": 2, + "Troop Housing2": 3, + "Tesla Tower2": 1, + "Pusher": 2, + "Air Defense Mini": 1, + "Crusher": 1, + "AirGroundTrap": 2, + "AttackCostVillage2": 0, + "Gem Mine": 1, + "Ejector2": 2, + "ElixirCartStorageCap": 62500 + }, + "4": { + "AttackCost": 100, + "ResourceStorageLootPercentage": 20, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 200000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 12500, + "WarPrizeDarkElixirCap": 0, + "WarPrizeCommonOreCap": 0, + "WarPrizeRareOreCap": 0, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 12500, + "LegendPrizeElixirCap": 12500, + "LegendPrizeDarkElixirCap": 0, + "WarPrizeAllianceExpCap": 2, + "CartLootCapResource": 200000, + "CartLootReengagementResource": 1000000, + "CartLootCapDarkElixir": 0, + "CartLootReengagementDarkElixir": 0, + "ReengagementBuildingBudget": 6566400, + "ReengagementHeroBudget": 0, + "ReengagementWallBudget": 3283200, + "ReengagementLabBudget": 6566400, + "HeroBoostHours": 0, + "PowerBoostHours": 72, + "ResourceProductionBoostHours": 72, + "StarBonusBoostHours": 72, + "Elixir Pump": 4, + "Gold Mine": 4, + "Wall": 75, + "Archer Tower": 2, + "Air Defense": 1, + "Ejector": 2, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "TreasuryWarGold": 600000, + "TreasuryWarElixir": 600000, + "TreasuryWarDarkElixir": 0, + "FriendlyCost": 0, + "PackElixir": 100000, + "PackGold": 100000, + "PackDarkElixir": 0, + "PackGold2": 100000, + "PackElixir2": 100000, + "DuelPrizeResourceCap": 80000, + "WallStraight": 75, + "Archer Tower2": 2, + "Troop Housing2": 4, + "Clock Tower": 1, + "Guard Post": 1, + "Pusher": 3, + "AirGroundTrap": 3, + "Air Defense2": 1, + "MegaAirGroundTrap": 1, + "AttackCostVillage2": 0, + "ShrinkTrap": 1, + "ElixirCartStorageCap": 87500 + }, + "5": { + "AttackCost": 150, + "ResourceStorageLootPercentage": 20, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 200000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 20000, + "WarPrizeDarkElixirCap": 0, + "WarPrizeCommonOreCap": 0, + "WarPrizeRareOreCap": 0, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 20000, + "LegendPrizeElixirCap": 20000, + "LegendPrizeDarkElixirCap": 0, + "WarPrizeAllianceExpCap": 2, + "CartLootCapResource": 600000, + "CartLootReengagementResource": 4000000, + "CartLootCapDarkElixir": 0, + "CartLootReengagementDarkElixir": 0, + "ReengagementBuildingBudget": 12096000, + "ReengagementHeroBudget": 0, + "ReengagementWallBudget": 6048000, + "ReengagementLabBudget": 12096000, + "HeroBoostHours": 0, + "PowerBoostHours": 72, + "ResourceProductionBoostHours": 72, + "StarBonusBoostHours": 72, + "Troop Housing": 3, + "Elixir Pump": 5, + "Gold Mine": 5, + "Cannon": 3, + "Wall": 100, + "Archer Tower": 3, + "Wizard Tower": 1, + "Mine": 4, + "Spell Forge": 1, + "AirTrap": 2, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "TreasuryWarGold": 800000, + "TreasuryWarElixir": 800000, + "TreasuryWarDarkElixir": 0, + "FriendlyCost": 0, + "PackElixir": 300000, + "PackGold": 300000, + "PackDarkElixir": 0, + "PackGold2": 300000, + "PackElixir2": 300000, + "FreezeBomb": 1, + "DuelPrizeResourceCap": 120000, + "WallStraight": 100, + "Double Cannon": 2, + "Multi Mortar": 1, + "Pusher": 4, + "Hero Altar Warmachine": 1, + "Air Defense Mini": 2, + "AirGroundTrap": 4, + "AttackCostVillage2": 0, + "Ejector2": 3, + "ElixirCartStorageCap": 150000 + }, + "6": { + "AttackCost": 250, + "ResourceStorageLootPercentage": 20, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 200000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 30000, + "WarPrizeDarkElixirCap": 0, + "WarPrizeCommonOreCap": 100, + "WarPrizeRareOreCap": 0, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 30000, + "LegendPrizeElixirCap": 30000, + "LegendPrizeDarkElixirCap": 0, + "WarPrizeAllianceExpCap": 2, + "CartLootCapResource": 1000000, + "CartLootReengagementResource": 6000000, + "CartLootCapDarkElixir": 0, + "CartLootReengagementDarkElixir": 0, + "ReengagementBuildingBudget": 14515200, + "ReengagementHeroBudget": 0, + "ReengagementWallBudget": 7258600, + "ReengagementLabBudget": 14515200, + "HeroBoostHours": 0, + "PowerBoostHours": 72, + "ResourceProductionBoostHours": 72, + "StarBonusBoostHours": 72, + "Elixir Pump": 6, + "Gold Mine": 6, + "Wall": 125, + "Wizard Tower": 2, + "Air Defense": 2, + "Mortar": 2, + "Ejector": 4, + "Superbomb": 1, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "Air Blaster": 1, + "TreasuryWarGold": 1200000, + "TreasuryWarElixir": 1200000, + "TreasuryWarDarkElixir": 0, + "FriendlyCost": 0, + "PackElixir": 500000, + "PackGold": 500000, + "PackDarkElixir": 0, + "PackGold2": 500000, + "PackElixir2": 500000, + "DuelPrizeResourceCap": 180000, + "Elixir Pump2": 2, + "Elixir Storage2": 2, + "Gold Mine2": 2, + "Gold Storage2": 2, + "WallStraight": 120, + "Archer Tower2": 3, + "Troop Housing2": 5, + "Tesla Tower2": 2, + "Crusher": 2, + "AirGroundTrap": 5, + "MegaAirGroundTrap": 2, + "AttackCostVillage2": 0, + "Flamer": 1, + "UnlockStage": 2, + "Reinforcement Camp": 1, + "Recovery Building": 1, + "ElixirCartStorageCap": 200000 + }, + "7": { + "AttackCost": 350, + "ResourceStorageLootPercentage": 18, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 250000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 40000, + "WarPrizeDarkElixirCap": 125, + "WarPrizeCommonOreCap": 150, + "WarPrizeRareOreCap": 10, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 50000, + "LegendPrizeElixirCap": 50000, + "LegendPrizeDarkElixirCap": 125, + "WarPrizeAllianceExpCap": 3, + "CartLootCapResource": 1400000, + "CartLootReengagementResource": 8000000, + "CartLootCapDarkElixir": 2800, + "CartLootReengagementDarkElixir": 80000, + "ReengagementBuildingBudget": 18144000, + "ReengagementHeroBudget": 4860000, + "ReengagementWallBudget": 9072000, + "ReengagementLabBudget": 18144000, + "HeroBoostHours": 0, + "PowerBoostHours": 96, + "ResourceProductionBoostHours": 96, + "StarBonusBoostHours": 96, + "Troop Housing": 4, + "Cannon": 5, + "Wall": 175, + "Archer Tower": 4, + "Air Defense": 3, + "Mortar": 3, + "Superbomb": 2, + "Mine": 6, + "Tesla Tower": 2, + "Hero Altar Barbarian King": 1, + "Dark Elixir Pump": 1, + "Dark Elixir Storage": 1, + "MegaAirTrap": 1, + "Dark Elixir Barrack": 1, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 6, + "StrengthMaxSiegeTypes": 0, + "TreasuryWarGold": 1600000, + "TreasuryWarElixir": 1600000, + "TreasuryWarDarkElixir": 8000, + "FriendlyCost": 0, + "PackElixir": 700000, + "PackGold": 700000, + "PackDarkElixir": 7000, + "PackGold2": 700000, + "PackElixir2": 700000, + "DuelPrizeResourceCap": 240000, + "WallStraight": 140, + "Cannon2": 3, + "Troop Housing2": 6, + "Tesla Tower2": 3, + "Pusher": 5, + "Air Defense Mini": 3, + "AttackCostVillage2": 0, + "Ejector2": 4, + "Giant Cannon": 1, + "ElixirCartStorageCap": 250000 + }, + "8": { + "AttackCost": 550, + "ResourceStorageLootPercentage": 16, + "DarkElixirStorageLootPercentage": 6, + "ResourceStorageLootCap": 300000, + "DarkElixirStorageLootCap": 2000, + "WarPrizeResourceCap": 55000, + "WarPrizeDarkElixirCap": 200, + "WarPrizeCommonOreCap": 380, + "WarPrizeRareOreCap": 15, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 100000, + "LegendPrizeElixirCap": 100000, + "LegendPrizeDarkElixirCap": 200, + "WarPrizeAllianceExpCap": 4, + "CartLootCapResource": 1600000, + "CartLootReengagementResource": 10000000, + "CartLootCapDarkElixir": 3200, + "CartLootReengagementDarkElixir": 100000, + "ReengagementBuildingBudget": 21772800, + "ReengagementHeroBudget": 9720000, + "ReengagementWallBudget": 10886400, + "ReengagementLabBudget": 21772800, + "HeroBoostHours": 96, + "PowerBoostHours": 96, + "ResourceProductionBoostHours": 96, + "StarBonusBoostHours": 96, + "Elixir Storage": 3, + "Gold Storage": 3, + "Wall": 225, + "Archer Tower": 5, + "Wizard Tower": 3, + "Mortar": 4, + "Ejector": 6, + "Superbomb": 3, + "Tesla Tower": 3, + "Mini Spell Factory": 1, + "Dark Elixir Pump": 2, + "AirTrap": 4, + "MegaAirTrap": 2, + "StrengthMaxTroopTypes": 6, + "StrengthMaxSpellTypes": 7, + "StrengthMaxSiegeTypes": 0, + "Halloweenskels": 2, + "Bomb Tower": 1, + "TreasuryWarGold": 2000000, + "TreasuryWarElixir": 2000000, + "TreasuryWarDarkElixir": 10000, + "FriendlyCost": 0, + "PackElixir": 800000, + "PackGold": 800000, + "PackDarkElixir": 8000, + "PackGold2": 800000, + "PackElixir2": 800000, + "DuelPrizeResourceCap": 300000, + "Elixir Pump2": 3, + "Gold Mine2": 3, + "WallStraight": 160, + "Double Cannon": 3, + "Mega Tesla": 1, + "Air Defense Mini": 4, + "MegaAirGroundTrap": 3, + "AttackCostVillage2": 0, + "Ejector2": 5, + "Battle Copter Altar": 1, + "ElixirCartStorageCap": 300000, + "Smithy": 1 + }, + "9": { + "AttackCost": 750, + "ResourceStorageLootPercentage": 14, + "DarkElixirStorageLootPercentage": 5, + "ResourceStorageLootCap": 350000, + "DarkElixirStorageLootCap": 2500, + "WarPrizeResourceCap": 70000, + "WarPrizeDarkElixirCap": 333, + "WarPrizeCommonOreCap": 410, + "WarPrizeRareOreCap": 18, + "WarPrizeEpicOreCap": 0, + "LegendPrizeGoldCap": 150000, + "LegendPrizeElixirCap": 150000, + "LegendPrizeDarkElixirCap": 500, + "WarPrizeAllianceExpCap": 5, + "CartLootCapResource": 1800000, + "CartLootReengagementResource": 11500000, + "CartLootCapDarkElixir": 3600, + "CartLootReengagementDarkElixir": 115000, + "ReengagementBuildingBudget": 25401600, + "ReengagementHeroBudget": 32400000, + "ReengagementWallBudget": 12700800, + "ReengagementLabBudget": 25401600, + "HeroBoostHours": 96, + "PowerBoostHours": 96, + "ResourceProductionBoostHours": 96, + "StarBonusBoostHours": 96, + "Elixir Storage": 4, + "Gold Storage": 4, + "Elixir Pump": 7, + "Gold Mine": 7, + "Wall": 250, + "Archer Tower": 6, + "Wizard Tower": 4, + "Air Defense": 4, + "Superbomb": 4, + "Tesla Tower": 4, + "Bow": 2, + "Dark Elixir Pump": 3, + "Hero Altar Archer Queen": 1, + "MegaAirTrap": 4, + "StrengthMaxTroopTypes": 7, + "StrengthMaxSpellTypes": 7, + "StrengthMaxSiegeTypes": 0, + "Totem": 1, + "Halloweenskels": 2, + "Air Blaster": 2, + "TreasuryWarGold": 2400000, + "TreasuryWarElixir": 2400000, + "TreasuryWarDarkElixir": 12000, + "FriendlyCost": 0, + "PackElixir": 900000, + "PackGold": 900000, + "PackDarkElixir": 9000, + "PackGold2": 900000, + "PackElixir2": 900000, + "DuelPrizeResourceCap": 360000, + "WallStraight": 180, + "Air Defense Mini": 5, + "MegaAirGroundTrap": 4, + "AttackCostVillage2": 0, + "Ejector2": 6, + "LavaLauncher": 1, + "Builder6Unlock": 1, + "Reinforcement Camp": 2, + "ElixirCartStorageCap": 350000 + }, + "10": { + "AttackCost": 900, + "ResourceStorageLootPercentage": 12, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 400000, + "DarkElixirStorageLootCap": 3000, + "WarPrizeResourceCap": 90000, + "WarPrizeDarkElixirCap": 500, + "WarPrizeCommonOreCap": 460, + "WarPrizeRareOreCap": 21, + "WarPrizeEpicOreCap": 3, + "LegendPrizeGoldCap": 250000, + "LegendPrizeElixirCap": 250000, + "LegendPrizeDarkElixirCap": 1200, + "WarPrizeAllianceExpCap": 7, + "CartLootCapResource": 2000000, + "CartLootReengagementResource": 13000000, + "CartLootCapDarkElixir": 4000, + "CartLootReengagementDarkElixir": 130000, + "ReengagementBuildingBudget": 29635200, + "ReengagementHeroBudget": 38880000, + "ReengagementWallBudget": 14817600, + "ReengagementLabBudget": 29635200, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Cannon": 6, + "Wall": 275, + "Archer Tower": 7, + "Superbomb": 5, + "Bow": 3, + "AirTrap": 5, + "MegaAirTrap": 5, + "Dark Tower": 2, + "StrengthMaxTroopTypes": 8, + "StrengthMaxSpellTypes": 8, + "StrengthMaxSiegeTypes": 0, + "Totem": 2, + "Halloweenskels": 3, + "Bomb Tower": 2, + "TreasuryWarGold": 2800000, + "TreasuryWarElixir": 2800000, + "TreasuryWarDarkElixir": 14000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "PackGold2": 1000000, + "PackElixir2": 1000000, + "DuelPrizeResourceCap": 420000, + "AirGroundTrap": 6, + "Xbow_BB": 1, + "ElixirCartStorageCap": 400000 + }, + "11": { + "AttackCost": 1000, + "ResourceStorageLootPercentage": 10, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 450000, + "DarkElixirStorageLootCap": 3500, + "WarPrizeResourceCap": 110000, + "WarPrizeDarkElixirCap": 600, + "WarPrizeCommonOreCap": 560, + "WarPrizeRareOreCap": 24, + "WarPrizeEpicOreCap": 3, + "LegendPrizeGoldCap": 350000, + "LegendPrizeElixirCap": 350000, + "LegendPrizeDarkElixirCap": 3250, + "WarPrizeAllianceExpCap": 9, + "CartLootCapResource": 2200000, + "CartLootReengagementResource": 14000000, + "CartLootCapDarkElixir": 4400, + "CartLootReengagementDarkElixir": 140000, + "ReengagementBuildingBudget": 33868800, + "ReengagementHeroBudget": 45360000, + "ReengagementWallBudget": 16934400, + "ReengagementLabBudget": 33868800, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Cannon": 7, + "Wall": 300, + "Archer Tower": 8, + "Wizard Tower": 5, + "Bow": 4, + "StrengthMaxTroopTypes": 10, + "StrengthMaxSpellTypes": 8, + "StrengthMaxSiegeTypes": 0, + "Hero Altar Grand Warden": 1, + "Ancient Artillery": 1, + "TreasuryWarGold": 3200000, + "TreasuryWarElixir": 3200000, + "TreasuryWarDarkElixir": 16000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "TornadoTrap": 1, + "ElixirCartStorageCap": 9999990 + }, + "12": { + "AttackCost": 1100, + "ResourceStorageLootPercentage": 10, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 500000, + "DarkElixirStorageLootCap": 4000, + "WarPrizeResourceCap": 120000, + "WarPrizeDarkElixirCap": 650, + "WarPrizeCommonOreCap": 610, + "WarPrizeRareOreCap": 27, + "WarPrizeEpicOreCap": 4, + "LegendPrizeGoldCap": 450000, + "LegendPrizeElixirCap": 450000, + "LegendPrizeDarkElixirCap": 6500, + "WarPrizeAllianceExpCap": 10, + "CartLootCapResource": 2400000, + "CartLootReengagementResource": 15000000, + "CartLootCapDarkElixir": 4800, + "CartLootReengagementDarkElixir": 150000, + "ReengagementBuildingBudget": 36720000, + "ReengagementHeroBudget": 50000000, + "ReengagementWallBudget": 18360000, + "ReengagementLabBudget": 36720000, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Wall": 300, + "Ejector": 8, + "Superbomb": 6, + "Tesla Tower": 5, + "AirTrap": 6, + "MegaAirTrap": 6, + "Dark Tower": 3, + "StrengthMaxTroopTypes": 12, + "StrengthMaxSpellTypes": 8, + "StrengthMaxSiegeTypes": 3, + "TreasuryWarGold": 3600000, + "TreasuryWarElixir": 3600000, + "TreasuryWarDarkElixir": 18000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "SiegeWorkshop": 1, + "ElixirCartStorageCap": 9999991 + }, + "13": { + "AttackCost": 1200, + "ResourceStorageLootPercentage": 10, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 550000, + "DarkElixirStorageLootCap": 4500, + "WarPrizeResourceCap": 130000, + "WarPrizeDarkElixirCap": 700, + "WarPrizeCommonOreCap": 710, + "WarPrizeRareOreCap": 30, + "WarPrizeEpicOreCap": 4, + "LegendPrizeGoldCap": 500000, + "LegendPrizeElixirCap": 500000, + "LegendPrizeDarkElixirCap": 7000, + "WarPrizeAllianceExpCap": 11, + "CartLootCapResource": 2600000, + "CartLootReengagementResource": 16000000, + "CartLootCapDarkElixir": 5200, + "CartLootReengagementDarkElixir": 160000, + "ReengagementBuildingBudget": 41040000, + "ReengagementHeroBudget": 55000000, + "ReengagementWallBudget": 20520000, + "ReengagementLabBudget": 41040000, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Wall": 300, + "Ejector": 9, + "Mine": 7, + "MegaAirTrap": 7, + "StrengthMaxTroopTypes": 12, + "StrengthMaxSpellTypes": 8, + "StrengthMaxSiegeTypes": 3, + "TreasuryWarGold": 4000000, + "TreasuryWarElixir": 4000000, + "TreasuryWarDarkElixir": 20000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "Hero Altar Royal Champion": 1, + "Scattershot": 2, + "ElixirCartStorageCap": 9999992 + }, + "14": { + "AttackCost": 1300, + "ResourceStorageLootPercentage": 10, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 600000, + "DarkElixirStorageLootCap": 5000, + "WarPrizeResourceCap": 140000, + "WarPrizeDarkElixirCap": 750, + "WarPrizeCommonOreCap": 810, + "WarPrizeRareOreCap": 33, + "WarPrizeEpicOreCap": 5, + "LegendPrizeGoldCap": 550000, + "LegendPrizeElixirCap": 550000, + "LegendPrizeDarkElixirCap": 7000, + "WarPrizeAllianceExpCap": 12, + "CartLootCapResource": 2800000, + "CartLootReengagementResource": 17000000, + "CartLootCapDarkElixir": 5600, + "CartLootReengagementDarkElixir": 170000, + "ReengagementBuildingBudget": 41040000, + "ReengagementHeroBudget": 55000000, + "ReengagementWallBudget": 20520000, + "ReengagementLabBudget": 41040000, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Wall": 325, + "Superbomb": 7, + "Mine": 8, + "AirTrap": 7, + "MegaAirTrap": 8, + "StrengthMaxTroopTypes": 12, + "StrengthMaxSpellTypes": 8, + "StrengthMaxSiegeTypes": 3, + "Halloweenskels": 4, + "TreasuryWarGold": 4400000, + "TreasuryWarElixir": 4400000, + "TreasuryWarDarkElixir": 22000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "Pet Shop": 1, + "ElixirCartStorageCap": 9999993 + }, + "15": { + "AttackCost": 1400, + "ResourceStorageLootPercentage": 10, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 650000, + "DarkElixirStorageLootCap": 5500, + "WarPrizeResourceCap": 150000, + "WarPrizeDarkElixirCap": 800, + "WarPrizeCommonOreCap": 960, + "WarPrizeRareOreCap": 36, + "WarPrizeEpicOreCap": 5, + "LegendPrizeGoldCap": 600000, + "LegendPrizeElixirCap": 600000, + "LegendPrizeDarkElixirCap": 7000, + "WarPrizeAllianceExpCap": 13, + "CartLootCapResource": 3000000, + "CartLootReengagementResource": 18000000, + "CartLootCapDarkElixir": 6000, + "CartLootReengagementDarkElixir": 180000, + "ReengagementBuildingBudget": 41040000, + "ReengagementHeroBudget": 55000000, + "ReengagementWallBudget": 20520000, + "ReengagementLabBudget": 41040000, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Wall": 325, + "StrengthMaxTroopTypes": 12, + "StrengthMaxSpellTypes": 8, + "StrengthMaxSiegeTypes": 3, + "TreasuryWarGold": 4800000, + "TreasuryWarElixir": 4800000, + "TreasuryWarDarkElixir": 24000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "Spell Tower": 2, + "Monolith": 1, + "ElixirCartStorageCap": 9999994 + }, + "16": { + "AttackCost": 1500, + "ResourceStorageLootPercentage": 10, + "DarkElixirStorageLootPercentage": 4, + "ResourceStorageLootCap": 700000, + "DarkElixirStorageLootCap": 6000, + "WarPrizeResourceCap": 160000, + "WarPrizeDarkElixirCap": 850, + "WarPrizeCommonOreCap": 1110, + "WarPrizeRareOreCap": 39, + "WarPrizeEpicOreCap": 6, + "LegendPrizeGoldCap": 650000, + "LegendPrizeElixirCap": 650000, + "LegendPrizeDarkElixirCap": 7000, + "WarPrizeAllianceExpCap": 14, + "CartLootCapResource": 3200000, + "CartLootReengagementResource": 19000000, + "CartLootCapDarkElixir": 6400, + "CartLootReengagementDarkElixir": 190000, + "ReengagementBuildingBudget": 41040000, + "ReengagementHeroBudget": 55000000, + "ReengagementWallBudget": 20520000, + "ReengagementLabBudget": 41040000, + "HeroBoostHours": 120, + "PowerBoostHours": 120, + "ResourceProductionBoostHours": 120, + "StarBonusBoostHours": 120, + "Wall": 325, + "StrengthMaxTroopTypes": 13, + "StrengthMaxSpellTypes": 9, + "StrengthMaxSiegeTypes": 3, + "TreasuryWarGold": 5200000, + "TreasuryWarElixir": 5200000, + "TreasuryWarDarkElixir": 26000, + "FriendlyCost": 0, + "PackElixir": 1000000, + "PackGold": 1000000, + "PackDarkElixir": 10000, + "ElixirCartStorageCap": 9999995, + "Merged Archer Tower": 2, + "Merged Cannon": 2 + } } \ No newline at end of file diff --git a/assets/json/translations.json b/assets/json/translations.json index a22c1d8a..48579156 100644 --- a/assets/json/translations.json +++ b/assets/json/translations.json @@ -1,21936 +1,21936 @@ -{ - "TID_LANGUAGE_LOCALIZED_NAME": { - "EN": "English" - }, - "TID_BUILDING_HOUSE": { - "EN": "House" - }, - "TID_BUILDING_HOUSING": { - "EN": "Army Camp" - }, - "TID_BUILDING_TOWN_HALL": { - "EN": "Town Hall" - }, - "TID_BUILDING_ELIXIR_PUMP": { - "EN": "Elixir Collector" - }, - "TID_BUILDING_ELIXIR_STORAGE": { - "EN": "Elixir Storage" - }, - "TID_BUILDING_GOLD_MINE": { - "EN": "Gold Mine" - }, - "TID_BUILDING_GOLD_STORAGE": { - "EN": "Gold Storage" - }, - "TID_BUILDING_BARRACK": { - "EN": "Barracks" - }, - "TID_BUILDING_CANNON": { - "EN": "Cannon" - }, - "TID_BUILDING_TESLA_TOWER": { - "EN": "Hidden Tesla" - }, - "TID_BUILDING_WALL": { - "EN": "Wall" - }, - "TID_BUILDING_FENCE": { - "EN": "Fence" - }, - "TID_BUILDING_WIZARD_TOWER": { - "EN": "Wizard Tower" - }, - "TID_BUILDING_AIR_DEFENSE": { - "EN": "Air Defense" - }, - "TID_BUILDING_MORTAR": { - "EN": "Mortar" - }, - "TID_WORKER_BUILDING": { - "EN": "Builder's Hut" - }, - "TID_BUILDING_LABORATORY": { - "EN": "Laboratory" - }, - "TID_TRAP_BOMB": { - "EN": "Bomb Trap" - }, - "TID_TRAP_EJECT": { - "EN": "Spring Trap" - }, - "TID_TRAP_TIMETRAP": { - "EN": "Time Trap" - }, - "TID_BUTTON_SPEEDUP": { - "EN": "Finish Now" - }, - "TID_BUTTON_UPGRADE": { - "EN": "Upgrade" - }, - "TID_BUTTON_ATTACK": { - "EN": "Attack!" - }, - "TID_BUTTON_SHOP": { - "EN": "Shop" - }, - "TID_BUTTON_SELL": { - "EN": "Sell" - }, - "TID_BUTTON_CANCEL": { - "EN": "Cancel" - }, - "TID_BUTTON_TRAIN": { - "EN": "Train Troops" - }, - "TID_BUTTON_COLLECT": { - "EN": "Collect" - }, - "TID_BUTTON_INFO": { - "EN": "Info" - }, - "TID_BUTTON_CLEAR": { - "EN": "Remove" - }, - "TID_BUTTON_HOME": { - "EN": "Return Home" - }, - "TID_BUTTON_ACCEPT": { - "EN": "Accept" - }, - "TID_BUTTON_REJECT": { - "EN": "Reject" - }, - "TID_BUTTON_SEND": { - "EN": "Send" - }, - "TID_BUTTON_JOIN": { - "EN": "Join" - }, - "TID_TAB_GLOBAL_CHAT": { - "EN": "Global" - }, - "TID_TAB_ALLIANCE_CHAT": { - "EN": "Clan" - }, - "TID_OBSTACLE_TREE": { - "EN": "Tree" - }, - "TID_OBSTACLE_STONE": { - "EN": "Stone" - }, - "TID_OBSTACLE_BUSH": { - "EN": "Bush" - }, - "TID_OBSTACLE_TRUNK": { - "EN": "Trunk" - }, - "TID_OBSTACLE_MUSHROOM": { - "EN": "Mushroom" - }, - "TID_DECORATION_BARBARIAN_STATUE": { - "EN": "Mighty Statue" - }, - "TID_DECORATION_TORCH": { - "EN": "Torch" - }, - "TID_DECORATION_WHITE_FLAG": { - "EN": "White Flag" - }, - "TID_DECORATION_SKULL_FLAG": { - "EN": "Pirate Flag" - }, - "TID_DECORATION_FLOWERBOX1": { - "EN": "Cornflower Bed" - }, - "TID_DECORATION_FLOWERBOX2": { - "EN": "Sunflower Bed" - }, - "TID_DECORATION_WINDMETER": { - "EN": "Weather Vane" - }, - "TID_DECORATION_DOWNARROW_FLAG": { - "EN": "Rally Flag" - }, - "TID_DECORATION_UPARROW_FLAG": { - "EN": "Point Flag" - }, - "TID_DECORATION_SKULL_ALTAR": { - "EN": "Ancient Skull" - }, - "TID_DECORATION_NATIONAL_FLAG": { - "EN": "National Flag" - }, - "TID_TIME_DAYS": { - "EN": "d" - }, - "TID_TIME_HOURS": { - "EN": "h" - }, - "TID_TIME_MINS": { - "EN": "m" - }, - "TID_TIME_SECS": { - "EN": "s" - }, - "TID_BATTLE_TIME_TITLE": { - "EN": "Battle ends in:" - }, - "TID_POPUP_HEADER_WARNING": { - "EN": "Warning!" - }, - "TID_POPUP_UNDER_ATTACK": { - "EN": "You are under attack! Please wait, your village will load automatically." - }, - "TID_POPUP_TRY_AGAIN": { - "EN": "Estimated time left:" - }, - "TID_BUTTON_OKAY": { - "EN": "Okay" - }, - "TID_POPUP_TRAIN_TITLE": { - "EN": "Train troops " - }, - "TID_INVALID_PLACEMENT": { - "EN": "You cannot deploy troops on the red area!" - }, - "TID_ALL_TROOPS_USED": { - "EN": "All forces deployed" - }, - "TID_OTHER_TROOP_LEFT": { - "EN": "Select a different unit" - }, - "TID_DIAMONDS": { - "EN": "Gems" - }, - "TID_GOLD": { - "EN": "Gold" - }, - "TID_ELIXIR": { - "EN": "Elixir" - }, - "TID_ITEM_LEVEL": { - "EN": " (Level )" - }, - "TID_SHOP_TITLE": { - "EN": "Shop" - }, - "TID_ITEM_BROKEN": { - "EN": " (Broken)" - }, - "TID_BUILDING_ARCHER_TOWER": { - "EN": "Archer Tower" - }, - "TID_BUILDING_CLASS_ARMY": { - "EN": "Army Buildings" - }, - "TID_BUILDING_CLASS_DEFENSE": { - "EN": "Defenses" - }, - "TID_BUILDING_CLASS_RESOURCE": { - "EN": "Resources" - }, - "TID_BUILDING_CLASS_WALL": { - "EN": "Walls" - }, - "TID_NOT_ENOUGH_WORKERS_HEADER": { - "EN": "All builders are busy!" - }, - "TID_NOT_ENOUGH_WORKERS_TEXT": { - "EN": "Complete the previous building and free up a builder?" - }, - "TID_NOT_ENOUGH_WORKERS_TEXT_MASTER_BUILDER": { - "EN": "Complete the previous building and free up the Master Builder?" - }, - "TID_NOT_ENOUGH_RESOURCE": { - "EN": "You don't have enough !" - }, - "TID_NOT_ENOUGH_RESOURCE_TWO": { - "EN": "You don't have enough and !" - }, - "TID_TOWN_HALL_LEVEL_TOO_LOW": { - "EN": "You need to upgrade your Town Hall to level !" - }, - "TID_TOWN_HALL_LEVEL_TOO_LOW_2": { - "EN": "You need to upgrade your Builder Hall to level !" - }, - "TID_POPUP_UPGRADE_TITLE": { - "EN": "Upgrade to level ?" - }, - "TID_POPUP_UPGRADE_BUILD_MORE": { - "EN": "Build more:" - }, - "TID_RESOURCE_CAP_FULL_GOLD": { - "EN": "Build more or upgrade existing Gold Storages!" - }, - "TID_RESOURCE_CAP_FULL_ELIXIR": { - "EN": "Build more or upgrade existing Elixir Storages!" - }, - "TID_RESOURCE_CAP_FULL_GENERIC": { - "EN": "Build more or upgrade existing storages!" - }, - "TID_POPUP_FRIEND_LIST_TITLE": { - "EN": "Friends" - }, - "TID_POPUP_SOCIAL_LIST_TITLE": { - "EN": "Social" - }, - "TID_CONNECT_WITH_FACEBOOK_BUTTON": { - "EN": "Connect to Facebook" - }, - "TID_LOGIN_TO_FACEBOOK_BUTTON": { - "EN": "Login to Facebook" - }, - "TID_LOADING_FACEBOOK_FRIENDS": { - "EN": "Loading friend list..." - }, - "TID_OBSTACLE_TOMBSTONE": { - "EN": "Tombstone" - }, - "TID_NO_FACEBOOK_FRIENDS": { - "EN": "Unable to find Facebook friends who play Clash of Clans" - }, - "TID_ATTACK_FAIL_NO_MATCHES": { - "EN": "Unable to find villages to attack!" - }, - "TID_ATTACK_FAIL_ALREADY_UNDER_ATTACK": { - "EN": "Can't attack! Village is already under attack." - }, - "TID_ATTACK_FAIL_TARGET_ONLINE": { - "EN": "Can't attack! Village owner is online." - }, - "TID_ATTACK_FAIL_SAME_ALLIANCE": { - "EN": "Can't attack your own clan members!" - }, - "TID_ATTACK_FAIL_SHIELD": { - "EN": "Can't attack! Village has active Shield" - }, - "TID_ATTACK_FAIL_LEVEL_DIFFERENCE": { - "EN": "Can't attack! Level difference is more than " - }, - "TID_ATTACK_FAIL_NEWBIE_PROTECTED": { - "EN": "Can't attack this village because its Town Hall is below level ." - }, - "TID_DEFAULT_VILLAGE_NAME": { - "EN": "'s Village" - }, - "TID_BATTLE_LOG_TITLE": { - "EN": "You've been attacked!" - }, - "TID_BATTLE_LOG_ITEM": { - "EN": " attacked you